Home
last modified time | relevance | path

Searched refs:string_view (Results 26 – 50 of 58) sorted by relevance

123

/art/runtime/
Doat_file.cc478 std::string_view key(oat_dex_file->GetDexFileLocation()); in Setup()
481 std::string_view canonical_key(oat_dex_file->GetCanonicalDexFileLocation()); in Setup()
572 std::string_view primary_location; in Setup()
573 std::string_view primary_location_replacement; in Setup()
603 std::string_view oat_dex_file_location(dex_file_location_data, dex_file_location_size); in Setup()
915 std::string_view key = oat_dex_file_location; // References oat file data. in Setup()
916 std::string_view canonical_key(oat_dex_file->GetCanonicalDexFileLocation()); in Setup()
1807 std::string_view key(dex_location); in GetOatDexFile()
1826 std::string_view canonical_key(dex_canonical_location); in GetOatDexFile()
1835 std::string_view key_copy(string_cache_.back()); in GetOatDexFile()
Daot_class_linker.cc237 std::string_view descriptor_sv(descriptor); in IsUpdatableBootClassPathDescriptor()
Doat_file.h438 AllocationTrackingSafeMap<std::string_view, const OatDexFile*, kAllocatorTagOatFile>;
Doat_file_assistant.cc608 std::string_view oat_boot_class_path_checksums_view(oat_boot_class_path_checksums); in ValidateBootClassPathChecksums()
609 std::string_view oat_boot_class_path_view(oat_boot_class_path); in ValidateBootClassPathChecksums()
Dart_method-inl.h207 inline std::string_view ArtMethod::GetNameView() { in GetNameView()
Dart_method.h644 ALWAYS_INLINE std::string_view GetNameView() REQUIRES_SHARED(Locks::mutator_lock_);
Dclass_linker_test.cc514 std::string_view field_name(field->GetName()); in Check()
523 std::string_view field_name(field->GetName()); in Check()
1263 const std::string_view void_sig("()V"); in TEST_F()
/art/libartbase/base/
Dfile_utils.cc499 && (std::string_view(android_root) != std::string_view(art_root)); in ArtModuleRootDistinctFromAndroidRoot()
Dhash_set_test.cc372 HashSet<std::string>::iterator it = hash_set.find(std::string_view(test_string)); in TEST_F()
/art/cmdline/detail/
Dcmdline_parse_argument_detail.h149 std::string_view name = cname; in DumpHelp()
153 std::string_view nblank = name.substr(0, name.find("_")); in DumpHelp()
/art/dex2oat/linker/
Dimage_write_read_test.cc127 if (image_classes.find(std::string_view(descriptor)) == image_classes.end()) { in TestWriteRead()
/art/tools/art_verifier/
Dart_verifier.cc106 std::string_view option(raw_option, raw_option_length); in ParseCustom()
/art/runtime/gc/space/
Dimage_space.cc1604 /*inout*/std::string_view* oat_checksums, in CheckAndRemoveImageChecksum()
1661 /*inout*/std::string_view* oat_checksums, in ValidateFromSystem()
1672 /*inout*/std::string_view* oat_checksums, in ValidateFromDalvikCache()
1762 bool CheckAndRemoveLastChunkChecksum(/*inout*/std::string_view* oat_checksums,
1767 /*inout*/std::string_view* oat_checksums,
1771 /*inout*/std::string_view* oat_checksums,
1775 /*inout*/std::string_view* oat_checksums,
2289 /*inout*/std::string_view* oat_checksums, in CheckAndRemoveLastChunkChecksum()
2323 /*inout*/std::string_view* oat_checksums, in LoadOrValidate()
2465 /*inout*/std::string_view* oat_checksums, in LoadOrValidateFromSystem()
[all …]
/art/cmdline/
Dcmdline.h156 const std::string_view option(raw_option); in Parse()
/art/dexoptanalyzer/
Ddexoptanalyzer.cc179 const std::string_view option(raw_option); in ParseArgs()
/art/profman/
Dprofman.cc240 std::string_view option_prefix, in ParseUintOption()
253 std::string_view option_prefix, in ParseBoolOption()
307 const std::string_view option(raw_option); in ParseArgs()
1475 std::string_view option_prefix, in ParseFdForCollection()
/art/libdexfile/dex/
Ddex_file.h268 std::string_view StringViewByIdx(dex::StringIndex idx) const;
486 bool CreateTypeList(std::string_view signature,
Ddex_file.cc404 bool DexFile::CreateTypeList(std::string_view signature, in CreateTypeList()
/art/openjdkjvmti/
Dti_redefine.cc874 template <> struct SignatureType<art::ArtField> { using type = std::string_view; };
883 NameAndSignature(const std::string_view& name, const SigType& sig) : name_(name), sig_(sig) {} in NameAndSignature()
899 std::string_view name_;
2007 std::string_view desc(accessor.GetDexFile().GetFieldTypeDescriptor( in GetNewClassSize()
2869 return std::string_view(f.GetName()) == std::string_view(field_or_method->GetName()) && in UpdateClassStructurally()
2870 std::string_view(f.GetTypeDescriptor()) == in UpdateClassStructurally()
2871 std::string_view(field_or_method->GetTypeDescriptor()); in UpdateClassStructurally()
/art/libnativeloader/
Dpublic_libraries.cpp143 std::string_view fn = filename; in ReadExtensionLibraries()
/art/dexlayout/
Ddexdiag.cc467 const std::string_view option(argv[i]); in DexDiagMain()
/art/runtime/jni/
Djava_vm_ext.cc603 std::string_view class_name(method->GetDeclaringClassDescriptor()); in ShouldTrace()
604 if (!trace_.empty() && class_name.find(trace_) != std::string_view::npos) { in ShouldTrace()
/art/runtime/verifier/
Dverifier_deps.cc1097 std::string_view name(dex_file.StringDataByIdx(field_id.name_idx_)); in VerifyFields()
1098 std::string_view type( in VerifyFields()
/art/dex2oat/driver/
Dcompiler_driver.cc1054 std::string_view descriptor(klass->GetDescriptor(&temp)); in operator ()()
1204 if (image_classes->find(std::string_view(descriptor)) != image_classes->end()) { in MaybeAddToImageClasses()
1291 std::string_view descriptor(klass->GetDescriptor(&temp)); in operator ()()
2298 can_init_static_fields = !EndsWith(std::string_view(descriptor), "$NoPreloadHolder;"); in TryInitializeClass()
/art/dexdump/
Ddexdump.cc366 static void dumpEscapedString(std::string_view p) { in dumpEscapedString()
405 static void dumpXmlAttribute(std::string_view p) __attribute__((optnone)) { in dumpXmlAttribute()

123