Home | History | Annotate | Download | only in command

Lines Matching refs:mLines

60     private List<CommandLine> mLines = new LinkedList<CommandLine>();
336 mLines.add(lArgs);
359 mLines.clear();
372 * {@code mLines.}
374 * Each bit starts as {@code true}, meaning that each line in mLines may have macro calls to
376 * that the corresponding lines of {@code mLines} have been fully expanded, which allows us
382 Bitmask inputBitmask = new Bitmask(mLines.size(), true);
390 while (inputIdx < mLines.size()) {
394 CLog.d("skipping input line %s", mLines.get(inputIdx));
399 CommandLine line = mLines.get(inputIdx);
418 mLines.remove(inputIdx);
420 mLines.addAll(inputIdx, longMacroExpansion);
428 return mLines;