Searched refs:cl1 (Results 1 – 3 of 3) sorted by relevance
326 /*package*/ static String encodeClassLoaderChain(String cl1, String cl2) { in encodeClassLoaderChain() argument327 if (cl1.isEmpty()) return cl2; in encodeClassLoaderChain()328 if (cl2.isEmpty()) return cl1; in encodeClassLoaderChain()329 return cl1 + ";" + cl2; in encodeClassLoaderChain()
406 ConfidenceLevel cl1 = new ConfidenceLevel(1, 90); in testKeyphraseRecognitionEventParcelUnparcel_largeData() local410 new ConfidenceLevel[] {cl1, cl2}); in testKeyphraseRecognitionEventParcelUnparcel_largeData()
82 ClassLoader cl1 = new ClassLoader(this.getClass().getClassLoader()) { }; in testNoOp() local84 Class<ClassWithNative> clazz1 = (Class<ClassWithNative>) cl1.loadClass(NATIVE_CLASS_NAME); in testNoOp()