Home
last modified time | relevance | path

Searched refs:index (Results 1 – 25 of 39) sorted by relevance

12

/build/make/tools/releasetools/
Dota_metadata_pb2.py35 name='UNKNOWN', index=0, number=0,
39 name='AB', index=1, number=1,
43 name='BLOCK', index=2, number=2,
47 name='BRICK', index=3, number=3,
67 …name='partition_name', full_name='build.tools.releasetools.PartitionState.partition_name', index=0,
74 name='device', full_name='build.tools.releasetools.PartitionState.device', index=1,
81 name='build', full_name='build.tools.releasetools.PartitionState.build', index=2,
88 name='version', full_name='build.tools.releasetools.PartitionState.version', index=3,
119 name='device', full_name='build.tools.releasetools.DeviceState.device', index=0,
126 name='build', full_name='build.tools.releasetools.DeviceState.build', index=1,
[all …]
Dtest_common.py1966 remove_all_groups = lines.index("remove_all_groups")
1967 add_group = lines.index("add_group group_foo 4294967296")
1968 add_vendor = lines.index("add vendor group_foo")
1969 add_system = lines.index("add system group_foo")
1970 resize_vendor = lines.index("resize vendor 1073741824")
1971 resize_system = lines.index("resize system 3221225472")
2004 removed = lines.index("remove_group group_bar")
2005 shrunk = lines.index("resize_group group_foo 3221225472")
2006 grown = lines.index("resize_group group_baz 4294967296")
2007 added = lines.index("add_group group_qux 1073741824")
[all …]
Dota_package_parser.py177 index = line.find("=")
178 metadata_info[line[0 : index].strip()] = line[index + 1:].strip()
/build/soong/android/
Dpath_properties.go116 func fieldsByIndex(v reflect.Value, index []int, values *[]reflect.Value) {
118 if len(index) == 1 {
121 *values = append(*values, v.Index(i).Field(index[0]))
131 *values = append(*values, v.Field(index[0]))
146 fieldsByIndex(v.Index(i).Field(index[0]), index[1:], values)
150 fieldsByIndex(v.Field(index[0]), index[1:], values)
Dapex.go524 if index, exists := seen[mergedName]; exists {
526 merged[index].InApexVariants = append(merged[index].InApexVariants, variantName)
527 merged[index].InApexModules = append(merged[index].InApexModules, apexInfo.InApexModules...)
528 merged[index].ApexContents = append(merged[index].ApexContents, apexInfo.ApexContents...)
529 merged[index].Updatable = merged[index].Updatable || apexInfo.Updatable
628 index := sort.SearchStrings(bApexes, aApex)
629 if index < len(bApexes) && bApexes[index] == aApex {
Dvariable.go736 index := strings.IndexByte(prefix, '.')
737 if index == -1 {
740 return prefix[:index], prefix[index+1:]
/build/make/tools/
Dcompare_fileslist.py34 index = 0
44 data[fn][index] = sz
45 index = index + 1
49 for i in range(0,index):
Dpost_process_props.py235 index = next((i for i,p in enumerate(self.props)
237 if index == -1:
241 self.props[index].comments.append(
243 self.props[index].value)
244 self.props[index].value = value
Dfat16copy.py134 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)
Djava-layers.py195 index = text.find("{")
196 if index < 0:
201 text = text[0:index]
/build/soong/androidmk/parser/
Dmake_strings.go284 index := strings.IndexAny(s, sep)
285 if index >= 0 {
286 ret = append(ret, s[0:index])
287 s = s[index+1:]
302 index := strings.IndexByte(s, '\\')
303 if index < 0 {
307 if index+1 == len(s) {
311 switch s[index+1] {
313 ret += s[:index] + s[index+1:index+2]
315 ret += s[:index+2]
[all …]
/build/make/tools/product_config/src/com/android/build/config/
DConvertMakeToGenericConfig.java68 for (int index = 1; index < blocks.size() - 1; index++) { in convert()
69 if (blocks.get(index).getBlockType() != MakeConfig.BlockType.INHERIT) { in convert()
70 throw new RuntimeException("expected INHERIT at block " + index); in convert()
81 for (int index = 1; index < blocks.size(); index++) { in convert()
82 final MakeConfig.Block block = blocks.get(index); in convert()
DDumpConfigParser.java82 int index = 0; in parseImpl() local
91 for (; index < lineCount; index++) { in parseImpl()
92 final CsvParser.Line line = lines.get(index); in parseImpl()
123 for (; index < lineCount; index++) { in parseImpl()
124 final CsvParser.Line line = lines.get(index); in parseImpl()
/build/soong/java/
Dhiddenapi_singleton.go48 index android.OutputPath member
108 index: hiddenapiDir.Join(ctx, "hiddenapi-index.csv"),
154 index := configuredBootJars.IndexOfJar(name)
155 if index == -1 {
168 requiredApex := configuredBootJars.Apex(index)
194 outputPath := hiddenAPISingletonPaths(ctx).index
/build/soong/sdk/
Dbootclasspath_fragment_sdk_test.go140 index: "hiddenapi/index.csv",
167 index: "hiddenapi/index.csv",
191 …rmediates/mybootclasspathfragment/android_common/modular-hiddenapi/index.csv -> hiddenapi/index.csv
338 index: "hiddenapi/index.csv",
422 index: "hiddenapi/index.csv",
500 …rmediates/mybootclasspathfragment/android_common/modular-hiddenapi/index.csv -> hiddenapi/index.csv
532 …meworks/base/boot/platform-bootclasspath/android_common/hiddenapi-monolithic/index-from-classes.csv
533 snapshot/hiddenapi/index.csv
723 index: "hiddenapi/index.csv",
766 …rmediates/mybootclasspathfragment/android_common/modular-hiddenapi/index.csv -> hiddenapi/index.csv
/build/soong/jar/
Djar.go43 diff := index(filepathA) - index(filepathB)
66 func index(name string) int { func
/build/bazel/json_module_graph/
DfilterSubtree.jq3 def isBlueprint($p): .Blueprint | index($p) != null
/build/soong/cc/
Dcflag_artifacts.go95 for index, shard := range moduleShards {
103 if index+1 != len(moduleShards) {
104 filename, filepath = s.incrementFile(ctx, cleanedName, part+index+1)
/build/soong/finder/
Dfinder.go499 index := strings.Index(path, "/")
501 if index >= 0 {
502 firstComponent = path[:index]
503 path = path[index+1:]
868 index := 0
878 response = dataBlock{id: index, err: err, data: nil}
882 response = dataBlock{id: index, err: nil, data: data}
885 index++
887 f.verbosef("Read block %v after %v\n", index, duration)
889 f.verbosef("Read %v blocks in %v\n", index, duration)
[all …]
/build/soong/ui/build/
Dproc_sync_test.go84 func testLockCountingTo(index int) (lock *countLock) {
85 return &countLock{nextIndex: 0, successIndex: index}
/build/soong/scripts/hiddenapi/
Dmerge_csv.py79 keyFieldIndex = fieldnames.index(args.key_field)
/build/blueprint/parser/
Dast.go283 func (x *Map) getPropertyImpl(name string) (Property *Property, found bool, index int) {
294 _, found, index := x.getPropertyImpl(propertyName)
296 x.Properties = append(x.Properties[:index], x.Properties[index+1:]...)
/build/make/
Denvsetup.sh534 local index=1
540 echo " $index. $v"
541 index=$(($index+1))
1419 local index=1
1422 printf "%6s %s\n" "[$index]" $line
1423 index=$(($index + 1))
/build/soong/android/soongconfig/
Dmodules.go396 if index := strings.IndexRune(property, '.'); index >= 0 {
397 prefix := property[:index]
398 property = property[index+1:]
/build/make/core/
Denvsetup.rbc31 min_i = all_versions.index(min_version)
32 max_i = all_versions.index(max_version)
33 def_i = all_versions.index(default_version)

12