Searched refs:substr (Results 1 – 15 of 15) sorted by relevance
/art/dex2oat/ |
D | dex2oat.cc | 768 *parsed_value = s.substr(colon + 1); in ParseStringAfterChar() 918 dex_filenames.push_back(option.substr(strlen("--dex-file=")).data()); in dex2oat() 920 dex_locations.push_back(option.substr(strlen("--dex-location=")).data()); in dex2oat() 922 const char* zip_fd_str = option.substr(strlen("--zip-fd=")).data(); in dex2oat() 930 zip_location = option.substr(strlen("--zip-location=")).data(); in dex2oat() 932 oat_filename = option.substr(strlen("--oat-file=")).data(); in dex2oat() 934 oat_symbols = option.substr(strlen("--oat-symbols=")).data(); in dex2oat() 936 const char* oat_fd_str = option.substr(strlen("--oat-fd=")).data(); in dex2oat() 954 const char* thread_count_str = option.substr(strlen("-j")).data(); in dex2oat() 959 oat_location = option.substr(strlen("--oat-location=")).data(); in dex2oat() [all …]
|
/art/runtime/ |
D | parsed_options.cc | 127 Split(option.substr(strlen("-Xgc:")), ',', gc_options); in ParseXGcOption() 291 boot_class_path_string_ = option.substr(strlen("-Xbootclasspath:")).data(); in Parse() 312 std::string tail(option.substr(option[1] == 'X' ? 10 : 15)); in Parse() 323 size_t size = ParseMemoryOption(option.substr(strlen("-Xms")).c_str(), 1024); in Parse() 330 size_t size = ParseMemoryOption(option.substr(strlen("-Xmx")).c_str(), 1024); in Parse() 337 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapGrowthLimit=")).c_str(), 1024); in Parse() 344 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapMinFree=")).c_str(), 1024); in Parse() 351 size_t size = ParseMemoryOption(option.substr(strlen("-XX:HeapMaxFree=")).c_str(), 1024); in Parse() 359 option.substr(strlen("-XX:NonMovingSpaceCapacity=")).c_str(), 1024); in Parse() 382 size_t size = ParseMemoryOption(option.substr(strlen("-Xss")).c_str(), 1); in Parse() [all …]
|
D | utils.cc | 951 return s.substr(start_index, end_index - start_index + 1); in Trim() 1030 stats = stats.substr(stats.find(')') + 2); in GetTaskStats() 1058 return cgroup_fields[2].substr(1); // Skip the leading slash. in GetSchedulerGroupName()
|
D | profiler.cc | 774 std::string context_counts_str = info[3].substr(1, info[3].size() - 2); in ReadPrevious()
|
D | dex_file.h | 427 return location_.substr(0, pos); in GetBaseLocation()
|
D | debugger.cc | 586 gJdwpOptions.host = value.substr(0, colon); in ParseJdwpOption() 587 port_string = value.substr(colon + 1); in ParseJdwpOption() 628 ParseJdwpOption(pairs[i].substr(0, equals), pairs[i].substr(equals + 1)); in ParseJdwpOptions()
|
/art/patchoat/ |
D | patchoat.cc | 964 const char* isa_str = option.substr(strlen("--instruction-set=")).data(); in patchoat() 974 input_oat_location = option.substr(strlen("--input-oat-location=")).data(); in patchoat() 980 input_oat_filename = option.substr(strlen("--input-oat-file=")).data(); in patchoat() 986 const char* oat_fd_str = option.substr(strlen("--input-oat-fd=")).data(); in patchoat() 994 input_image_location = option.substr(strlen("--input-image-location=")).data(); in patchoat() 1000 output_oat_filename = option.substr(strlen("--output-oat-file=")).data(); in patchoat() 1006 const char* oat_fd_str = option.substr(strlen("--output-oat-fd=")).data(); in patchoat() 1018 output_image_filename = option.substr(strlen("--output-image-file=")).data(); in patchoat() 1024 const char* image_fd_str = option.substr(strlen("--output-image-fd=")).data(); in patchoat() 1032 const char* orig_base_offset_str = option.substr(strlen("--orig-base-offset=")).data(); in patchoat() [all …]
|
/art/runtime/base/unix_file/ |
D | random_access_file_test.h | 98 content.substr(0, short_request)); in TestReadContent() 106 content.substr(non_zero_offset, short_request)); in TestReadContent() 128 ASSERT_EQ(content.substr(0, 2), new_content); in TestSetLength()
|
/art/runtime/base/ |
D | stringpiece.cc | 82 StringPiece StringPiece::substr(size_type pos, size_type n) const { in substr() function in art::StringPiece
|
D | stringpiece.h | 155 StringPiece substr(size_type pos, size_type n = npos) const;
|
/art/oatdump/ |
D | oatdump.cc | 1718 oat_filename = option.substr(strlen("--oat-file=")).data(); in oatdump() 1720 image_location = option.substr(strlen("--image=")).data(); in oatdump() 1722 boot_image_location = option.substr(strlen("--boot-image=")).data(); in oatdump() 1724 StringPiece instruction_set_str = option.substr(strlen("--instruction-set=")).data(); in oatdump() 1745 const char* filename = option.substr(strlen("--output=")).data(); in oatdump()
|
/art/compiler/utils/ |
D | assembler_test.h | 618 std::string copy = file.substr(0, space_index - 1); in FileExists()
|
D | assembler_thumb_test.cc | 96 toolsdir = toolsdir.substr(0, slash-1); in GetAndroidToolsDir() 119 std::string suffix = subdir.substr(eabi + strlen(TOOL_PREFIX)); in GetAndroidToolsDir()
|
/art/runtime/verifier/ |
D | reg_type_cache.cc | 565 const std::string component(descriptor.substr(1, descriptor.size() - 1)); in GetComponentType()
|
/art/compiler/ |
D | elf_writer_quick.cc | 295 file_name = file_name.substr(directory_separator_pos + 1); in Write()
|