Home
last modified time | relevance | path

Searched defs:Property (Results 1 – 9 of 9) sorted by relevance

/build/blueprint/bootstrap/bpdoc/
Dbpdoc.go53 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 …]
Dproperties.go55 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) {
Dproperties_test.go54 func actualProperties(t *testing.T, props []Property) []string {
Dbpdoc_test.go154 func findAllProperties(prefix string, properties []Property) ([]propInfo, []error) {
/build/blueprint/proptools/
Dunpack.go69 func UnpackProperties(properties []*parser.Property, objects ...interface{}) (map[string]*parser.Pr…
387 func propertyToValue(typ reflect.Type, property *parser.Property) (reflect.Value, error) {
Dextend.go184 Property string member
/build/blueprint/parser/
Dast.go90 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/
Dbpfix.go474 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/
Dvariable.go462 Property interface{} member