/tools/security/fuzzing/fuzzer_parser/ |
D | fuzzparser.go | 69 default_name = value[1:strings.Index(value, "@")-1] 72 for strings.Index(value, "\"") > -1 { 73 value = value[strings.Index(value, "\"")+1:] 74 lib_name := value[:strings.Index(value, "\"")] 80 value = value[strings.Index(value, "\"")+1:] 85 for strings.Index(value, "\"") > -1 { 86 value = value[strings.Index(value, "\"")+1:] 87 sub_default_name := value[:strings.Index(value, "\"")] 93 value = value[strings.Index(value, "\"")+1:] 100 for strings.Index(value, "\"") > -1 { [all …]
|
/tools/metalava/metalava/src/test/java/com/android/tools/metalava/apilevels/ |
D | VersionedSignatureApiTest.kt | 53 strings: List<String>, in checkStringsToBraceExpansion() 56 val braceExpansion = VersionedSignatureApi.stringsToBashBraceExpansion(strings) in checkStringsToBraceExpansion() 62 val strings = listOf("single-path") in Single file - toString() constant 63 checkStringsToBraceExpansion(strings, "single-path") in Single file - toString() 68 val strings = listOf("alpha/common", "beta/common") in Common suffix but no common prefix() constant 69 checkStringsToBraceExpansion(strings, "{alph,bet}a/common") in Common suffix but no common prefix() 74 val strings = listOf("common/alpha", "common/epsilon") in Common prefix but no common suffix() constant 75 checkStringsToBraceExpansion(strings, "common/{alpha,epsilon}") in Common prefix but no common suffix() 80 val strings = listOf("alpha/beta", "gamma/epsilon") in No common prefix or suffix() constant 81 checkStringsToBraceExpansion(strings, "{alpha/beta,gamma/epsilon}") in No common prefix or suffix() [all …]
|
/tools/loganalysis/src/com/android/loganalysis/util/ |
D | RegexTrie.java | 114 boolean containsKey(String... strings) { in containsKey() argument 115 return retrieve(strings) != null; in containsKey() 195 V recursiveRetrieve(List<List<String>> captures, List<String> strings) { in recursiveRetrieve() argument 199 if (strings.isEmpty()) { in recursiveRetrieve() 204 String curKey = strings.get(0); in recursiveRetrieve() 205 List<String> nextKeys = strings.subList(1, strings.size()); in recursiveRetrieve() 233 for (String str : strings) { in recursiveRetrieve() 252 public V retrieve(String... strings) { in retrieve() argument 253 return retrieve(null, strings); in retrieve() 273 public V retrieve(List<List<String>> captures, String... strings) { in retrieve() argument [all …]
|
/tools/tradefederation/core/src/com/android/tradefed/util/ |
D | RegexTrie.java | 114 boolean containsKey(String... strings) { in containsKey() argument 115 return retrieve(strings) != null; in containsKey() 195 V recursiveRetrieve(List<List<String>> captures, List<String> strings) { in recursiveRetrieve() argument 199 if (strings.isEmpty()) { in recursiveRetrieve() 204 String curKey = strings.get(0); in recursiveRetrieve() 205 List<String> nextKeys = strings.subList(1, strings.size()); in recursiveRetrieve() 233 for (String str : strings) { in recursiveRetrieve() 252 public V retrieve(String... strings) { in retrieve() argument 253 return retrieve(null, strings); in retrieve() 273 public V retrieve(List<List<String>> captures, String... strings) { in retrieve() argument [all …]
|
D | GenericLogcatEventParser.java | 110 public void processNewLines(String[] strings) { in processNewLines() argument 111 parseEvents(strings); in processNewLines()
|
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/apilevels/ |
D | VersionedSignatureApi.kt | 58 internal fun stringsToBashBraceExpansion(strings: List<String>) = in <lambda>() 59 if (strings.size == 1) { in <lambda>() 60 strings.first() in <lambda>() 62 val commonPrefix = strings.reduce { p1, p2 -> p1.commonPrefixWith(p2) } in <lambda>() 63 val commonSuffix = strings.reduce { p1, p2 -> p1.commonSuffixWith(p2) } in <lambda>() 67 strings.joinTo(this, ",") { in <lambda>()
|
/tools/treble/build/treble_build/report/ |
D | projects.go | 47 if strings.HasPrefix(path, "overlays/") { 49 path = strings.Join(strings.Split(path, "/")[2:], "/") 55 parts := strings.Split(symlink, "/") 100 if strings.HasPrefix(filename, rtx.RepoBase) {
|
/tools/treble/build/treble_build/local/ |
D | ninja.go | 55 line := strings.TrimSpace(s.Text()) 93 line := strings.TrimSpace(s.Text()) 94 if strings.HasPrefix(line, "input:") { 96 } else if strings.HasPrefix(line, "outputs:") { 123 path := strings.Fields(s.Text()) 145 line := strings.TrimSpace(s.Text()) 147 tokens := strings.Split(line, ":")
|
/tools/dexter/testdata/expected/ |
D | entry_hooks.stats | 17 strings : 70
|
D | large.stats | 17 strings : 93603
|
D | hello.stats | 17 strings : 63
|
D | invoke-polymorphic.stats | 17 strings : 51
|
D | exit_hooks.stats | 17 strings : 58
|
D | large.am_stats | 17 strings : 438
|
D | min.stats | 17 strings : 5
|
D | try_catch.stats | 17 strings : 30
|
D | method_handles.stats | 17 strings : 458
|
D | medium.stats | 17 strings : 9961
|
D | hello.hello_stats | 17 strings : 47
|
D | hello_nodebug.stats | 17 strings : 47
|
D | mi.stats | 17 strings : 19
|
/tools/netsim/rust/cli/ |
D | netsim-cli.md | 104 … * [PATTERNS]...: Optional strings of pattern for captures to list. Possible filter fields 112 … * [PATTERNS]...: Optional strings of pattern for captures to patch. Possible filter fields 117 … * [PATTERNS]...: Optional strings of pattern for captures to get. Possible filter fields
|
/tools/metalava/metalava-model-text/src/test/java/com/android/tools/metalava/model/text/ |
D | TextTypeParserTest.kt | 41 fun `Test type parameter strings`() { in parseType() 60 fun `Test type parameter strings with annotations`() { in Test type parameter strings with annotations() 81 fun `Test type parameter strings with remainder`() { in Test type parameter strings with remainder()
|
/tools/treble/hacksaw/mount/ |
D | system.go | 70 fields := strings.Fields(line)
|
/tools/treble/hacksaw/workspace/ |
D | workspace.go | 306 if !strings.HasPrefix(inPath+"/", bindPath+"/") { 324 if strings.HasPrefix(inPath+"/", dir+"/") {
|