Lines Matching refs:substr

246   std::string option_name(option_prefix.substr(option_prefix.size() - 1u));  in ParseUintOption()
260 std::string option_name(option_prefix.substr(option_prefix.size() - 1u)); in ParseBoolOption()
317 create_profile_from_file_ = std::string(option.substr(strlen("--create-profile-from="))); in ParseArgs()
350 std::string(option.substr(strlen("--preloaded-classes-blacklist="))); in ParseArgs()
363 Split(std::string(option.substr(strlen("--special-package="))), ':', &values); in ParseArgs()
375 boot_profile_out_path_ = std::string(option.substr(strlen("--out-profile-path="))); in ParseArgs()
378 option.substr(strlen("--out-preloaded-classes-path="))); in ParseArgs()
380 profile_files_.push_back(std::string(option.substr(strlen("--profile-file=")))); in ParseArgs()
384 reference_profile_file_ = std::string(option.substr(strlen("--reference-profile-file="))); in ParseArgs()
388 dex_locations_.push_back(std::string(option.substr(strlen("--dex-location=")))); in ParseArgs()
392 apk_files_.push_back(std::string(option.substr(strlen("--apk=")))); in ParseArgs()
394 test_profile_ = std::string(option.substr(strlen("--generate-test-profile="))); in ParseArgs()
1054 annotation_string = maybe_annotated_line.substr(1, end_pos - 1); in ProcessLine()
1056 line = maybe_annotated_line.substr(end_pos + 1); in ProcessLine()
1071 klass = line.substr(0); in ProcessLine()
1089 klass = line.substr(start_index, method_sep_index - start_index); in ProcessLine()
1090 method_str = line.substr(method_sep_index + kMethodSep.size()); in ProcessLine()
1200 std::string klass_str = line.substr(0, method_sep_index); in ProcessBootLine()
1201 std::string method_str = line.substr(method_sep_index + kMethodSep.size()); in ProcessBootLine()