Home
last modified time | relevance | path

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

/aosp12/build/blueprint/bootstrap/bpdoc/
H A 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) {
H A 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 { argument
H A 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
H A Dproperties_test.go24 ps, err := r.PropertyStruct(pkgPath, "tagTestProps", reflect.ValueOf(tagTestProps{}))
40 ps, err := r.PropertyStruct(pkgPath, "tagTestProps", reflect.ValueOf(tagTestProps{A: "B"}))
H A Dreader_test.go156 ps, err := r.PropertyStruct(pkgPath, "props", reflect.ValueOf(props{A: "B"}))