Home
last modified time | relevance | path

Searched refs:field (Results 1 – 13 of 13) sorted by relevance

/build/blueprint/proptools/
Dclone.go37 for i, field := range typeFields(typ) {
38 if field.PkgPath != "" {
55 if field.Type.Elem().Kind() != reflect.String {
56 panic(fmt.Errorf("can't copy field %q: slice elements are not strings", field.Name))
59 newSlice := reflect.MakeSlice(field.Type, srcFieldValue.Len(),
77 field.Name))
81 field.Name))
123 field.Name, srcFieldValue.Kind()))
127 field.Name, srcFieldValue.Kind()))
135 for i, field := range typeFields(typ) {
[all …]
Dproptools.go42 func HasTag(field reflect.StructField, name, value string) bool {
43 tag := field.Tag.Get(name)
Dextend.go289 for _, field := range dstFields {
290 if field.Name == srcField.Name {
291 dstField = field
/build/soong/android/
Darch.go349 field := prop.Field(i)
350 if !proptools.HasTag(field, "android", "arch_variant") {
361 if field.Tag == `android:"arch_variant"` {
362 field.Tag = ""
366 switch field.Type.Kind() {
369 field.Type, ok = filterArchStruct(field.Type)
374 if field.Type.Elem().Kind() == reflect.Struct {
375 nestedType, ok := filterArchStruct(field.Type.Elem())
379 field.Type = reflect.PtrTo(nestedType)
385 fields = append(fields, field)
[all …]
Dvariable.go252 field := productVariablePropertyValue.Type().Field(i).Name
253 property := prefix + "." + proptools.PropertyNameForField(field)
/build/blueprint/
Dunpack.go129 field := structType.Field(i)
135 if field.Name == "BlueprintEmbed" {
136 field.Name = ""
137 field.Anonymous = true
140 if field.PkgPath != "" {
145 propertyName := namePrefix + proptools.PropertyNameForField(field.Name)
164 elemType := field.Type.Elem()
181 if fieldValue.IsNil() && (propertyIsSet || field.Anonymous) {
196 if !proptools.HasTag(field, "blueprint", "mutated") {
197 panic(fmt.Errorf(`int field %s must be tagged blueprint:"mutated"`, propertyName))
[all …]
/build/make/tools/droiddoc/templates-ndk/
Dclass.cs212 <?cs each:field=fields ?>
215 <?cs var:field.scope ?>
216 <?cs var:field.static ?>
217 <?cs var:field.final ?>
218 <?cs call:type_link(field.type) ?></nobr></td>
219 … <td class="jd-linkcol"><?cs call:cond_link(field.name, toroot, field.href, included) ?></td>
221 <?cs call:short_descr(field) ?>
222 <?cs call:show_annotations_list(field) ?>
231 <?cs each:field=fields ?>
233 <td class="jd-typecol"><?cs call:type_link(field.type) ?></td>
[all …]
/build/make/tools/droiddoc/templates-sac/
Dclass.cs206 <?cs each:field=fields ?>
209 <?cs var:field.scope ?>
210 <?cs var:field.static ?>
211 <?cs var:field.final ?>
212 <?cs call:type_link(field.type) ?></nobr></td>
213 … <td class="jd-linkcol"><?cs call:cond_link(field.name, toroot, field.href, included) ?></td>
214 <td class="jd-descrcol" width="100%"><?cs call:short_descr(field) ?>
215 <?cs each:anno = field.showAnnotations ?>
216 …<?cs call:show_annotations_list(field, "<span class='annotation-message'>", "</span><span class='a…
225 <?cs each:field=fields ?>
[all …]
/build/make/tools/droiddoc/test/stubs/src/com/android/stubs/a/
DA.java38 int field; field in A.Inner
/build/blueprint/bootstrap/bpdoc/
Dbpdoc.go487 field := typ.Field(i)
488 if field.PkgPath != "" {
499 walk(fieldValue, prefix+proptools.PropertyNameForField(field.Name)+".")
508 "refers to a non-pointer", field.Name))
513 nestPoint := prefix + proptools.PropertyNameForField(field.Name)
520 field.Name, fieldValue.Kind()))
/build/make/tools/zipalign/
DREADME.txt22 the "extra" field in the zip Local File Header sections. Existing data
/build/make/tools/ijar/
DREADME.txt67 - in the .zip file format, for each file, the size field precedes
Dclassfile.cc1560 Member *field = Member::Read(p); in ReadClass() local
1562 if (!(field->access_flags & ACC_PRIVATE)) { // drop private fields in ReadClass()
1563 clazz->fields.push_back(field); in ReadClass()