Home
last modified time | relevance | path

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

/build/blueprint/bootstrap/bpdoc/
Dproperties.go35 func (ps *PropertyStruct) Clone() *PropertyStruct {
63 func (ps *PropertyStruct) SetDefaults(defaults reflect.Value) {
141 func (ps *PropertyStruct) GetByName(name string) *Property {
145 func (ps *PropertyStruct) Nest(nested *PropertyStruct) { argument
160 func (p *Property) Nest(nested *PropertyStruct) { argument
168 func newPropertyStruct(t *doc.Type) (*PropertyStruct, error) {
170 ps := PropertyStruct{
262 func (ps *PropertyStruct) ExcludeByTag(key, value string) {
266 func (ps *PropertyStruct) IncludeByTag(key, value string) {
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 {
Dbpdoc.go44 PropertyStructs []*PropertyStruct
47 type PropertyStruct struct { struct
128 ps, err := r.PropertyStruct(t.PkgPath(), t.Name(), v)
143 nested, err := r.PropertyStruct(nestedType.PkgPath(), nestedType.Name(), nestedValue)
281 var collapsed []*PropertyStruct
Dreader_test.go156 ps, err := r.PropertyStruct(pkgPath, "props", reflect.ValueOf(props{A: "B"}))