Lines Matching refs:System
31 //System.out.println("SYSTEM: " + ClassLoader.getSystemClassLoader());
32 //System.out.println("ALTERN: " + loader);
48 System.out.println("base: " + DoubledImplement.class);
49 System.out.println("base2: " + DoubledImplement2.class);
75 String DEX_FILE = System.getenv("DEX_LOCATION") + "/068-classloader-ex.jar";
77 Class mDexClass = Class.forName("dalvik.system.DexFile");
87 System.out.println(e);
89 System.out.println("Loaded class into null class loader");
157 System.err.println("loadClass failed");
166 System.err.println("ERROR: Inaccessible1 was accessible");
168 System.err.println("newInstance failed: " + ie);
171 System.out.println("Got expected access exception #1");
172 //System.out.println("+++ " + iae);
186 System.err.println("ERROR: Inaccessible2 was accessible: " + altClass);
190 System.out.println("Got expected CNFE/IAE #2");
192 System.err.println("Got unexpected CNFE/IAE #2");
206 System.err.println("ERROR: Inaccessible3 was accessible: " + altClass);
210 System.out.println("Got expected CNFE/IAE #3");
212 System.err.println("Got unexpected CNFE/IAE #3");
228 //System.out.println("+++ DoubledExtend is " + doubledExtendClass
231 System.err.println("loadClass failed: " + cnfe);
239 System.err.println("newInstance failed: " + ie);
242 System.err.println("newInstance failed: " + iae);
245 System.out.println("Got expected LinkageError on DE");
258 System.err.println("ERROR: did not get LinkageError on DE");
259 System.err.println("(result=" + result + ")");
261 System.out.println("Got expected LinkageError on DE");
278 System.err.println("loadClass failed: " + cnfe);
286 System.err.println("newInstance failed: " + ie);
289 System.err.println("newInstance failed: " + iae);
292 System.err.println("Got unexpected LinkageError on DEO");
306 System.out.println("Got DEO result " + result);
308 System.err.println("Got unexpected LinkageError on DEO");
326 System.err.println("loadClass failed: " + cnfe);
334 System.err.println("newInstance failed: " + ie);
337 System.err.println("newInstance failed: " + iae);
341 System.out.println("Got LinkageError on GD");
355 System.out.println("Got LinkageError on GD");
358 System.err.println("Should have failed by now on GetDoubled");
372 System.err.println("loadClass ta failed: " + cnfe);
380 System.err.println("newInstance failed: " + ie);
383 System.err.println("newInstance failed: " + iae);
386 System.out.println("Got LinkageError on TA");
400 System.out.println("Got LinkageError on TA");
403 System.err.println("Should have failed by now in testAbstract");
419 System.err.println("loadClass failed: " + cnfe);
427 System.err.println("newInstance failed: " + ie);
430 System.err.println("newInstance failed: " + iae);
433 System.out.println("Got LinkageError on DI (early)");
446 //System.out.println("useObject: " + di.toString() + " -- "
451 System.err.println("ERROR: did not get LinkageError on DI");
455 System.out.println("Got LinkageError on DI (late)");
480 System.err.println("loadClass failed: " + cnfe);
488 System.err.println("newInstance failed: " + ie);
491 System.err.println("newInstance failed: " + iae);
494 System.out.println("Got LinkageError on IDI (early)");
495 //System.out.println(le);
511 System.out.println(Class.forName("Main").toString());
513 System.out.println(Class.forName("Main", false, null).toString());
515 System.out.println("Got expected ClassNotFoundException");