Searched refs:groups (Results 1 – 12 of 12) sorted by relevance
/tools/loganalysis/tests/src/com/android/loganalysis/util/ |
D | RegexTrieTest.java | 97 List<List<String>> groups = new ArrayList<List<String>>(); in testGroups_fullMatch() local 99 retrieved = mTrie.retrieve(groups, "a", "b"); in testGroups_fullMatch() 101 assertEquals(2, groups.size()); in testGroups_fullMatch() 102 assertEquals(NULL_LIST, groups.get(0)); in testGroups_fullMatch() 103 assertEquals(NULL_LIST, groups.get(1)); in testGroups_fullMatch() 105 retrieved = mTrie.retrieve(groups, "a", "beta"); in testGroups_fullMatch() 107 assertEquals(2, groups.size()); in testGroups_fullMatch() 108 assertEquals(NULL_LIST, groups.get(0)); in testGroups_fullMatch() 109 assertEquals(Arrays.asList("beta"), groups.get(1)); in testGroups_fullMatch() 111 retrieved = mTrie.retrieve(groups, "alpha", "b"); in testGroups_fullMatch() [all …]
|
/tools/tradefederation/core/tests/src/com/android/tradefed/util/ |
D | RegexTrieTest.java | 97 List<List<String>> groups = new ArrayList<List<String>>(); in testGroups_fullMatch() local 99 retrieved = mTrie.retrieve(groups, "a", "b"); in testGroups_fullMatch() 101 assertEquals(2, groups.size()); in testGroups_fullMatch() 102 assertEquals(NULL_LIST, groups.get(0)); in testGroups_fullMatch() 103 assertEquals(NULL_LIST, groups.get(1)); in testGroups_fullMatch() 105 retrieved = mTrie.retrieve(groups, "a", "beta"); in testGroups_fullMatch() 107 assertEquals(2, groups.size()); in testGroups_fullMatch() 108 assertEquals(NULL_LIST, groups.get(0)); in testGroups_fullMatch() 109 assertEquals(Arrays.asList("beta"), groups.get(1)); in testGroups_fullMatch() 111 retrieved = mTrie.retrieve(groups, "alpha", "b"); in testGroups_fullMatch() [all …]
|
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/util/ |
D | Slices.kt | 76 val sliceType = matchResult.groups[1]!!.value.trim() in parseSliceName() 79 … if (matchResult.groups.size > 2 && !matchResult.groups[2]!!.value.isEmpty()) { in parseSliceName() 80 matchResult.groups[2]!!.value.trim() in parseSliceName()
|
/tools/tradefederation/core/atest/ |
D | result_reporter.py | 215 for runner_name, groups in self.runners.items(): 216 if groups == UNSUPPORTED_FLAG: 219 if groups == FAILURE_FLAG: 224 for group_name, stats in groups.items():
|
/tools/trebuchet/trebuchet/startup-summarizer/src/ |
D | StartupSummarizer.kt | 133 when (md.groups[3]!!.value) { in parseFileName() 141 when (md.groups[4]!!.value) { in parseFileName() 147 return Triple(md.groups[1]!!.value, compilerFilter, temperature) in parseFileName()
|
/tools/acloud/internal/lib/ |
D | utils_test.py | 329 groups = ["group1", "group2"] 334 groups)) 340 groups))
|
/tools/tradefederation/core/src/com/android/tradefed/command/ |
D | Console.java | 921 void executeCmdRunnable(Runnable command, CaptureList groups) { in executeCmdRunnable() argument 926 ((ArgRunnable<CaptureList>) command).run(groups); in executeCmdRunnable() 979 CaptureList groups = new CaptureList(); in run() local 1026 Runnable command = mCommandTrie.retrieve(groups, tokens); in run() 1028 executeCmdRunnable(command, groups); in run()
|
/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/ |
D | b29_lib.py | 121 version = match.groups()[0]
|
D | apollo_lib.py | 1217 if match.groups()[0] == '1': # new crash found 1221 re.DOTALL).groups()
|
/tools/test/connectivity/acts/tests/google/wifi/rtt/ |
D | README.md | 6 There are 2 groups of tests (in 2 sub-directories):
|
/tools/test/connectivity/acts/tests/google/wifi/aware/ |
D | README.md | 6 There are 4 groups of tests (in 4 sub-directories):
|
/tools/repohooks/tools/ |
D | cpplint.py | 1476 head, quote, tail = match.groups()
|