Lines Matching refs:optparser
61 optparser = optparse.OptionParser(usage=_USAGE, description=_DESCRIPTION)
64 optparser, "Statistics selection")
79 optparser.add_option_group(optgroup)
80 optparser.set_defaults(keyset=keyset_default)
82 optgroup = optparse.OptionGroup(optparser, "Event selection")
87 optparser.add_option_group(optgroup)
90 optparser, "Display mode selection (choose one)")
99 optparser.add_option_group(optgroup)
100 optparser.set_defaults(print_averages=False)
101 optparser.set_defaults(print_raw=False)
102 return optparser
150 optparser = _SetupOptions()
151 (options, args) = optparser.parse_args(argv)
156 optparser.print_help()