Home
last modified time | relevance | path

Searched refs:groups (Results 1 – 12 of 12) sorted by relevance

/tools/loganalysis/tests/src/com/android/loganalysis/util/
DRegexTrieTest.java97 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/
DRegexTrieTest.java97 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/
DSlices.kt76 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/
Dresult_reporter.py215 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/
DStartupSummarizer.kt133 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/
Dutils_test.py329 groups = ["group1", "group2"]
334 groups))
340 groups))
/tools/tradefederation/core/src/com/android/tradefed/command/
DConsole.java921 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/
Db29_lib.py121 version = match.groups()[0]
Dapollo_lib.py1217 if match.groups()[0] == '1': # new crash found
1221 re.DOTALL).groups()
/tools/test/connectivity/acts/tests/google/wifi/rtt/
DREADME.md6 There are 2 groups of tests (in 2 sub-directories):
/tools/test/connectivity/acts/tests/google/wifi/aware/
DREADME.md6 There are 4 groups of tests (in 4 sub-directories):
/tools/repohooks/tools/
Dcpplint.py1476 head, quote, tail = match.groups()