| /art/runtime/ | 
| dex_file-inl.h | 28 inline int32_t DexFile::GetStringLength(const StringId& string_id) const { 29   const uint8_t* ptr = begin_ + string_id.string_data_off_;
 33 inline const char* DexFile::GetStringDataAndUtf16Length(const StringId& string_id,
 36   const uint8_t* ptr = begin_ + string_id.string_data_off_;
 41 inline const char* DexFile::GetStringData(const StringId& string_id) const {
 43   return GetStringDataAndUtf16Length(string_id, &ignored);
 52   const StringId& string_id = GetStringId(idx);  local
 53   return GetStringDataAndUtf16Length(string_id, utf16_length);
 
 | 
| transaction_test.cc | 506   const DexFile::StringId* string_id = dex_file->FindStringId(kResolvedString);  local 507   ASSERT_TRUE(string_id != nullptr);
 508   dex::StringIndex string_idx = dex_file->GetIndexForStringId(*string_id);
 
 | 
| dex_file_verifier_test.cc | 251     const DexFile::StringId& string_id = dex_file->GetStringId(name_index);  local 252     const char* str = dex_file->GetStringData(string_id);
 856     const DexFile::StringId& string_id = dex_file->GetStringId(name_index)  local
 [all...]
 | 
| dex_file_verifier.cc | 2886  const DexFile::StringId* string_id =  local [all...]
 | 
| /art/runtime/jdwp/ | 
| jdwp_handler.cc | 275   ObjectId string_id;  local 276   JdwpError status = Dbg::CreateString(str, &string_id);
 280   expandBufAddObjectId(pReply, string_id);
 [all...]
 | 
| /art/runtime/verifier/ | 
| verifier_deps.cc | 139   const dex::StringIndex string_id = TryGetClassDescriptorStringId(  local 143   if (string_id.IsValid()) {
 145     DCHECK_EQ(GetClassDescriptorStringId(dex_file, method->GetDeclaringClass()), string_id);  local
 146     return string_id;
 158   const dex::StringIndex string_id = TryGetClassDescriptorStringId(  local
 162   if (string_id.IsValid()) {
 164     DCHECK_EQ(GetClassDescriptorStringId(dex_file, field->GetDeclaringClass()), string_id);  local
 165     return string_id;
 203   const DexFile::StringId* string_id = dex_file.FindStringId(str.c_str());  local
 204   if (string_id != nullptr)
 [all...]
 | 
| /art/dexlayout/ | 
| dex_ir.cc | 353   StringId* string_id = new StringId(string_data);  local 354   string_ids_.AddIndexedItem(string_id, StringIdsOffset() + i * StringId::ItemSize(), i);
 [all...]
 | 
| dexlayout.cc | 540       dex_ir::StringId* string_id = data->GetStringId();  local 542         DumpEscapedString(string_id->Data(), out_file_);
 544         DumpXmlAttribute(string_id->Data(), out_file_);
 [all...]
 |