Lines Matching refs:property
129 type property struct { struct
132 properties []property argument
139 func (p *property) attributeString() string { argument
156 func extractPropertyDescriptionsFromStruct(structType reflect.Type) []property {
157 properties := make([]property, 0)
169 func extractPropertyDescriptions(name string, t reflect.Type) []property {
175 props := make([]property, 0)
185 return []property{}
195 return []property{}
198 prop := property{
204 return []property{prop}
207 func getPropertyDescriptions(props []interface{}) []property {
209 propertiesByName := make(map[string]property)
216 properties := make([]property, 0, len(propertiesByName))