Home
last modified time | relevance | path

Searched refs:java_lang_dex_file_ (Results 1 – 10 of 10) sorted by relevance

/art/runtime/mirror/
Ddex_cache_test.cc35 *java_lang_dex_file_)); in TEST_F()
38 EXPECT_EQ(java_lang_dex_file_->NumStringIds(), dex_cache->NumStrings()); in TEST_F()
39 EXPECT_EQ(java_lang_dex_file_->NumTypeIds(), dex_cache->NumResolvedTypes()); in TEST_F()
40 EXPECT_EQ(java_lang_dex_file_->NumMethodIds(), dex_cache->NumResolvedMethods()); in TEST_F()
41 EXPECT_EQ(java_lang_dex_file_->NumFieldIds(), dex_cache->NumResolvedFields()); in TEST_F()
42 EXPECT_EQ(java_lang_dex_file_->NumTypeIds(), dex_cache->NumInitializedStaticStorage()); in TEST_F()
50 EXPECT_EQ(java_lang_dex_file_->NumStringIds(), in TEST_F()
52 EXPECT_EQ(java_lang_dex_file_->NumTypeIds(), in TEST_F()
54 EXPECT_EQ(java_lang_dex_file_->NumMethodIds(), in TEST_F()
56 EXPECT_EQ(java_lang_dex_file_->NumFieldIds(), in TEST_F()
[all …]
Dobject_test.cc209 const DexFile::StringId* string_id = java_lang_dex_file_->FindStringId("[I"); in TEST_F()
211 const DexFile::TypeId* type_id = java_lang_dex_file_->FindTypeId( in TEST_F()
212 java_lang_dex_file_->GetIndexForStringId(*string_id)); in TEST_F()
214 uint32_t type_idx = java_lang_dex_file_->GetIndexForTypeId(*type_id); in TEST_F()
/art/runtime/
Ddex_file_test.cc124 EXPECT_EQ(java_lang_dex_file_->GetLocationChecksum(), checksum); in TEST_F()
213 for (size_t i = 0; i < java_lang_dex_file_->NumTypeIds(); i++) { in TEST_F()
214 const char* type_str = java_lang_dex_file_->StringByTypeIdx(i); in TEST_F()
215 const DexFile::StringId* type_str_id = java_lang_dex_file_->FindStringId(type_str); in TEST_F()
217 uint32_t type_str_idx = java_lang_dex_file_->GetIndexForStringId(*type_str_id); in TEST_F()
218 const DexFile::TypeId* type_id = java_lang_dex_file_->FindTypeId(type_str_idx); in TEST_F()
220 EXPECT_EQ(java_lang_dex_file_->GetIndexForTypeId(*type_id), i); in TEST_F()
225 for (size_t i = 0; i < java_lang_dex_file_->NumProtoIds(); i++) { in TEST_F()
226 const DexFile::ProtoId& to_find = java_lang_dex_file_->GetProtoId(i); in TEST_F()
227 const DexFile::TypeList* to_find_tl = java_lang_dex_file_->GetProtoParameters(to_find); in TEST_F()
[all …]
Dcommon_test.h285 java_lang_dex_file_ = DexFile::Open(GetLibCoreDexFileName(), GetLibCoreDexFileName()); in SetUp()
286 if (java_lang_dex_file_ == NULL) { in SetUp()
293 boot_class_path_.push_back(java_lang_dex_file_); in SetUp()
522 const DexFile* java_lang_dex_file_; // owned by runtime_ variable
Dclass_linker_test.cc756 AssertDexFile(java_lang_dex_file_, NULL); in TEST_F()
/art/runtime/verifier/
Dmethod_verifier_test.cc56 VerifyDexFile(java_lang_dex_file_); in TEST_F()
/art/compiler/sea_ir/ir/
Dregions_test.cc28 sea_ir::SeaGraph sg(*java_lang_dex_file_); in TEST_F()
/art/compiler/
Doat_test.cc112 const DexFile* dex_file = java_lang_dex_file_; in TEST_F()
Dimage_test.cc111 java_lang_dex_file_ = NULL; in TEST_F()
/art/compiler/driver/
Dcompiler_driver_test.cc103 const DexFile* dex = java_lang_dex_file_; in TEST_F()