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.java271 CommandLine lArgs = null; in scanFile() local
274 lArgs = new CommandLine(Arrays.asList(args), file, in scanFile()
280 if (isLineMacro(lArgs)) { in scanFile()
282 String name = lArgs.get(1); in scanFile()
283 CommandLine expansion = new CommandLine(lArgs.subList(3, lArgs.size()), in scanFile()
290 } else if (isLineLongMacro(lArgs)) { in scanFile()
292 String name = lArgs.get(2); in scanFile()
325 } else if (isLineIncludeDirective(lArgs)) { in scanFile()
326 File toScan = new File(lArgs.get(1)); in scanFile()
328 CLog.d("Got an include directive for absolute path %s.", lArgs.get(1)); in scanFile()
[all …]