Lines Matching refs:parser
565 parser = argparse.ArgumentParser(description='Parse test description') variable
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")
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")
582 args = parser.parse_args()
607 parser.print_help()