Searched refs:field (Results 1 – 13 of 13) sorted by relevance
37 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 …]
42 func HasTag(field reflect.StructField, name, value string) bool {43 tag := field.Tag.Get(name)
289 for _, field := range dstFields {290 if field.Name == srcField.Name {291 dstField = field
349 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 …]
252 field := productVariablePropertyValue.Type().Field(i).Name253 property := prefix + "." + proptools.PropertyNameForField(field)
129 field := structType.Field(i)135 if field.Name == "BlueprintEmbed" {136 field.Name = ""137 field.Anonymous = true140 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 …]
212 <?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 …]
206 <?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 …]
38 int field; field in A.Inner
487 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()))
22 the "extra" field in the zip Local File Header sections. Existing data
67 - in the .zip file format, for each file, the size field precedes
1560 Member *field = Member::Read(p); in ReadClass() local1562 if (!(field->access_flags & ACC_PRIVATE)) { // drop private fields in ReadClass()1563 clazz->fields.push_back(field); in ReadClass()