Lines Matching refs:Property
37 ret.Properties = append([]Property(nil), ret.Properties...)
45 func (p *Property) Clone() Property {
47 ret.Properties = append([]Property(nil), ret.Properties...)
55 func (p *Property) Equal(other Property) bool { argument
67 func setDefaults(properties []Property, defaults reflect.Value) { argument
127 func (p *Property) SameSubProperties(other Property) bool { argument
141 func (ps *PropertyStruct) GetByName(name string) *Property {
145 func getByName(name string, prefix string, props *[]Property) *Property { argument
156 func (p *Property) Nest(nested *PropertyStruct) {
181 func structProperties(structType *ast.StructType) (props []Property, err error) {
193 var innerProps []Property
227 props = append(props, Property{
248 func filterPropsByTag(props *[]Property, key, value string, exclude bool) { argument