OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:java_lang_dex_file_
(Results
1 - 11
of
11
) sorted by null
/art/runtime/mirror/
dex_cache_test.cc
38
hs.NewHandle(class_linker_->AllocDexCache(soa.Self(), *
java_lang_dex_file_
)));
41
EXPECT_EQ(
java_lang_dex_file_
->NumStringIds(), dex_cache->NumStrings());
42
EXPECT_EQ(
java_lang_dex_file_
->NumTypeIds(), dex_cache->NumResolvedTypes());
43
EXPECT_EQ(
java_lang_dex_file_
->NumMethodIds(), dex_cache->NumResolvedMethods());
44
EXPECT_EQ(
java_lang_dex_file_
->NumFieldIds(), dex_cache->NumResolvedFields());
51
EXPECT_EQ(
java_lang_dex_file_
->NumStringIds(),
53
EXPECT_EQ(
java_lang_dex_file_
->NumTypeIds(),
55
EXPECT_EQ(
java_lang_dex_file_
->NumMethodIds(),
57
EXPECT_EQ(
java_lang_dex_file_
->NumFieldIds(),
object_test.cc
275
const DexFile::StringId* string_id =
java_lang_dex_file_
->FindStringId("[I");
277
const DexFile::TypeId* type_id =
java_lang_dex_file_
->FindTypeId(
278
java_lang_dex_file_
->GetIndexForStringId(*string_id));
280
uint32_t type_idx =
java_lang_dex_file_
->GetIndexForTypeId(*type_id);
/art/runtime/
dex_file_test.cc
210
EXPECT_EQ(
java_lang_dex_file_
->GetLocationChecksum(), checksum);
293
for (size_t i = 0; i <
java_lang_dex_file_
->NumTypeIds(); i++) {
294
const char* type_str =
java_lang_dex_file_
->StringByTypeIdx(i);
295
const DexFile::StringId* type_str_id =
java_lang_dex_file_
->FindStringId(type_str);
297
uint32_t type_str_idx =
java_lang_dex_file_
->GetIndexForStringId(*type_str_id);
298
const DexFile::TypeId* type_id =
java_lang_dex_file_
->FindTypeId(type_str_idx);
300
EXPECT_EQ(
java_lang_dex_file_
->GetIndexForTypeId(*type_id), i);
305
for (size_t i = 0; i <
java_lang_dex_file_
->NumProtoIds(); i++) {
306
const DexFile::ProtoId& to_find =
java_lang_dex_file_
->GetProtoId(i);
307
const DexFile::TypeList* to_find_tl =
java_lang_dex_file_
->GetProtoParameters(to_find)
[
all
...]
common_runtime_test.h
112
const DexFile*
java_lang_dex_file_
; // owned by runtime_
member in class:art::CommonRuntimeTest
common_runtime_test.cc
200
java_lang_dex_file_
= LoadExpectSingleDexFile(GetLibCoreDexFileName().c_str());
201
boot_class_path_.push_back(
java_lang_dex_file_
);
class_linker_test.cc
[
all
...]
/art/runtime/verifier/
method_verifier_test.cc
58
VerifyDexFile(
java_lang_dex_file_
);
/art/compiler/sea_ir/ir/
regions_test.cc
27
sea_ir::SeaGraph sg(*
java_lang_dex_file_
);
/art/compiler/driver/
compiler_driver_test.cc
109
const DexFile* dex =
java_lang_dex_file_
;
/art/compiler/
image_test.cc
141
java_lang_dex_file_
= NULL;
oat_test.cc
148
const DexFile* dex_file =
java_lang_dex_file_
;
Completed in 228 milliseconds