Searched defs:Scope (Results 1 – 11 of 11) sorted by relevance
| /build/blueprint/parser/ |
| D | parser.go | 74 func ParseAndEval(filename string, r io.Reader, scope *Scope) (file *File, errs []error) { 805 type Scope struct { struct 806 vars map[string]*Assignment 807 preventInheriting map[string]bool 808 parentScope *Scope 811 func NewScope(s *Scope) *Scope { 819 func (s *Scope) HandleAssignment(assignment *Assignment) error { 857 func (s *Scope) Get(name string) *Assignment { 870 func (s *Scope) GetLocal(name string) *Assignment { 882 func (s *Scope) DontInherit(name string) { [all …]
|
| D | ast.go | 154 Eval(scope *Scope) (Expression, error) 163 MarkReferencedVariables(scope *Scope) 284 func evaluateOperator(scope *Scope, operator rune, left, right Expression) (Expression, error) { 336 func addMaps(scope *Scope, map1, map2 []*Property) ([]*Property, error) { 848 Scope *Scope // scope used to evaluate the body of the select later on member
|
| /build/soong/androidmk/parser/ |
| D | scope.go | 19 type Scope interface { interface 60 func NewScope(parent Scope) Scope { 75 func (v Variable) EvalFunction(scope Scope) ([]string, bool) { 97 func (v Variable) Value(scope Scope) string {
|
| /build/soong/docs/ |
| D | native_code_coverage.md | 3 ## Scope section
|
| /build/soong/mk2rbc/ |
| D | soong_variables.go | 37 func FindSoongVariables(mkFile string, includeFileScope mkparser.Scope, registrar variableRegistrar…
|
| /build/blueprint/proptools/ |
| D | configurable.go | 858 func createScopeWithBindings(parent *parser.Scope, patterns []ConfigurablePattern, values []Configu… 948 initialize(scope *parser.Scope, propertyName string, conditions []ConfigurableCondition, cases any) 954 func (c *Configurable[T]) initialize(scope *parser.Scope, propertyName string, conditions []Configu…
|
| /build/soong/cmd/pom2mk/ |
| D | pom2mk.go | 128 Scope string `xml:"scope"` member
|
| /build/soong/ui/tracer/ |
| D | tracer.go | 75 Scope string `json:"s,omitempty"` member
|
| /build/soong/sysprop/ |
| D | sysprop_library.go | 43 Scope string member 539 Scope string member
|
| /build/soong/cmd/pom2bp/ |
| D | pom2bp.go | 176 Scope string `xml:"scope"` member
|
| /build/blueprint/ |
| D | context.go | 993 Scope *parser.Scope member 1580 func getLocalStringListFromScope(scope *parser.Scope, v string) ([]string, scanner.Position, error)…
|