Searched defs:Property (Results 1 – 6 of 6) sorted by relevance
| /build/blueprint/bootstrap/bpdoc/ |
| D | bpdoc.go | 53 type Property struct { struct 54 Name string 55 OtherNames []string 56 Type string 57 Tag reflect.StructTag 58 Text template.HTML 59 OtherTexts []template.HTML 60 Properties []Property 61 Default string 240 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/ |
| D | unpack.go | 32 func unpackProperties(propertyDefs []*parser.Property, 81 func buildPropertyMap(namePrefix string, propertyDefs []*parser.Property, 290 func propertyToValue(typ reflect.Type, property *parser.Property) (reflect.Value, error) { 357 property *parser.Property, propertyMap map[string]*packedProperty,
|
| /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/soong/bpfix/bpfix/ |
| D | bpfix.go | 419 func getStringProperty(prop *parser.Property, fieldName string) string { 765 func mergeMatchingProperties(properties *[]*parser.Property, buf []byte, patchlist *parser.PatchLis… 788 func mergeProperties(a, b *parser.Property, buf []byte, patchlist *parser.PatchList) error { 811 func mergeListProperties(a, b *parser.Property, buf []byte, patchlist *parser.PatchList) error { 971 func propertyIndex(props []*parser.Property, propertyName string) int {
|
| /build/blueprint/proptools/ |
| D | extend.go | 177 Property string member
|