Lines Matching refs:get
28 * CommandParser is responsible for parsing command line arguments. To get
33 * <li> cp.getAction() will get "start"
34 * <li> cp.getValue("-plan") will get "test_plan"
35 * <li> cp.containsKey("-noplan") will get null
129 mAction = arglist.get(currentArgIndex).toLowerCase();
135 originalOption = arglist.get(currentArgIndex).trim();
150 originalOption = arglist.get(currentArgIndex).trim().toLowerCase();
173 String value = arglist.get(++currentArgIndex).trim();
192 String op = sOptionMap.get(option);
216 * Get the arguments size.
225 * Get the action.
234 * Get the option size.
243 * Get command option by hash key from parsed argument list.
250 return mValues.get(key);
267 * Get all of the option keys.
276 * Get action list.