Searched refs:cl (Results 1 – 5 of 5) sorted by relevance
/tools/tradefederation/core/tests/src/com/android/tradefed/command/ |
D | ConsoleTest.java | 280 CaptureList cl = new CaptureList(); in testFlatten() local 281 cl.add(Arrays.asList("run", null)); in testFlatten() 282 cl.add(Arrays.asList("alpha")); in testFlatten() 283 cl.add(Arrays.asList("beta")); in testFlatten() 284 List<String> flat = Console.getFlatArgs(1, cl); in testFlatten() 293 CaptureList cl = new CaptureList(); in testFlatten_wrongArgIdx() local 294 cl.add(Arrays.asList("run", null)); in testFlatten_wrongArgIdx() 295 cl.add(Arrays.asList("alpha")); in testFlatten_wrongArgIdx() 296 cl.add(Arrays.asList("beta")); in testFlatten_wrongArgIdx() 299 Console.getFlatArgs(0, cl); in testFlatten_wrongArgIdx() [all …]
|
/tools/metalava/src/main/java/com/android/tools/metalava/doclava1/ |
D | ApiFile.java | 134 TextClassItem cl; in parseClass() local 220 cl = new TextClassItem(api, tokenizer.pos(), isPublic, isProtected, in parseClass() 224 cl.setContainingPackage(pkg); in parseClass() 225 cl.setTypeInfo(typeInfo); in parseClass() 226 cl.setDeprecated(isDeprecated); in parseClass() 234 api.mapClassToSuper(cl, ext); in parseClass() 243 api.mapClassToInterface(cl, token); in parseClass() 249 cl.setIsEnum(true); in parseClass() 251 api.mapClassToInterface(cl, JAVA_LANG_ANNOTATION); in parseClass() 252 } else if (api.implementsInterface(cl, JAVA_LANG_ANNOTATION)) { in parseClass() [all …]
|
/tools/test/connectivity/acts/tests/google/net/ |
D | IpSecTest.py | 127 cl, auth_algo, al, trunc_bits = random.choice(self.crypt_auth_combos) 128 crypt_key = iutils.make_key(cl) 230 cl, auth_algo, al, trunc_bits = random.choice(self.crypt_auth_combos) 231 crypt_key = iutils.make_key(cl) 324 cl, auth_algo, al, trunc_bits = random.choice(self.crypt_auth_combos) 325 crypt_key = iutils.make_key(cl)
|
/tools/tradefederation/core/src/com/android/tradefed/command/ |
D | Console.java | 364 static List<String> getFlatArgs(int argIdx, CaptureList cl) { in getFlatArgs() argument 365 if (argIdx < 0 || argIdx >= cl.size()) { in getFlatArgs() 367 argIdx, cl.size())); in getFlatArgs() 370 List<String> flat = new ArrayList<String>(cl.size() - argIdx); in getFlatArgs() 371 ListIterator<List<String>> iter = cl.listIterator(argIdx); in getFlatArgs()
|
/tools/tradefederation/core/src/com/android/tradefed/testtype/ |
D | HostTest.java | 738 URLClassLoader cl = URLClassLoader.newInstance(urls); in getClasses() local 749 Class<?> cls = cl.loadClass(className); in getClasses()
|