Lines Matching refs:dex
96 const dex::ClassDef& class_def = dex_file.GetClassDef(i); in MakeDexFileExecutable()
125 const DexFile& dex = *java_lang_dex_file_; in TEST_F() local
126 ObjPtr<mirror::DexCache> dex_cache = class_linker_->FindDexCache(soa.Self(), dex); in TEST_F()
127 EXPECT_EQ(dex.NumStringIds(), dex_cache->NumStrings()); in TEST_F()
129 const ObjPtr<mirror::String> string = dex_cache->GetResolvedString(dex::StringIndex(i)); in TEST_F()
132 EXPECT_EQ(dex.NumTypeIds(), dex_cache->NumResolvedTypes()); in TEST_F()
134 const ObjPtr<mirror::Class> type = dex_cache->GetResolvedType(dex::TypeIndex(i)); in TEST_F()
136 << "type_idx=" << i << " " << dex.GetTypeDescriptor(dex.GetTypeId(dex::TypeIndex(i))); in TEST_F()
139 || dex.NumMethodIds() == dex_cache->NumResolvedMethods()); in TEST_F()
144 << " " << dex.GetMethodDeclaringClassDescriptor(dex.GetMethodId(i)) in TEST_F()
145 << " " << dex.GetMethodName(dex.GetMethodId(i)); in TEST_F()
147 << " " << dex.GetMethodDeclaringClassDescriptor(dex.GetMethodId(i)) << " " in TEST_F()
148 << dex.GetMethodName(dex.GetMethodId(i)); in TEST_F()
151 || dex.NumFieldIds() == dex_cache->NumResolvedFields()); in TEST_F()
156 << " " << dex.GetFieldDeclaringClassDescriptor(dex.GetFieldId(i)) in TEST_F()
157 << " " << dex.GetFieldName(dex.GetFieldId(i)); in TEST_F()