Home
last modified time | relevance | path

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

12

/tools/tradefederation/core/javatests/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/loganalysis/javatests/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/ndkports/buildSrc/src/main/kotlin/com/android/ndkports/
DCMakeCompatibleVersion.kt59 match.groups[1]!!.value.toInt(), in toString()
60 match.groups[2]?.value?.toInt(), in toString()
61 match.groups[3]?.value?.toInt(), in toString()
62 match.groups[4]?.value?.toInt() in toString()
DNdkVersion.kt39 qualifier.takeIf { match.groups[4] != null } in fromString()
46 return fromString(it.groups.last()!!.value) in fromSourcePropertiesText()
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/apilevels/
DExtensionSdkJarReader.kt48 REGEX_JAR_PATH.matchEntire(file.path)?.groups?.let { groups -> in <lambda>() method
49 Triple(groups[2]!!.value, groups[1]!!.value.toInt(), file) in <lambda>()
/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/security/fuzzing/measure_sandbox/
Dmeasure_sandbox.cpp30 const gid_t groups[] = {gid, AID_EVERYBODY, AID_MISC}; in set_groups() local
31 const size_t num_groups = sizeof(groups) / sizeof(gid_t); in set_groups()
33 if (setgroups(num_groups, groups) != 0) { in set_groups()
/tools/asuite/atest/
Dresult_reporter.py392 for runner_name, groups in self.runners.items():
393 for group_name, stats in groups.items():
449 for runner_name, groups in self.runners.items():
450 if groups == UNSUPPORTED_FLAG:
456 if groups == FAILURE_FLAG:
461 for group_name, stats in groups.items():
566 for runner_name, groups in self.runners.items():
567 for group_name, _ in groups.items():
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/cli/common/
DEarlyOptions.kt23 import com.github.ajalt.clikt.parameters.groups.OptionGroup
24 import com.github.ajalt.clikt.parameters.groups.provideDelegate
DCommonBaselineOptions.kt20 import com.github.ajalt.clikt.parameters.groups.OptionGroup
DSourceOptions.kt20 import com.github.ajalt.clikt.parameters.groups.OptionGroup
DBaselineOptionsMixin.kt22 import com.github.ajalt.clikt.parameters.groups.OptionGroup
/tools/metalava/metalava/src/test/java/com/android/tools/metalava/cli/common/
DBaseOptionGroupTest.kt24 import com.github.ajalt.clikt.parameters.groups.OptionGroup
25 import com.github.ajalt.clikt.parameters.groups.provideDelegate
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/
DSignatureFileOptions.kt21 import com.github.ajalt.clikt.parameters.groups.OptionGroup
DGeneralReportingOptions.kt23 import com.github.ajalt.clikt.parameters.groups.OptionGroup
DStubGenerationOptions.kt20 import com.github.ajalt.clikt.parameters.groups.OptionGroup
DApiSelectionOptions.kt19 import com.github.ajalt.clikt.parameters.groups.OptionGroup
DAndroidJarsToSignaturesCommand.kt30 import com.github.ajalt.clikt.parameters.groups.provideDelegate in <lambda>()
/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/tradefederation/core/res/perfetto/
Dtrace_config.textproto86 # groups that expand into power events (mix of userspace and ftrace)
96 # Other userspace event groups, see
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/cli/signature/
DSignatureFormatOptions.kt22 import com.github.ajalt.clikt.parameters.groups.OptionGroup in <lambda>()
DMergeSignaturesCommand.kt33 import com.github.ajalt.clikt.parameters.groups.provideDelegate
DUpdateSignatureHeaderCommand.kt27 import com.github.ajalt.clikt.parameters.groups.provideDelegate in <lambda>()
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/cli/lint/
DApiLintOptions.kt26 import com.github.ajalt.clikt.parameters.groups.OptionGroup
/tools/acloud/internal/lib/
Dutils_test.py333 groups = ["group1", "group2"]
338 groups))
344 groups))

12