Home
last modified time | relevance | path

Searched defs:Scope (Results 1 – 11 of 11) sorted by relevance

/build/blueprint/parser/
Dparser.go74 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 …]
Dast.go154 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/
Dscope.go19 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/
Dnative_code_coverage.md3 ## Scope section
/build/soong/mk2rbc/
Dsoong_variables.go37 func FindSoongVariables(mkFile string, includeFileScope mkparser.Scope, registrar variableRegistrar…
/build/blueprint/proptools/
Dconfigurable.go858 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/
Dpom2mk.go128 Scope string `xml:"scope"` member
/build/soong/ui/tracer/
Dtracer.go75 Scope string `json:"s,omitempty"` member
/build/soong/sysprop/
Dsysprop_library.go43 Scope string member
539 Scope string member
/build/soong/cmd/pom2bp/
Dpom2bp.go176 Scope string `xml:"scope"` member
/build/blueprint/
Dcontext.go993 Scope *parser.Scope member
1580 func getLocalStringListFromScope(scope *parser.Scope, v string) ([]string, scanner.Position, error)…