Lines Matching refs:loadClass
57 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)
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(name, resolve); // returns class or throws