/tools/tradefederation/core/javatests/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/loganalysis/javatests/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/ndkports/buildSrc/src/main/kotlin/com/android/ndkports/ |
D | CMakeCompatibleVersion.kt | 59 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()
|
D | NdkVersion.kt | 39 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/ |
D | ExtensionSdkJarReader.kt | 48 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/ |
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/security/fuzzing/measure_sandbox/ |
D | measure_sandbox.cpp | 30 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/ |
D | result_reporter.py | 392 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/ |
D | EarlyOptions.kt | 23 import com.github.ajalt.clikt.parameters.groups.OptionGroup 24 import com.github.ajalt.clikt.parameters.groups.provideDelegate
|
D | CommonBaselineOptions.kt | 20 import com.github.ajalt.clikt.parameters.groups.OptionGroup
|
D | SourceOptions.kt | 20 import com.github.ajalt.clikt.parameters.groups.OptionGroup
|
D | BaselineOptionsMixin.kt | 22 import com.github.ajalt.clikt.parameters.groups.OptionGroup
|
/tools/metalava/metalava/src/test/java/com/android/tools/metalava/cli/common/ |
D | BaseOptionGroupTest.kt | 24 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/ |
D | SignatureFileOptions.kt | 21 import com.github.ajalt.clikt.parameters.groups.OptionGroup
|
D | GeneralReportingOptions.kt | 23 import com.github.ajalt.clikt.parameters.groups.OptionGroup
|
D | StubGenerationOptions.kt | 20 import com.github.ajalt.clikt.parameters.groups.OptionGroup
|
D | ApiSelectionOptions.kt | 19 import com.github.ajalt.clikt.parameters.groups.OptionGroup
|
D | AndroidJarsToSignaturesCommand.kt | 30 import com.github.ajalt.clikt.parameters.groups.provideDelegate in <lambda>()
|
/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/tradefederation/core/res/perfetto/ |
D | trace_config.textproto | 86 # 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/ |
D | SignatureFormatOptions.kt | 22 import com.github.ajalt.clikt.parameters.groups.OptionGroup in <lambda>()
|
D | MergeSignaturesCommand.kt | 33 import com.github.ajalt.clikt.parameters.groups.provideDelegate
|
D | UpdateSignatureHeaderCommand.kt | 27 import com.github.ajalt.clikt.parameters.groups.provideDelegate in <lambda>()
|
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/cli/lint/ |
D | ApiLintOptions.kt | 26 import com.github.ajalt.clikt.parameters.groups.OptionGroup
|
/tools/acloud/internal/lib/ |
D | utils_test.py | 333 groups = ["group1", "group2"] 338 groups)) 344 groups))
|