Home
last modified time | relevance | path

Searched refs:cl (Results 1 – 25 of 53) sorted by relevance

123

/art/test/656-annotation-lookup-generic-jni/src/
DMain.java64 InMemoryDexClassLoader cl = new InMemoryDexClassLoader(dexBuffer, getBootClassLoader()); in createUnquickenedDexClassLoader() local
65 return cl; in createUnquickenedDexClassLoader()
69 ClassLoader cl = Main.class.getClassLoader(); in getBootClassLoader() local
70 while (cl.getParent() != null) { in getBootClassLoader()
71 cl = cl.getParent(); in getBootClassLoader()
73 return cl; in getBootClassLoader()
/art/test/912-classes/src/art/
DDexData.java26 ClassLoader cl = DexData.class.getClassLoader(); in getBootClassLoader() local
27 while (cl.getParent() != null) { in getBootClassLoader()
28 cl = cl.getParent(); in getBootClassLoader()
30 return cl; in getBootClassLoader()
DTest912.java153 Object cl = getClassLoader(c); in testClassLoader() local
154 System.out.println(c + " " + (cl != null ? cl.getClass().getName() : "null")); in testClassLoader()
155 if (cl == null) { in testClassLoader()
160 if (!(cl instanceof ClassLoader)) { in testClassLoader()
161 throw new RuntimeException("Unexpected \"classloader\": " + cl + " (" + cl.getClass() + in testClassLoader()
164 if (cl != c.getClassLoader()) { in testClassLoader()
165 throw new RuntimeException("Unexpected classloader: " + c.getClassLoader() + " vs " + cl); in testClassLoader()
222 ClassLoader cl = Main.class.getClassLoader(); in testClassEvents() local
223 while (cl.getParent() != null) { in testClassEvents()
224 cl = cl.getParent(); in testClassEvents()
[all …]
/art/runtime/native/
Djava_lang_VMClassLoader.cc34 static mirror::Class* LookupClass(ClassLinker* cl, in LookupClass() argument
41 return cl->LookupClass(self, descriptor, hash, class_loader); in LookupClass()
44 static ObjPtr<mirror::Class> FindClassInPathClassLoader(ClassLinker* cl, in FindClassInPathClassLoader() argument
52 if (cl->FindClassInBaseDexClassLoader(soa, self, descriptor, hash, class_loader, &result)) { in FindClassInPathClassLoader()
67 ClassLinker* cl = Runtime::Current()->GetClassLinker(); in VMClassLoader_findLoadedClass() local
73 ObjPtr<mirror::Class> c = VMClassLoader::LookupClass(cl, in VMClassLoader_findLoadedClass()
83 cl->ThrowEarlierClassFailure(c.Ptr()); in VMClassLoader_findLoadedClass()
103 c = VMClassLoader::FindClassInPathClassLoader(cl, in VMClassLoader_findLoadedClass()
Ddalvik_system_VMStack.cc103 ObjPtr<mirror::Object> cl = c->GetClassLoader(); in VMStack_getClosestUserClassLoader() local
104 if (cl != nullptr) { in VMStack_getClosestUserClassLoader()
105 class_loader = cl; in VMStack_getClosestUserClassLoader()
/art/runtime/interpreter/mterp/x86_64/
Dshop2addr.S12 $instr # ex: sarl %cl, %eax
16 $instr # ex: sarl %cl, %eax
Dop_move_wide.S5 andb $$0xf, %cl # ecx <- A
Dop_mul_int_2addr.S4 andb $$0xf, %cl # ecx <- A
Dop_mul_long_2addr.S4 andb $$0xf, %cl # ecx <- A
DbinopWide2addr.S7 andb $$0xf, %cl # ecx <- A
Dbinop2addr.S15 andb $$0xf, %cl # ecx <- A
Dfpcvt.S8 andb $$0xf, %cl # ecx <- A
/art/runtime/interpreter/mterp/x86/
Dop_shr_long.S20 sarl %cl, rIBASE
21 testb $$32, %cl
Dop_shl_long.S20 sall %cl, %eax
21 testb $$32, %cl
Dop_shl_long_2addr.S17 sall %cl, %eax
18 testb $$32, %cl
Dop_shr_long_2addr.S17 sarl %cl, rIBASE
18 testb $$32, %cl
Dop_ushr_long.S20 shrl %cl, rIBASE
21 testb $$32, %cl
Dop_ushr_long_2addr.S17 shrl %cl, rIBASE
18 testb $$32, %cl
Dunop.S10 andb $$0xf,%cl # ecx <- A
Dop_move_wide.S5 andb $$0xf, %cl # ecx <- A
Dbinop2addr.S16 andb $$0xf, %cl # ecx <- A
Dfpcvt.S9 andb $$0xf, %cl # ecx <- A
Dshop2addr.S11 $instr # ex: sarl %cl, %eax
/art/runtime/mirror/
Dclass_ext.cc60 ClassLinker* cl = Runtime::Current()->GetClassLinker(); in ExtendObsoleteArrays() local
70 cl->AllocPointerArray(self, new_len))); in ExtendObsoleteArrays()
78 cl->FindClass(self, in ExtendObsoleteArrays()
94 cl->GetImagePointerSize()); in ExtendObsoleteArrays()
/art/test/utils/python/
Dgenerate_java_main.py229 def get_ifaces(cl): argument
230 for i2 in cl.implements:
234 for cl in flatten_classes(dat.classes, c):
235 yield from get_ifaces(cl)

123