Home
last modified time | relevance | path

Searched refs:StructProperties (Results 1 – 2 of 2) sorted by relevance

/external/golang-protobuf/proto/
Dproperties.go100 type StructProperties struct { struct
122 func (sp *StructProperties) Len() int { return len(sp.order) } argument
123 func (sp *StructProperties) Less(i, j int) bool { argument
126 func (sp *StructProperties) Swap(i, j int) { sp.order[i], sp.order[j] = sp.order[j], sp.order[i] } argument
148 sprop *StructProperties // set for struct types only
320 propertiesMap = make(map[reflect.Type]*StructProperties)
325 func GetProperties(t reflect.Type) *StructProperties {
355 func getPropertiesLocked(t reflect.Type) *StructProperties {
360 prop := new(StructProperties)
Dtext_parser.go385 func structFieldByName(sprops *StructProperties, name string) (int, *Properties, bool) { argument