Lines Matching refs:option

307       const std::string_view option(raw_option);  in ParseArgs()  local
312 if (option == "--dump-only") { in ParseArgs()
314 } else if (option == "--dump-classes-and-methods") { in ParseArgs()
316 } else if (StartsWith(option, "--create-profile-from=")) { in ParseArgs()
317 create_profile_from_file_ = std::string(option.substr(strlen("--create-profile-from="))); in ParseArgs()
318 } else if (StartsWith(option, "--dump-output-to-fd=")) { in ParseArgs()
320 } else if (option == "--generate-boot-profile") { in ParseArgs()
322 } else if (option == "--generate-boot-image-profile") { in ParseArgs()
324 } else if (StartsWith(option, "--method-threshold=")) { in ParseArgs()
330 } else if (StartsWith(option, "--class-threshold=")) { in ParseArgs()
336 } else if (StartsWith(option, "--clean-class-threshold=")) { in ParseArgs()
342 } else if (StartsWith(option, "--preloaded-class-threshold=")) { in ParseArgs()
348 } else if (StartsWith(option, "--preloaded-classes-blacklist=")) { in ParseArgs()
350 std::string(option.substr(strlen("--preloaded-classes-blacklist="))); in ParseArgs()
357 } else if (StartsWith(option, "--upgrade-startup-to-hot=")) { in ParseArgs()
361 } else if (StartsWith(option, "--special-package=")) { in ParseArgs()
363 Split(std::string(option.substr(strlen("--special-package="))), ':', &values); in ParseArgs()
370 } else if (StartsWith(option, "--debug-append-uses=")) { in ParseArgs()
374 } else if (StartsWith(option, "--out-profile-path=")) { in ParseArgs()
375 boot_profile_out_path_ = std::string(option.substr(strlen("--out-profile-path="))); in ParseArgs()
376 } else if (StartsWith(option, "--out-preloaded-classes-path=")) { in ParseArgs()
378 option.substr(strlen("--out-preloaded-classes-path="))); in ParseArgs()
379 } else if (StartsWith(option, "--profile-file=")) { in ParseArgs()
380 profile_files_.push_back(std::string(option.substr(strlen("--profile-file=")))); in ParseArgs()
381 } else if (StartsWith(option, "--profile-file-fd=")) { in ParseArgs()
383 } else if (StartsWith(option, "--reference-profile-file=")) { in ParseArgs()
384 reference_profile_file_ = std::string(option.substr(strlen("--reference-profile-file="))); in ParseArgs()
385 } else if (StartsWith(option, "--reference-profile-file-fd=")) { in ParseArgs()
387 } else if (StartsWith(option, "--dex-location=")) { in ParseArgs()
388 dex_locations_.push_back(std::string(option.substr(strlen("--dex-location=")))); in ParseArgs()
389 } else if (StartsWith(option, "--apk-fd=")) { in ParseArgs()
391 } else if (StartsWith(option, "--apk=")) { in ParseArgs()
392 apk_files_.push_back(std::string(option.substr(strlen("--apk=")))); in ParseArgs()
393 } else if (StartsWith(option, "--generate-test-profile=")) { in ParseArgs()
394 test_profile_ = std::string(option.substr(strlen("--generate-test-profile="))); in ParseArgs()
395 } else if (StartsWith(option, "--generate-test-profile-num-dex=")) { in ParseArgs()
399 } else if (StartsWith(option, "--generate-test-profile-method-percentage=")) { in ParseArgs()
403 } else if (StartsWith(option, "--generate-test-profile-class-percentage=")) { in ParseArgs()
407 } else if (StartsWith(option, "--generate-test-profile-seed=")) { in ParseArgs()
409 } else if (option == "--copy-and-update-profile-key") { in ParseArgs()
411 } else if (option == "--boot-image-merge") { in ParseArgs()
413 } else if (option == "--force-merge") { in ParseArgs()