Lines Matching refs:bootLoader

24     static ClassLoader bootLoader = Object.class.getClassLoader();  field in Main
44 ClassLoader loader = new PathClassLoader(MAIN_JAR_FILE, null, bootLoader); in testNoLibrary()
51 new PathClassLoader(EX_JAR_FILE, null, bootLoader), in testOneLibrary()
54 new PathClassLoader(MAIN_JAR_FILE, null, bootLoader, sharedLibraries); in testOneLibrary()
61 new DelegateLastClassLoader(MAIN_JAR_FILE, null, bootLoader, sharedLibraries); in testOneLibrary()
70 new PathClassLoader(MAIN_JAR_FILE, null, bootLoader), in testTwoLibraries1()
71 new PathClassLoader(EX_JAR_FILE, null, bootLoader), in testTwoLibraries1()
73 ClassLoader delegateFirst = new PathClassLoader("", null, bootLoader, sharedLibraries); in testTwoLibraries1()
80 new DelegateLastClassLoader(MAIN_JAR_FILE, null, bootLoader, sharedLibraries); in testTwoLibraries1()
89 new PathClassLoader(EX_JAR_FILE, null, bootLoader), in testTwoLibraries2()
90 new PathClassLoader(MAIN_JAR_FILE, null, bootLoader), in testTwoLibraries2()
92 ClassLoader delegateFirst = new PathClassLoader("", null, bootLoader, sharedLibraries); in testTwoLibraries2()
98 ClassLoader delegateLast = new DelegateLastClassLoader("", null, bootLoader, sharedLibraries); in testTwoLibraries2()
107 new PathClassLoader(EX_JAR_FILE, null, bootLoader), in testTransitive1()
110 new PathClassLoader(MAIN_JAR_FILE, null, bootLoader, sharedLibraryLevel2), in testTransitive1()
113 ClassLoader delegateFirst = new PathClassLoader("", null, bootLoader, sharedLibraryLevel1); in testTransitive1()
120 new DelegateLastClassLoader("", null, bootLoader, sharedLibraryLevel1); in testTransitive1()
129 new PathClassLoader(MAIN_JAR_FILE, null, bootLoader), in testTransitive2()
132 new PathClassLoader(EX_JAR_FILE, null, bootLoader, sharedLibraryLevel2), in testTransitive2()
135 ClassLoader delegateFirst = new PathClassLoader("", null, bootLoader, sharedLibraryLevel1); in testTransitive2()
142 new DelegateLastClassLoader("", null, bootLoader, sharedLibraryLevel1); in testTransitive2()
151 new PathClassLoader(MAIN_JAR_FILE, null, bootLoader), in testTransitive3()
154 new PathClassLoader(EX_JAR_FILE, null, bootLoader, sharedLibraryLevel2), in testTransitive3()
158 ClassLoader delegateFirst = new PathClassLoader("", null, bootLoader, sharedLibraryLevel1); in testTransitive3()
165 new DelegateLastClassLoader("", null, bootLoader, sharedLibraryLevel1); in testTransitive3()
174 new PathClassLoader(EX_JAR_FILE, null, bootLoader), in testTransitive4()
177 new PathClassLoader(MAIN_JAR_FILE, null, bootLoader, sharedLibraryLevel2), in testTransitive4()
181 ClassLoader delegateFirst = new PathClassLoader("", null, bootLoader, sharedLibraryLevel1); in testTransitive4()
188 new DelegateLastClassLoader("", null, bootLoader, sharedLibraryLevel1); in testTransitive4()