Home
last modified time | relevance | path

Searched refs:lArgs (Results 1 – 1 of 1) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/command/
DCommandFileParser.java270 CommandLine lArgs = null; in scanFile() local
273 lArgs = new CommandLine(Arrays.asList(args), file, in scanFile()
279 if (isLineMacro(lArgs)) { in scanFile()
281 String name = lArgs.get(1); in scanFile()
282 CommandLine expansion = new CommandLine(lArgs.subList(3, lArgs.size()), in scanFile()
289 } else if (isLineLongMacro(lArgs)) { in scanFile()
291 String name = lArgs.get(2); in scanFile()
324 } else if (isLineIncludeDirective(lArgs)) { in scanFile()
325 File toScan = new File(lArgs.get(1)); in scanFile()
327 CLog.d("Got an include directive for absolute path %s.", lArgs.get(1)); in scanFile()
[all …]