Searched refs:RUN_PATTERN (Results 1 – 2 of 2) sorted by relevance
/tools/tradefederation/core/src/com/android/tradefed/command/ |
D | Console.java | 86 protected static final String RUN_PATTERN = "r(?:un)?"; field in Console 497 commandHelp.put(RUN_PATTERN, String.format( in addDefaultCommands() 508 RUN_PATTERN)); in addDefaultCommands() 713 trie.put(runRunCommand, RUN_PATTERN, "c(?:ommand)?", null); in addDefaultCommands() 714 trie.put(runRunCommand, RUN_PATTERN, null); in addDefaultCommands() 747 trie.put(runAndExitCommand, RUN_PATTERN, "s(?:ingleCommand)?", null); in addDefaultCommands() 748 trie.put(runAndExitCommand, RUN_PATTERN, "commandAndExit", null); in addDefaultCommands() 768 trie.put(runRunCmdfile, RUN_PATTERN, "cmdfile", "(.*)"); in addDefaultCommands() 769 trie.put(runRunCmdfile, RUN_PATTERN, "cmdfile", "(.*)", null); in addDefaultCommands() 778 trie.put(runRunCmdfileAndExit, RUN_PATTERN, "cmdfileAndExit", "(.*)"); in addDefaultCommands() [all …]
|
/tools/tradefederation/core/src/com/android/tradefed/util/ |
D | ConfigCompletor.java | 29 private static final String RUN_PATTERN = "(run +)(.*)?"; field in ConfigCompletor 34 mRunPattern = Pattern.compile(RUN_PATTERN); in ConfigCompletor()
|