Home | History | Annotate | Download | only in valgrind

Lines Matching refs:_parser

78     self._parser = optparse.OptionParser("usage: %prog [options] <program to "
80 self._parser.disable_interspersed_args()
81 self._parser.add_option("-t", "--timeout",
84 self._parser.add_option("", "--build-dir",
86 self._parser.add_option("", "--source-dir",
89 self._parser.add_option("", "--gtest_filter", default="",
91 self._parser.add_option("", "--gtest_repeat",
93 self._parser.add_option("", "--gtest_print_time", action="store_true",
96 self._parser.add_option("", "--ignore_exit_code", action="store_true",
100 self._parser.add_option("", "--keep_logs", action="store_true",
112 hook(self, self._parser)
130 if self._parser.has_option(arg.split("=")[0]):
139 self._options, self._args = self._parser.parse_args(known_args)