Home
last modified time | relevance | path

Searched refs:GetStringView (Results 1 – 9 of 9) sorted by relevance

/art/libdexfile/dex/
Ddex_file-inl.h91 inline std::string_view DexFile::GetStringView(const dex::StringId& string_id) const { in GetStringView() function
98 inline std::string_view DexFile::GetStringView(dex::StringIndex string_idx) const { in GetStringView() function
99 return GetStringView(GetStringId(string_idx)); in GetStringView()
111 return GetStringView(type_id.descriptor_idx_); in GetTypeDescriptorView()
160 return GetStringView(field_id.name_idx_); in GetFieldNameView()
212 return GetStringView(method_id.name_idx_); in GetMethodNameView()
Dtype_lookup_table.cc49 const uint32_t hash = ComputeModifiedUtf8Hash(dex_file.GetStringView(str_id)); in Create()
64 const uint32_t hash = ComputeModifiedUtf8Hash(dex_file.GetStringView(str_id)); in Create()
Ddex_file.h356 std::string_view GetStringView(const dex::StringId& string_id) const;
357 std::string_view GetStringView(dex::StringIndex string_idx) const;
/art/tools/veridex/
Dhidden_api_finder.cc75 const std::string name(dex_file.GetStringView(string_index)); in CollectAccesses()
/art/dexdump/
Ddexdump.cc581 dumpEscapedString(pDexFile->GetStringView(dex::StringIndex(idx))); in dumpEncodedValue()
583 dumpXmlAttribute(pDexFile->GetStringView(dex::StringIndex(idx))); in dumpEncodedValue()
/art/runtime/verifier/
Dverifier_deps.cc179 return std::string(dex_file.GetStringView(string_id)); in GetStringFromId()
Dmethod_verifier.cc854 const std::string_view method_name = dex_file_->GetStringView(method_id.name_idx_); in Verify()
2900 is_constructor = dex_file_->GetStringView(method_id.name_idx_) == "<init>"; in CodeFlowVerifyInstruction()
/art/runtime/mirror/
Dclass.cc576 std::string_view name = dex_file.GetStringView(method_id.name_idx_); in FindInterfaceMethod()
/art/runtime/
Dclass_linker.cc6601 name_view_ = dex_file_->GetStringView(mid_->name_idx_); in GetNameView()
6614 return GetNameView() == other_dex_file->GetStringView(other_mid.name_idx_) && in HasSameNameAndSignature()