Searched refs:StructProperties (Results 1 – 4 of 4) sorted by relevance
/external/golang-protobuf/proto/ |
D | properties.go | 137 type StructProperties struct { struct 166 func (sp *StructProperties) Len() int { return len(sp.order) } argument 167 func (sp *StructProperties) Less(i, j int) bool { argument 170 func (sp *StructProperties) Swap(i, j int) { sp.order[i], sp.order[j] = sp.order[j], sp.order[i] } argument 198 sprop *StructProperties // set for struct types only 636 propertiesMap = make(map[reflect.Type]*StructProperties) 641 func GetProperties(t reflect.Type) *StructProperties { 665 func getPropertiesLocked(t reflect.Type) *StructProperties { 676 prop := new(StructProperties)
|
D | encode.go | 1227 func (o *Buffer) enc_struct(prop *StructProperties, base structPointer) error { argument 1278 func size_struct(prop *StructProperties, base structPointer) (n int) { argument 1304 func (o *Buffer) enc_len_struct(prop *StructProperties, base structPointer, state *errorState) erro… argument
|
D | decode.go | 462 func (o *Buffer) unmarshalType(st reflect.Type, prop *StructProperties, is_group bool, base structP… argument
|
D | text_parser.go | 399 func structFieldByName(sprops *StructProperties, name string) (int, *Properties, bool) { argument
|