Home | History | Annotate | Download | only in src

Lines Matching refs:loadClass

56             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)
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(name, resolve); // returns class or throws