Searched refs:cl1 (Results 1 – 3 of 3) sorted by relevance
319 /*package*/ static String encodeClassLoaderChain(String cl1, String cl2) { in encodeClassLoaderChain() argument320 if (cl1.isEmpty()) return cl2; in encodeClassLoaderChain()321 if (cl2.isEmpty()) return cl1; in encodeClassLoaderChain()322 return cl1 + ";" + cl2; in encodeClassLoaderChain()
332 ConfidenceLevel cl1 = new ConfidenceLevel(1, 90); in testKeyphraseRecognitionEventParcelUnparcel_largeData() local336 new ConfidenceLevel[] {cl1, cl2}); in testKeyphraseRecognitionEventParcelUnparcel_largeData()
74 ClassLoader cl1 = new ClassLoader(this.getClass().getClassLoader()) { }; in testNoOp() local76 Class<ClassWithNative> clazz1 = (Class<ClassWithNative>) cl1.loadClass(NATIVE_CLASS_NAME); in testNoOp()