Lines Matching refs:cls

45       Class<?> cls = loader.loadClass("Main");  in testNoLibrary()  local
46 assertIdentical(loader, cls.getClassLoader()); in testNoLibrary()
55 Class<?> cls = delegateFirst.loadClass("Main"); in testOneLibrary() local
56 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testOneLibrary()
57 cls = delegateFirst.loadClass("SharedLibraryOne"); in testOneLibrary()
58 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testOneLibrary()
62 cls = delegateLast.loadClass("Main"); in testOneLibrary()
63 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testOneLibrary()
64 cls = delegateLast.loadClass("SharedLibraryOne"); in testOneLibrary()
65 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testOneLibrary()
74 Class<?> cls = delegateFirst.loadClass("Main"); in testTwoLibraries1() local
75 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testTwoLibraries1()
76 cls = delegateFirst.loadClass("SharedLibraryOne"); in testTwoLibraries1()
77 assertIdentical(sharedLibraries[1], cls.getClassLoader()); in testTwoLibraries1()
81 cls = delegateLast.loadClass("Main"); in testTwoLibraries1()
82 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testTwoLibraries1()
83 cls = delegateLast.loadClass("SharedLibraryOne"); in testTwoLibraries1()
84 assertIdentical(sharedLibraries[1], cls.getClassLoader()); in testTwoLibraries1()
93 Class<?> cls = delegateFirst.loadClass("Main"); in testTwoLibraries2() local
94 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testTwoLibraries2()
95 cls = delegateFirst.loadClass("SharedLibraryOne"); in testTwoLibraries2()
96 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testTwoLibraries2()
99 cls = delegateLast.loadClass("Main"); in testTwoLibraries2()
100 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testTwoLibraries2()
101 cls = delegateLast.loadClass("SharedLibraryOne"); in testTwoLibraries2()
102 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testTwoLibraries2()
114 Class<?> cls = delegateFirst.loadClass("Main"); in testTransitive1() local
115 assertIdentical(sharedLibraryLevel2[0], cls.getClassLoader()); in testTransitive1()
116 cls = delegateFirst.loadClass("SharedLibraryOne"); in testTransitive1()
117 assertIdentical(sharedLibraryLevel2[0], cls.getClassLoader()); in testTransitive1()
121 cls = delegateLast.loadClass("Main"); in testTransitive1()
122 assertIdentical(sharedLibraryLevel2[0], cls.getClassLoader()); in testTransitive1()
123 cls = delegateLast.loadClass("SharedLibraryOne"); in testTransitive1()
124 assertIdentical(sharedLibraryLevel2[0], cls.getClassLoader()); in testTransitive1()
136 Class<?> cls = delegateFirst.loadClass("Main"); in testTransitive2() local
137 assertIdentical(sharedLibraryLevel2[0], cls.getClassLoader()); in testTransitive2()
138 cls = delegateFirst.loadClass("SharedLibraryOne"); in testTransitive2()
139 assertIdentical(sharedLibraryLevel1[0], cls.getClassLoader()); in testTransitive2()
143 cls = delegateLast.loadClass("Main"); in testTransitive2()
144 assertIdentical(sharedLibraryLevel2[0], cls.getClassLoader()); in testTransitive2()
145 cls = delegateLast.loadClass("SharedLibraryOne"); in testTransitive2()
146 assertIdentical(sharedLibraryLevel1[0], cls.getClassLoader()); in testTransitive2()
159 Class<?> cls = delegateFirst.loadClass("Main"); in testTransitive3() local
160 assertIdentical(sharedLibraryLevel2[0], cls.getClassLoader()); in testTransitive3()
161 cls = delegateFirst.loadClass("SharedLibraryOne"); in testTransitive3()
162 assertIdentical(sharedLibraryLevel1[0], cls.getClassLoader()); in testTransitive3()
166 cls = delegateLast.loadClass("Main"); in testTransitive3()
167 assertIdentical(sharedLibraryLevel2[0], cls.getClassLoader()); in testTransitive3()
168 cls = delegateLast.loadClass("SharedLibraryOne"); in testTransitive3()
169 assertIdentical(sharedLibraryLevel1[0], cls.getClassLoader()); in testTransitive3()
182 Class<?> cls = delegateFirst.loadClass("Main"); in testTransitive4() local
183 assertIdentical(sharedLibraryLevel2[0], cls.getClassLoader()); in testTransitive4()
184 cls = delegateFirst.loadClass("SharedLibraryOne"); in testTransitive4()
185 assertIdentical(sharedLibraryLevel2[0], cls.getClassLoader()); in testTransitive4()
189 cls = delegateLast.loadClass("Main"); in testTransitive4()
190 assertIdentical(sharedLibraryLevel2[0], cls.getClassLoader()); in testTransitive4()
191 cls = delegateLast.loadClass("SharedLibraryOne"); in testTransitive4()
192 assertIdentical(sharedLibraryLevel2[0], cls.getClassLoader()); in testTransitive4()