Home
last modified time | relevance | path

Searched defs:Property (Results 1 – 8 of 8) 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.go56 func (p *Property) Equal(other Property) bool {
68 func setDefaults(properties []Property, defaults reflect.Value) {
128 func (p *Property) SameSubProperties(other Property) bool {
151 func nestUnique(src []Property, target []Property) []Property {
169 func getByName(name string, prefix string, props *[]Property) *Property {
319 func filterPropsByTag(props *[]Property, key, value string, exclude bool) {
Dproperties_test.go168 func assertProperties(t *testing.T, expected Property, actual Property) {
180 func actualProperties(t *testing.T, props []Property) []string {
Dbpdoc_test.go158 func findAllProperties(prefix string, properties []Property) ([]propInfo, []error) {
/build/blueprint/proptools/
Dunpack.go73 func UnpackProperties(properties []*parser.Property, objects ...interface{}) (map[string]*parser.Pr…
533 func selectOnNonConfigurablePropertyError(property *parser.Property) error {
633 func propertyToValue(typ reflect.Type, property *parser.Property) (reflect.Value, error) {
Dextend.go189 Property string member
/build/blueprint/parser/
Dast.go114 type Property struct { struct
115 Name string
116 NamePos scanner.Position
117 ColonPos scanner.Position
118 Value Expression
121 func (p *Property) Copy() *Property {
127 func (p *Property) String() string {
131 func (p *Property) Pos() scanner.Position { return p.NamePos }
132 func (p *Property) End() scanner.Position { return p.Value.End() }
134 func (p *Property) MarkReferencedVariables(scope *Scope) {
[all …]
/build/soong/bpfix/bpfix/
Dbpfix.go529 func getStringProperty(prop *parser.Property, fieldName string) string {
1172 func mergeMatchingProperties(properties *[]*parser.Property, buf []byte, patchlist *parser.PatchLis…
1195 func mergeProperties(a, b *parser.Property, buf []byte, patchlist *parser.PatchList) error {
1218 func mergeListProperties(a, b *parser.Property, buf []byte, patchlist *parser.PatchList) error {
1378 func propertyIndex(props []*parser.Property, propertyName string) int {