Searched defs:Property (Results 1 – 6 of 6) sorted by relevance
/build/blueprint/bootstrap/bpdoc/ |
D | bpdoc.go | 52 type Property struct { struct 53 Name string 54 OtherNames []string 55 Type string 56 Tag reflect.StructTag 57 Text template.HTML 58 OtherTexts []template.HTML 59 Properties []Property 60 Default string 234 func CollapseDuplicateProperties(to, from *[]Property) { [all …]
|
D | properties.go | 55 func (p *Property) Equal(other Property) bool { 67 func setDefaults(properties []Property, defaults reflect.Value) { 127 func (p *Property) SameSubProperties(other Property) bool { 145 func getByName(name string, prefix string, props *[]Property) *Property { 248 func filterPropsByTag(props *[]Property, key, value string, exclude bool) {
|
/build/blueprint/parser/ |
D | ast.go | 90 type Property struct { struct 91 Name string 92 NamePos scanner.Position 93 ColonPos scanner.Position 94 Value Expression 97 func (p *Property) Copy() *Property { 103 func (p *Property) String() string { 107 func (p *Property) Pos() scanner.Position { return p.NamePos } 108 func (p *Property) End() scanner.Position { return p.Value.End() }
|
/build/blueprint/proptools/ |
D | unpack.go | 69 func UnpackProperties(properties []*parser.Property, objects ...interface{}) (map[string]*parser.Pr… 376 func propertyToValue(typ reflect.Type, property *parser.Property) (reflect.Value, error) {
|
D | extend.go | 184 Property string member
|
/build/soong/bpfix/bpfix/ |
D | bpfix.go | 470 func getStringProperty(prop *parser.Property, fieldName string) string { 1000 func mergeMatchingProperties(properties *[]*parser.Property, buf []byte, patchlist *parser.PatchLis… 1023 func mergeProperties(a, b *parser.Property, buf []byte, patchlist *parser.PatchList) error { 1046 func mergeListProperties(a, b *parser.Property, buf []byte, patchlist *parser.PatchList) error { 1206 func propertyIndex(props []*parser.Property, propertyName string) int {
|