/build/soong/androidmk/parser/ |
D | make_strings.go | 207 index := strings.IndexAny(s, sep) 208 if index >= 0 { 209 ret = append(ret, s[0:index]) 210 s = s[index+1:] 226 index := strings.IndexAny(s, " \t") 227 if index == 0 && len(preserve) == 0 { 229 } else if index >= 0 { 231 for i := index - 1; i >= 0; i-- { 239 preserve += s[0 : index+1] 240 s = s[index+1:] [all …]
|
/build/kati/ |
D | rule_parser.go | 187 index := findLiteralChar(line, ':', 0, noSkipVar) 188 if index < 0 { 192 first := line[:index] 212 index++ 213 if index < len(line) && line[index] == ':' { 215 index++ 218 rest := line[index:] 232 index = bytes.IndexByte(rest, ';') 233 if index >= 0 { 234 r.cmds = append(r.cmds, string(rest[index+1:])) [all …]
|
D | ninja.cc | 58 size_t index = FindCommandLineFlag(cmd, name); in FindCommandLineFlagWithArg() local 59 if (index == string::npos) in FindCommandLineFlagWithArg() 62 StringPiece val = TrimLeftSpace(cmd.substr(index + name.size())); in FindCommandLineFlagWithArg() 63 index = val.find(name); in FindCommandLineFlagWithArg() 64 while (index != string::npos) { in FindCommandLineFlagWithArg() 65 val = TrimLeftSpace(val.substr(index + name.size())); in FindCommandLineFlagWithArg() 66 index = val.find(name); in FindCommandLineFlagWithArg() 69 index = val.find_first_of(" \t"); in FindCommandLineFlagWithArg() 70 return val.substr(0, index); in FindCommandLineFlagWithArg() 81 size_t index = cmdline.find(' '); in GetGomaccPosForAndroidCompileCommand() local [all …]
|
D | flags.cc | 29 int* index, in ParseCommandLineOptionWithArg() argument 31 const char* arg = argv[*index]; in ParseCommandLineOptionWithArg() 35 ++*index; in ParseCommandLineOptionWithArg() 36 *out_arg = argv[*index]; in ParseCommandLineOptionWithArg()
|
D | command.cc | 200 size_t index = FindEndOfLine(cmds, 0, &lf_cnt); in Eval() local 201 if (index == cmds.size()) in Eval() 202 index = string::npos; in Eval() 203 StringPiece cmd = TrimLeftSpace(cmds.substr(0, index)); in Eval() 204 cmds = cmds.substr(index + 1); in Eval() 217 if (index == string::npos) in Eval()
|
D | strutil.cc | 251 size_t index = s.find('\n'); in NoLineBreak() local 252 if (index == string::npos) in NoLineBreak() 255 while (index != string::npos) { in NoLineBreak() 256 r = r.substr(0, index) + "\\n" + r.substr(index + 1); in NoLineBreak() 257 index = r.find('\n', index + 2); in NoLineBreak()
|
D | func.cc | 131 size_t index = 0; in SubstFunc() local 132 while (index < str.size()) { in SubstFunc() 133 size_t found = str.find(pat, index); in SubstFunc() 136 AppendString(StringPiece(str).substr(index, found - index), s); in SubstFunc() 138 index = found + pat.size(); in SubstFunc() 140 AppendString(StringPiece(str).substr(index), s); in SubstFunc()
|
D | Makefile.ckati | 107 KATI_VERSION_DEPS := $(KATI_GIT_DIR)/HEAD $(KATI_GIT_DIR)/index
|
D | find.cc | 235 size_t index = d.find('/'); in FindDir() local 236 const string& p = d.substr(0, index).as_string(); in FindDir() 238 return FindDir(d.substr(index + 1)); in FindDir() 242 if (index == string::npos) in FindDir() 244 StringPiece nd = d.substr(index + 1); in FindDir()
|
/build/make/tools/ |
D | compare_fileslist.py | 34 index = 0 44 data[fn][index] = sz 45 index = index + 1 49 for i in range(0,index):
|
D | fat16copy.py | 134 def shorten(name, index): argument 141 postfix = "~" + str(index) 200 index = 1 201 shortened = shorten(name, index) 206 index += 1 207 shortened = shorten(name, index)
|
D | java-layers.py | 195 index = text.find("{") 196 if index < 0: 201 text = text[0:index]
|
/build/soong/android/ |
D | path_properties.go | 97 func fieldByIndex(v reflect.Value, index []int) reflect.Value { 98 if len(index) == 1 { 99 return v.Field(index[0]) 101 for _, x := range index {
|
D | namespace.go | 68 func (s *sortedNamespaces) index(namespace *Namespace) int { func 278 id := r.sortedNamespaces.index(namespace)
|
/build/soong/jar/ |
D | jar.go | 40 diff := index(filepathA) - index(filepathB) 63 func index(name string) int { func
|
/build/make/tools/releasetools/ |
D | test_common.py | 1163 remove_all_groups = lines.index("remove_all_groups") 1164 add_group = lines.index("add_group group_foo 4294967296") 1165 add_vendor = lines.index("add vendor group_foo") 1166 add_system = lines.index("add system group_foo") 1167 resize_vendor = lines.index("resize vendor 1073741824") 1168 resize_system = lines.index("resize system 3221225472") 1201 removed = lines.index("remove_group group_bar") 1202 shrunk = lines.index("resize_group group_foo 3221225472") 1203 grown = lines.index("resize_group group_baz 4294967296") 1204 added = lines.index("add_group group_qux 1073741824") [all …]
|
D | ota_package_parser.py | 177 index = line.find("=") 178 metadata_info[line[0 : index].strip()] = line[index + 1:].strip()
|
D | blockimgdiff.py | 921 for index, xf in enumerate(self.transfers): 966 diff_queue.append((index, imgdiff, patch_num)) 976 for index, patch_info, _ in patches: 977 xf = self.transfers[index] 1745 for index, (patch_start, patch_length, split_tgt_ranges, 1751 split_src_name = "{}-{}".format(src_name, index) 1752 split_tgt_name = "{}-{}".format(tgt_name, index)
|
/build/soong/finder/ |
D | finder.go | 495 index := strings.Index(path, "/") 497 if index >= 0 { 498 firstComponent = path[:index] 499 path = path[index+1:] 864 index := 0 874 response = dataBlock{id: index, err: err, data: nil} 878 response = dataBlock{id: index, err: nil, data: data} 881 index++ 883 f.verbosef("Read block %v after %v\n", index, duration) 885 f.verbosef("Read %v blocks in %v\n", index, duration) [all …]
|
/build/make/tools/droiddoc/templates-ndk/assets/js/ |
D | docs.js | 392 $classLinks.each(function(index) { argument 396 $classDescriptions[index] = langDescr; 399 $classDescriptions[index] = $(this).attr("description"); 410 $classLinks.each(function(index) { argument 413 $pSummary = $('<p class="description">' + $classDescriptions[index] + '</p>'); 422 $lessons.each(function(index) { argument 1049 var index = document.cookie.indexOf(myCookie); 1050 if (index != -1) { 1051 var valStart = index + myCookie.length; 1169 $('.section-card-menu').each(function(index, el) { argument [all …]
|
/build/blueprint/parser/ |
D | ast.go | 280 func (x *Map) getPropertyImpl(name string) (Property *Property, found bool, index int) { 291 _, found, index := x.getPropertyImpl(propertyName) 293 x.Properties = append(x.Properties[:index], x.Properties[index+1:]...)
|
/build/soong/ui/build/ |
D | proc_sync_test.go | 84 func testLockCountingTo(index int) (lock *countLock) { 85 return &countLock{nextIndex: 0, successIndex: index}
|
/build/ |
D | envsetup.sh | 495 local index=1 501 echo " $index. $v" 502 index=$(($index+1)) 1485 local index=1 1488 printf "%6s %s\n" "[$index]" $line 1489 index=$(($index + 1))
|
/build/make/ |
D | envsetup.sh | 495 local index=1 501 echo " $index. $v" 502 index=$(($index+1)) 1485 local index=1 1488 printf "%6s %s\n" "[$index]" $line 1489 index=$(($index + 1))
|
/build/make/tools/droiddoc/templates-pdk/assets/ |
D | android-developer-docs.js | 106 var index = document.cookie.indexOf(myCookie); 107 if (index != -1) { 108 var valStart = index + myCookie.length;
|