Home | History | Annotate | Download | only in command

Lines Matching refs:startIdx

649                 int startIdx = 1;
653 startIdx = 2;
656 String[] flatArgs = new String[args.size() - startIdx];
657 for (int i = startIdx; i < args.size(); i++) {
658 flatArgs[i - startIdx] = args.get(i).get(0);
713 int startIdx = 2;
714 List<String> flatArgs = getFlatArgs(startIdx, args);
744 for (String cmdfile : getFlatArgs(2 /* startIdx */, args)) {