Lines Matching refs:sharedLibraries

50       ClassLoader[] sharedLibraries = {  in testOneLibrary()  local
54 new PathClassLoader(MAIN_JAR_FILE, null, bootLoader, sharedLibraries); in testOneLibrary()
56 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testOneLibrary()
58 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testOneLibrary()
61 new DelegateLastClassLoader(MAIN_JAR_FILE, null, bootLoader, sharedLibraries); in testOneLibrary()
63 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testOneLibrary()
65 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testOneLibrary()
69 ClassLoader[] sharedLibraries = { in testTwoLibraries1() local
73 ClassLoader delegateFirst = new PathClassLoader("", null, bootLoader, sharedLibraries); in testTwoLibraries1()
75 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testTwoLibraries1()
77 assertIdentical(sharedLibraries[1], cls.getClassLoader()); in testTwoLibraries1()
80 new DelegateLastClassLoader(MAIN_JAR_FILE, null, bootLoader, sharedLibraries); in testTwoLibraries1()
82 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testTwoLibraries1()
84 assertIdentical(sharedLibraries[1], cls.getClassLoader()); in testTwoLibraries1()
88 ClassLoader[] sharedLibraries = { in testTwoLibraries2() local
92 ClassLoader delegateFirst = new PathClassLoader("", null, bootLoader, sharedLibraries); in testTwoLibraries2()
94 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testTwoLibraries2()
96 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testTwoLibraries2()
98 ClassLoader delegateLast = new DelegateLastClassLoader("", null, bootLoader, sharedLibraries); in testTwoLibraries2()
100 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testTwoLibraries2()
102 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testTwoLibraries2()