HomeSort by relevance Sort by last modified time
    Searched refs:getFlatArgs (Results 1 - 2 of 2) sorted by null

  /tools/tradefederation/core/tests/src/com/android/tradefed/command/
ConsoleTest.java 277 /** Make sure that {@link Console#getFlatArgs} works as expected. */
284 List<String> flat = Console.getFlatArgs(1, cl);
290 /** Make sure that {@link Console#getFlatArgs} throws an exception when argIdx is wrong. */
299 Console.getFlatArgs(0, cl);
306 /** Make sure that {@link Console#getFlatArgs} throws an exception when argIdx is OOB. */
314 Console.getFlatArgs(1 + cl.size(), cl);
  /tools/tradefederation/core/src/com/android/tradefed/command/
Console.java 144 List<String> optionArgs = getFlatArgs(1, args);
364 static List<String> getFlatArgs(int argIdx, CaptureList cl) {
714 List<String> flatArgs = getFlatArgs(startIdx, args);
744 for (String cmdfile : getFlatArgs(2 /* startIdx */, args)) {
    [all...]

Completed in 194 milliseconds