Home
last modified time | relevance | path

Searched refs:PropertyStruct (Results 1 – 5 of 5) sorted by relevance

/build/blueprint/bootstrap/bpdoc/
Dreader.go38 ps map[string]*PropertyStruct // Map of module type name to property struct, protected by mutex
45 ps: make(map[string]*PropertyStruct),
86 func (r *Reader) PropertyStruct(pkgPath, name string, defaults reflect.Value) (*PropertyStruct, err… func
140 func (r *Reader) getPropertyStruct(pkgPath, name string) *PropertyStruct {
149 func (r *Reader) putPropertyStruct(pkgPath, name string, ps *PropertyStruct) *PropertyStruct {
Dproperties.go35 func (ps *PropertyStruct) Clone() *PropertyStruct {
63 func (ps *PropertyStruct) SetDefaults(defaults reflect.Value) {
141 func (ps *PropertyStruct) GetByName(name string) *Property {
156 func (p *Property) Nest(nested *PropertyStruct) { argument
160 func newPropertyStruct(t *doc.Type) (*PropertyStruct, error) {
162 ps := PropertyStruct{
240 func (ps *PropertyStruct) ExcludeByTag(key, value string) {
244 func (ps *PropertyStruct) IncludeByTag(key, value string) {
Dproperties_test.go24 ps, err := r.PropertyStruct(pkgPath, "tagTestProps", reflect.ValueOf(tagTestProps{}))
43 ps, err := r.PropertyStruct(pkgPath, "tagTestProps", reflect.ValueOf(tagTestProps{A: "B"}))
Dbpdoc.go43 PropertyStructs []*PropertyStruct
46 type PropertyStruct struct { struct
125 ps, err := r.PropertyStruct(t.PkgPath(), t.Name(), v)
138 nested, err := r.PropertyStruct(nestedType.PkgPath(), nestedType.Name(), nestedValue)
219 var collapsed []*PropertyStruct
Dreader_test.go80 ps, err := r.PropertyStruct(pkgPath, "props", reflect.ValueOf(props{A: "B"}))