Lines Matching refs:Property
41 property *parser.Property
69 func UnpackProperties(properties []*parser.Property, objects ...interface{}) (map[string]*parser.Pr… argument
90 result := make(map[string]*parser.Property)
124 func (ctx *unpackContext) buildPropertyMap(prefix string, properties []*parser.Property) bool {
153 itemProperties := make([]*parser.Property, len(propValue.Values), len(propValue.Values))
155 itemProperties[i] = &parser.Property{
307 sliceName string, property *parser.Property, sliceType reflect.Type) (reflect.Value, bool) {
321 var getItemFunc func(*parser.Property, reflect.Type) (reflect.Value, bool)
324 getItemFunc = func(property *parser.Property, t reflect.Type) (reflect.Value, bool) {
333 getItemFunc = func(property *parser.Property, t reflect.Type) (reflect.Value, bool) {
337 getItemFunc = func(property *parser.Property, t reflect.Type) (reflect.Value, bool) {
343 getItemFunc = func(property *parser.Property, t reflect.Type) (reflect.Value, bool) {
350 itemProperty := &parser.Property{NamePos: property.NamePos, ColonPos: property.ColonPos}
376 func propertyToValue(typ reflect.Type, property *parser.Property) (reflect.Value, error) { argument