Home
last modified time | relevance | path

Searched refs:strings (Results 1 – 25 of 42) sorted by relevance

12

/tools/security/fuzzing/fuzzer_parser/
Dfuzzparser.go69 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/tradefederation/core/src/com/android/tradefed/util/
DRegexTrie.java114 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 …]
DGenericLogcatEventParser.java110 public void processNewLines(String[] strings) { in processNewLines() argument
111 parseEvents(strings); in processNewLines()
/tools/loganalysis/src/com/android/loganalysis/util/
DRegexTrie.java114 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/treble/build/treble_build/report/
Dprojects.go47 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/
Dninja.go55 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/metalava/metalava-model-text/src/test/java/com/android/tools/metalava/model/text/
DTextTypeParserTest.kt37 fun `Test type parameter strings`() { in parseType()
56 fun `Test type parameter strings with annotations`() { in Test type parameter strings with annotations()
77 fun `Test type parameter strings with remainder`() { in Test type parameter strings with remainder()
/tools/netsim/rust/cli/
Dnetsim-cli.md104 … * [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/treble/hacksaw/workspace/
Dworkspace.go306 if !strings.HasPrefix(inPath+"/", bindPath+"/") {
324 if strings.HasPrefix(inPath+"/", dir+"/") {
/tools/dexter/testdata/expected/
Dmedium.stats17 strings : 9961
Dhello.stats17 strings : 63
Dmethod_handles.stats17 strings : 458
Dhello_nodebug.stats17 strings : 47
Dhello.hello_stats17 strings : 47
Dinvoke-polymorphic.stats17 strings : 51
Dexit_hooks.stats17 strings : 58
Dmin.stats17 strings : 5
Dentry_hooks.stats17 strings : 70
Dlarge.am_stats17 strings : 438
Dmi.stats17 strings : 19
Dtry_catch.stats17 strings : 30
Dlarge.stats17 strings : 93603
/tools/treble/hacksaw/mount/
Dsystem.go70 fields := strings.Fields(line)
/tools/treble/build/treble_build/cmd/
Dmain.go48 items := strings.Split(value, ":")
64 return strings.Join(items, " ")
/tools/repohooks/tools/
Dpylintrc59 # be used to obtain the result of joining multiple strings with the addition
60 # operator. Joining a lot of strings can lead to a maximum recursion error in
216 # List of strings which can identify a callback function by name. A callback
217 # name must start or end with one of those strings.

12