• Home
  • Raw
  • Download

Lines Matching refs:add_argument

209     add_parser.add_argument("name", nargs=1, help="Name of the new project")
210 add_parser.add_argument("--mode", action="store", default=1, type=int,
215 add_parser.add_argument("--source", action="store", default="script",
223 add_parser.add_argument("--origin", action="store", default="",
225 add_parser.add_argument("--commit", action="store", default="",
234 build_parser.add_argument("--strictness", dest="strictness",
240 build_parser.add_argument("-r", dest="regenerate", action="store_true",
243 build_parser.add_argument("--override-compiler", action="store_true",
246 build_parser.add_argument("-j", "--jobs", dest="jobs",
249 build_parser.add_argument("--extra-analyzer-config",
253 build_parser.add_argument("--projects", action="store", default="",
255 build_parser.add_argument("--max-size", action="store", default=None,
257 build_parser.add_argument("-v", "--verbose", action="count", default=0)
265 cmp_parser.add_argument("--root-old", dest="root_old",
269 cmp_parser.add_argument("--root-new", dest="root_new",
273 cmp_parser.add_argument("--verbose-log", dest="verbose_log",
278 cmp_parser.add_argument("--stats-only", action="store_true",
281 cmp_parser.add_argument("--show-stats", action="store_true",
284 cmp_parser.add_argument("--histogram", action="store", default=None,
287 cmp_parser.add_argument("old", nargs=1, help="Directory with old results")
288 cmp_parser.add_argument("new", nargs=1, help="Directory with new results")
296 upd_parser.add_argument("--git", action="store_true",
305 dock_parser.add_argument("--build-image", action="store_true",
307 dock_parser.add_argument("--shell", action="store_true",
309 dock_parser.add_argument("--llvm-project-dir", action="store",
313 dock_parser.add_argument("--build-dir", action="store", default="",
316 dock_parser.add_argument("--clang-dir", action="store", default="",
318 dock_parser.add_argument("rest", nargs=argparse.REMAINDER, default=[],
328 bench_parser.add_argument("-i", "--iterations", action="store",
332 bench_parser.add_argument("-o", "--output", action="store",
335 bench_parser.add_argument("--projects", action="store", default="",
337 bench_parser.add_argument("--max-size", action="store", default=None,
345 bench_compare_parser.add_argument("--old", action="store", required=True,
348 bench_compare_parser.add_argument("--new", action="store", required=True,
350 bench_compare_parser.add_argument("-o", "--output",