Searched refs:field (Results 1 – 15 of 15) sorted by relevance
36 field := typ.Field(i)37 if field.PkgPath != "" {53 if field.Type.Elem().Kind() != reflect.String {54 panic(fmt.Errorf("can't copy field %q: slice elements are not strings", field.Name))57 newSlice := reflect.MakeSlice(field.Type, srcFieldValue.Len(),75 field.Name))79 field.Name))121 field.Name, srcFieldValue.Kind()))125 field.Name, srcFieldValue.Kind()))134 field := typ.Field(i)[all …]
42 func HasTag(field reflect.StructField, name, value string) bool {43 tag := field.Tag.Get(name)
286 field := proptools.FieldNameForProperty(feature)287 if !archStruct.FieldByName(field).IsValid() {591 dst, src interface{}, field, srcPrefix string) interface{} { argument593 srcField := reflect.ValueOf(src).FieldByName(field)657 field := proptools.FieldNameForProperty(t.Name)659 archStruct := a.appendProperties(ctx, genProps, archProps.Arch, field, prefix)669 field := proptools.FieldNameForProperty(v)671 a.appendProperties(ctx, genProps, archStruct, field, prefix)682 field := proptools.FieldNameForProperty(c)684 a.appendProperties(ctx, genProps, archStruct, field, prefix)[all …]
47 <?cs each:field=fields ?>50 <?cs var:field.scope ?>51 <?cs var:field.static ?>52 <?cs var:field.final ?>53 <?cs call:type_link(field.type) ?></code></td>55 <code><?cs call:cond_link(field.name, toroot, field.href, included) ?></code>56 <p><?cs call:short_descr(field) ?>57 <?cs call:show_annotations_list(field) ?></p>68 <?cs each:field=fields ?>70 <td><code><?cs call:type_link(field.type) ?></code></td>[all …]
130 field := structType.Field(i)132 if field.PkgPath != "" {137 propertyName := namePrefix + proptools.PropertyNameForField(field.Name)149 elemType := field.Type.Elem()177 if !proptools.HasTag(field, "blueprint", "mutated") {178 panic(fmt.Errorf(`int field %s must be tagged blueprint:"mutated"`, propertyName))185 if field.Anonymous && fieldValue.Kind() == reflect.Struct {200 if proptools.HasTag(field, "blueprint", "mutated") {212 if filterKey != "" && !proptools.HasTag(field, filterKey, filterValue) {248 if k, v, err := HasFilter(field.Tag); err != nil {[all …]
211 <?cs each:field=fields ?>214 <?cs var:field.scope ?>215 <?cs var:field.static ?>216 <?cs var:field.final ?>217 <?cs call:type_link(field.type) ?></nobr></td>218 … <td class="jd-linkcol"><?cs call:cond_link(field.name, toroot, field.href, included) ?></td>220 <?cs call:short_descr(field) ?>221 <?cs call:show_annotations_list(field) ?>230 <?cs each:field=fields ?>232 <td class="jd-typecol"><?cs call:type_link(field.type) ?></td>[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 …]
205 <?cs each:field=fields ?>208 <?cs var:field.scope ?>209 <?cs var:field.static ?>210 <?cs var:field.final ?>211 <?cs call:type_link(field.type) ?></nobr></td>212 … <td class="jd-linkcol"><?cs call:cond_link(field.name, toroot, field.href, included) ?></td>213 <td class="jd-descrcol" width="100%"><?cs call:short_descr(field) ?></td>221 <?cs each:field=fields ?>223 <td class="jd-typecol"><?cs call:type_link(field.type) ?></td>224 <td class="jd-linkcol"><?cs call:cond_link(field.name, toroot, field.href, included) ?></td>[all …]
38 int field; field in A.Inner
479 field := typ.Field(i)480 if field.PkgPath != "" {491 walk(fieldValue, prefix+proptools.PropertyNameForField(field.Name)+".")500 "refers to a non-pointer", field.Name))505 nestPoint := prefix + proptools.PropertyNameForField(field.Name)512 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()