Lines Matching +full:- +full:l

68             c = c[n-1]
106 …print("%s%s %s(%s - %d)%s : %s (cycles = %d)" % (ident,message,Style.BRIGHT,func,theId,Style.RESET…
108 … print("%s%s %s(%s - %d)%s : %s" % (ident,message,Style.BRIGHT,func,theId,Style.RESET_ALL,p))
196 self.nb = self.nb - 1
253 if self._hasContent[len(self._hasContent)-1]:
257 self._hasContent[len(self._hasContent)-1] = True
268 print("\"%s\" ->" % (message))
286 if self._hasContent[len(self._hasContent)-1]:
288 …print("<|\"NAME\" -> \"%s\",\"ID\" -> %d,\"STATUS\" -> \"%s\",\"CYCLES\" -> %d,\"PARAMS\" -> \"%s\…
289 self._hasContent[len(self._hasContent)-1] = True
319 for l in results:
320 if re.match(r'^.*D:[ ].*$',l):
322 if re.match(r'^.*D:[ ]END$',l):
328 m = re.match(r'^.*D:[ ](.*)$',l)
334 m = re.match(r'^.*D:[ ](.*)$',l)
398 for l in results:
399 l = l.strip()
400 if not re.match(r'^.*D:[ ].*$',l):
402 if len(l) > 0:
406 if re.match(r'^%s[gs][ ]+[0-9]+.*$' % prefix,l):
408 theId=re.sub(r'^%s[gs][ ]+([0-9]+).*$' % prefix,r'\1',l)
446 if re.match(r'^%s[t][ ]*$' % prefix,l):
452 if re.match(r'^%sp.*$' % prefix,l):
459 if len(l) > 0:
463 passRe = r'^%s([0-9]+)[ ]+([0-9]+)[ ]+([0-9]+)[ ]+([t0-9]+)[ ]+([YN]).*$' % prefix
464 if re.match(passRe,l):
468 m = re.match(passRe,l)
482 cycles = getCyclesFromTrace(trace) - calibration
503 if re.match(r'^%sp.*$' % prefix,l):
509 if re.match(r'^%s[t][ ]*$' % prefix,l):
514 if len(l) > 0:
515 if re.match(r'^.*E:.*$',l):
516 if re.match(r'^.*E:[ ].*$',l):
517 m = re.match(r'^.*E:[ ](.*)$',l)
523 if len(l) > 0:
526 if re.match(r'^.*b[ ]+([0-9,]+)$',l):
527 m=re.match(r'^.*b[ ]+([0-9,]+)$',l)
567 parser.add_argument('-f', nargs='?',type = str, default="Output.pickle", help="Test description fil…
569 parser.add_argument('-r', nargs='?',type = str, default=None, help="Result file path")
570 parser.add_argument('-c', action='store_true', help="CSV output")
571 parser.add_argument('-html', action='store_true', help="HTML output")
572 parser.add_argument('-ahtml', action='store_true', help="Partial HTML output")
574 parser.add_argument('-e', action='store_true', help="Embedded test")
575 # -o needed when -e is true to know where to extract the output files
576 parser.add_argument('-o', nargs='?',type = str, default="Output", help="Output dir path")
578 parser.add_argument('-b', nargs='?',type = str, default="FullBenchmark", help="Full Benchmark dir p…
579 parser.add_argument('-m', action='store_true', help="Mathematica output")
580 parser.add_argument('-t', nargs='?',type = str, default=None, help="External trace file")