Searched defs:Property (Results 1 – 9 of 9) 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 62 Anonymous bool [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 { 149 func getByName(name string, prefix string, props *[]Property) *Property { 270 func filterPropsByTag(props *[]Property, key, value string, exclude bool) {
|
D | properties_test.go | 54 func actualProperties(t *testing.T, props []Property) []string {
|
D | bpdoc_test.go | 154 func findAllProperties(prefix string, properties []Property) ([]propInfo, []error) {
|
/build/blueprint/proptools/ |
D | unpack.go | 69 func UnpackProperties(properties []*parser.Property, objects ...interface{}) (map[string]*parser.Pr… 387 func propertyToValue(typ reflect.Type, property *parser.Property) (reflect.Value, error) {
|
D | extend.go | 184 Property string member
|
/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 | 474 func getStringProperty(prop *parser.Property, fieldName string) string { 1043 func mergeMatchingProperties(properties *[]*parser.Property, buf []byte, patchlist *parser.PatchLis… 1066 func mergeProperties(a, b *parser.Property, buf []byte, patchlist *parser.PatchList) error { 1089 func mergeListProperties(a, b *parser.Property, buf []byte, patchlist *parser.PatchList) error { 1249 func propertyIndex(props []*parser.Property, propertyName string) int {
|
/build/soong/android/ |
D | variable.go | 462 Property interface{} member
|