Searched refs:fields (Results 1 – 19 of 19) sorted by relevance
/build/soong/ui/tracer/ |
D | microfactory.go | 78 fields := strings.SplitN(s.Text(), " ", 3) 79 if len(fields) != 3 { 83 timestamp, err := strconv.ParseUint(fields[0], 10, 64) 88 if fields[1] == "B" { 89 begin[fields[2]] = append(begin[fields[2]], timestamp) 90 } else if beginTimestamps, ok := begin[fields[2]]; ok { 92 Name: fields[2], 96 begin[fields[2]] = beginTimestamps[:len(beginTimestamps)-1]
|
/build/soong/scripts/ |
D | build_broken_logs.go | 267 fields := strings.Split(line, " ") 268 if len(fields) < 5 { 272 if fields[3] == "TARGET_DEVICE" { 273 ret.Device = fields[4] 276 if fields[3] == "DEFAULT_WARNING_BUILD_MODULE_TYPES" { 277 ret.WarningModuleTypes = fields[4:] 279 if fields[3] == "DEFAULT_ERROR_BUILD_MODULE_TYPES" { 280 ret.ErrorModuleTypes = fields[4:] 283 if strings.HasPrefix(fields[3], "BUILD_BROKEN_") { 284 ret.BuildBroken[fields[3]] = ParseBoolPtr(fields[4])
|
/build/soong/cmd/path_interposer/ |
D | main.go | 181 fields := bytes.SplitN(line, []byte(" "), 2) 182 if len(fields) != 2 { 186 pid, err := strconv.Atoi(string(fields[0])) 191 line = bytes.TrimLeft(fields[1], " ") 193 fields = bytes.SplitN(line, []byte(" "), 2) 194 if len(fields) != 2 { 198 ppid, err := strconv.Atoi(string(fields[0])) 206 Command: string(bytes.TrimLeft(fields[1], " ")),
|
/build/soong/android/soongconfig/ |
D | modules.go | 276 var fields []reflect.StructField 285 fields = append(fields, reflect.StructField{ 293 Type: reflect.StructOf(fields), 314 var fields []reflect.StructField 333 fields = append(fields, reflect.StructField{ 341 fields = append(fields, reflect.StructField{ 350 if len(fields) > 0 { 351 typ = reflect.StructOf(fields) 476 var fields []reflect.StructField 479 fields = append(fields, reflect.StructField{ [all …]
|
/build/blueprint/proptools/ |
D | filter.go | 39 func filterPropertyStructFields(fields []reflect.StructField, prefix string, maxTypeNameSize int, 71 for _, field := range fields { 159 var fields []reflect.StructField 167 fields = append(fields, prop.Field(i)) 170 …filteredFieldsShards, filtered := filterPropertyStructFields(fields, prefix, maxNameSize, predicat…
|
/build/blueprint/bootstrap/ |
D | cleanup.go | 110 fields := strings.Split(line, fieldSeperator) 115 if len(fields) < precedingFields+followingFields+1 { 120 end := len(fields) - followingFields 121 filePath := strings.Join(fields[start:end], fieldSeperator)
|
/build/make/core/ |
D | proguard.flags | 34 @android.support.annotation.Keep <fields>; 38 @androidx.annotation.Keep <fields>;
|
D | proguard_basic_keeps.flags | 29 !static !transient <fields>; 76 # The lite proto runtime uses reflection to access fields based on the names in 77 # the schema, keep all the fields. 78 -keepclassmembers class * extends com.google.protobuf.MessageLite { <fields>; }
|
/build/soong/android/ |
D | neverallow.go | 348 fields []string // e.x.: Vndk.Enabled member 438 fields: fieldNamesForProperties(properties), 450 fields: fieldNamesForProperties(properties), 483 s += " " + strings.Join(v.fields, ".") + v.matcher.String() 486 s += " -" + strings.Join(v.fields, ".") + v.matcher.String() 597 for _, v := range prop.fields {
|
D | arch.go | 1003 fields := variantFields(variants) 1005 fields = append([]reflect.StructField{{ 1009 }}, fields...) 1013 Type: reflect.StructOf(fields),
|
/build/make/tools/droiddoc/templates-ndk/ |
D | class.cs | 29 <?cs if:subcount(cl.fields) ?> 65 <?cs if:subcount(class.fields) ?> 210 <?cs def:write_field_summary(fields, included) ?> 212 <?cs each:field=fields ?> 229 <?cs def:write_constant_summary(fields, included) ?> 231 <?cs each:field=fields ?>
|
/build/soong/sdk/ |
D | sdk.go | 145 var fields []reflect.StructField 152 fields = append(fields, reflect.StructField{ 185 propertiesStructType := reflect.StructOf(fields)
|
/build/make/tools/ziptime/ |
D | README.txt | 9 (Jan 1 2008). The extra fields are not changed, so you'll need to use the
|
/build/soong/androidmk/androidmk/ |
D | values.go | 128 fields := ms.Split(" \t") 134 for _, f := range fields {
|
/build/make/tools/releasetools/ |
D | build_image.py | 107 fields = line.split(":") 108 if len(fields) == 2: 109 fs_dict[fields[0].strip()] = fields[1].strip()
|
/build/make/tools/zipalign/ |
D | README.txt | 23 in the "extra" fields may be altered by this process.
|
/build/soong/java/ |
D | sdk_library.go | 1739 var fields []reflect.StructField 1745 fields = append(fields, field) 1748 return reflect.StructOf(fields)
|
/build/make/tools/fs_config/ |
D | README | 31 the sections and fields as defined below. There are two types of sections, both sections require all
|
/build/blueprint/ |
D | LICENSE | 182 boilerplate notice, with the fields enclosed by brackets "[]"
|