Searched refs:needle (Results 1 – 4 of 4) sorted by relevance
/build/soong/bazel/ |
D | properties_test.go | 52 needle []string 61 needle: []string{ 70 actualResult := SubtractStrings(tc.haystack, tc.needle) 80 needle LabelList 96 needle: LabelList{ 119 actualResult := SubtractBazelLabelList(tc.haystack, tc.needle)
|
D | properties.go | 116 func SubtractStrings(haystack []string, needle []string) []string { 123 for _, s := range needle { 140 func SubtractBazelLabels(haystack []Label, needle []Label) []Label { 147 for _, label := range needle { 164 func SubtractBazelLabelList(haystack LabelList, needle LabelList) LabelList { 166 result.Includes = SubtractBazelLabels(haystack.Includes, needle.Includes)
|
/build/make/tools/product_config/src/com/android/build/config/ |
D | ConvertMakeToGenericConfig.java | 220 private static ArrayList<String> split(String haystack, String needle) { in split() argument 222 final int needleLen = needle.length(); in split() 228 while ((end = haystack.indexOf(needle, start)) >= 0) { in split()
|
/build/make/tools/ |
D | compare_builds.py | 633 for needle in needles: 635 haystack.remove(needle)
|