Searched defs:loadClass (Results 1 - 5 of 5) sorted by relevance

/art/test/068-classloader/src/
H A DFancyLoader.java56 mDexClass = parent.loadClass("dalvik.system.DexFile");
109 * Call DexFile.loadClass(String, ClassLoader).
114 meth = mDexClass.getMethod("loadClass",
123 throw new ClassNotFoundException("loadClass failed", iae);
125 throw new ClassNotFoundException("loadClass failed",
184 protected Class<?> loadClass(String name, boolean resolve) method in class:FancyLoader
197 System.out.println("FancyLoader.loadClass: "
217 * 2. Invoke the loadClass method on the parent class loader. If
222 * parent's loadClass() method, but we passed our parent to the
225 res = super.loadClass(nam
[all...]
/art/test/138-duplicate-classes-check/src/
H A DFancyLoader.java57 mDexClass = parent.loadClass("dalvik.system.DexFile");
110 * Call DexFile.loadClass(String, ClassLoader).
115 meth = mDexClass.getMethod("loadClass",
124 throw new ClassNotFoundException("loadClass failed", iae);
126 throw new ClassNotFoundException("loadClass failed",
185 protected Class<?> loadClass(String name, boolean resolve) method in class:FancyLoader
198 System.out.println("FancyLoader.loadClass: "
218 * 2. Invoke the loadClass method on the parent class loader. If
223 * parent's loadClass() method, but we passed our parent to the
226 res = super.loadClass(nam
[all...]
/art/test/138-duplicate-classes-check2/src/
H A DFancyLoader.java57 mDexClass = parent.loadClass("dalvik.system.DexFile");
110 * Call DexFile.loadClass(String, ClassLoader).
115 meth = mDexClass.getMethod("loadClass",
124 throw new ClassNotFoundException("loadClass failed", iae);
126 throw new ClassNotFoundException("loadClass failed",
185 protected Class<?> loadClass(String name, boolean resolve) method in class:FancyLoader
198 System.out.println("FancyLoader.loadClass: "
218 * 2. Invoke the loadClass method on the parent class loader. If
223 * parent's loadClass() method, but we passed our parent to the
226 res = super.loadClass(nam
[all...]
/art/test/086-null-super/src/
H A DMain.java79 loadClass("dalvik.system.DexFile");
84 getMethod("loadClass",
87 * Invoking loadClass on CLASS_NAME is expected to
109 * otherwise invoke the super's loadClass method.
111 public Class<?> loadClass(String name, boolean resolve) method in class:Main.BrokenDexLoader
118 return super.loadClass(name, resolve);
/art/test/087-gc-after-link/src/
H A DMain.java79 * through reflection, then call loadClass on it.
82 loadClass("dalvik.system.DexFile");
86 Method meth = dexClass.getMethod("loadClass",
89 * Invoking loadClass on CLASS_NAME is expected to
118 * otherwise invoke the super's loadClass method.
120 public Class<?> loadClass(String name, boolean resolve) method in class:Main.BrokenDexLoader
127 return super.loadClass(name, resolve);

Completed in 221 milliseconds