HomeSort by relevance Sort by last modified time
    Searched refs:class_linker_ (Results 1 - 19 of 19) sorted by null

  /art/compiler/driver/
dex_compilation_unit.cc 29 class_linker_(cu->class_linker),
47 class_linker_(class_linker),
dex_compilation_unit.h 50 return class_linker_;
106 ClassLinker* const class_linker_; member in class:art::DexCompilationUnit
compiler_driver_test.cc 104 mirror::DexCache* dex_cache = class_linker_->FindDexCache(*dex);
compiler_driver.cc 1426 ClassLinker* const class_linker_; member in class:art::ParallelCompilationManager
    [all...]
  /art/runtime/mirror/
object_test.cc 95 class_linker_->AllocObjectArray<Object>(soa.Self(), 256));
105 class_linker_->AllocObjectArray<Object>(soa.Self(), 2));
116 Class* aioobe = class_linker_->FindSystemClass("Ljava/lang/ArrayIndexOutOfBoundsException;");
131 EXPECT_EQ(class_linker_->FindSystemClass("Ljava/lang/Cloneable;"), oa_ch.GetDirectInterface(0));
132 EXPECT_EQ(class_linker_->FindSystemClass("Ljava/io/Serializable;"), oa_ch.GetDirectInterface(1));
137 Class* c = class_linker_->FindSystemClass("[I");
141 c = class_linker_->FindSystemClass("[Ljava/lang/Object;");
145 c = class_linker_->FindSystemClass("[[Ljava/lang/Object;");
180 TestPrimitiveArray<BooleanArray>(class_linker_);
183 TestPrimitiveArray<ByteArray>(class_linker_);
    [all...]
dex_cache_test.cc 34 SirtRef<DexCache> dex_cache(soa.Self(), class_linker_->AllocDexCache(soa.Self(),
  /art/runtime/
class_linker_test.cc 44 EXPECT_TRUE(class_linker_->FindSystemClass(descriptor.c_str()) == NULL);
49 mirror::Class* exception_class = class_linker_->FindSystemClass("Ljava/lang/NoClassDefFoundError;");
55 AssertPrimitiveClass(descriptor, class_linker_->FindSystemClass(descriptor.c_str()));
98 mirror::Class* array = class_linker_->FindClass(array_descriptor.c_str(), class_loader);
115 EXPECT_EQ(class_linker_->FindSystemClass("Ljava/lang/Object;"), array->GetSuperClass());
305 mirror::Class* klass = class_linker_->FindSystemClass(descriptor.c_str());
334 class_linker_->VisitRoots(TestRootVisitor, NULL, false, false);
336 mirror::DexCache* dex_cache = class_linker_->FindDexCache(*dex);
648 mirror::Class* outer = class_linker_->FindClass("LNested;", class_loader.get());
653 mirror::Class* inner = class_linker_->FindClass("LNested$Inner;", class_loader.get())
    [all...]
object_utils.h 71 : class_linker_(l),
234 ClassLinker* result = class_linker_;
237 class_linker_ = result;
242 ClassLinker* class_linker_; member in class:art::ClassHelper
254 FieldHelper() : class_linker_(NULL), dex_cache_(NULL), dex_file_(NULL), field_(NULL) {}
255 explicit FieldHelper(const mirror::ArtField* f) : class_linker_(NULL), dex_cache_(NULL), dex_file_(NULL), field_(f) {}
257 : class_linker_(l), dex_cache_(NULL), dex_file_(NULL), field_(f) {}
351 ClassLinker* result = class_linker_;
354 class_linker_ = result;
365 ClassLinker* class_linker_; member in class:art::FieldHelper
668 ClassLinker* class_linker_; member in class:art::MethodHelper
    [all...]
utils_test.cc 102 mirror::Class* c = class_linker_->FindSystemClass("[Ljava/lang/String;");
112 mirror::Class* c = class_linker_->FindSystemClass("[Ljava/lang/String;");
121 mirror::Class* c = class_linker_->FindSystemClass("[Ljava/lang/String;");
131 mirror::Class* java_lang_String = class_linker_->FindSystemClass("Ljava/lang/String;");
200 mirror::Class* c = class_linker_->FindSystemClass("Ljava/lang/String;");
common_test.h 316 class_linker_ = runtime_->GetClassLinker();
344 class_linker_->FixupDexCaches(runtime_->GetResolutionMethod());
446 class_linker_->RegisterDexFile(*dex_file);
461 mirror::Class* klass = class_linker_->FindClass(class_descriptor.c_str(), class_loader);
485 mirror::Class* klass = class_linker_->FindClass(class_descriptor.c_str(), class_loader);
499 mirror::Class* klass = class_linker_->FindClass(class_descriptor.c_str(), class_loader);
527 ClassLinker* class_linker_; member in class:art::CommonTest
exception_test.cc 42 my_klass_ = class_linker_->FindClass("LExceptionHandle;", class_loader.get());
44 class_linker_->EnsureInitialized(my_klass_, true, true);
runtime.h 270 return class_linker_;
460 ClassLinker* class_linker_; member in class:art::Runtime
runtime.cc 81 class_linker_(NULL),
131 delete class_linker_;
    [all...]
indirect_reference_table_test.cc 50 mirror::Class* c = class_linker_->FindSystemClass("Ljava/lang/Object;");
jni_internal_test.cc 100 mirror::Class* c = class_linker_->FindClass(DotToDescriptor(class_name).c_str(),
    [all...]
  /art/runtime/verifier/
method_verifier_test.cc 33 mirror::Class* klass = class_linker_->FindSystemClass(descriptor.c_str());
  /art/runtime/gc/
heap_test.cc 46 mirror::Class* c = class_linker_->FindSystemClass("[Ljava/lang/Object;");
  /art/compiler/
image_test.cc 134 class_linker_ = runtime_->GetClassLinker();
151 mirror::Class* klass = class_linker_->FindSystemClass(descriptor);
  /art/compiler/jni/
jni_compiler_test.cc 52 mirror::Class* c = class_linker_->FindClass("LMyClassNatives;",

Completed in 1220 milliseconds