Searched defs:Scope (Results 1 – 9 of 9) sorted by relevance
| /build/blueprint/parser/ |
| D | parser.go | 87 func ParseAndEval(filename string, r io.Reader, scope *Scope) (file *File, errs []error) { 95 func Parse(filename string, r io.Reader, scope *Scope) (file *File, errs []error) { 120 func newParser(r io.Reader, scope *Scope) *parser { 599 type Scope struct { struct 600 vars map[string]*Assignment 601 inheritedVars map[string]*Assignment 604 func NewScope(s *Scope) *Scope { 622 func (s *Scope) Add(assignment *Assignment) error { 636 func (s *Scope) Remove(name string) { 641 func (s *Scope) Get(name string) (*Assignment, bool) { [all …]
|
| /build/soong/androidmk/parser/ |
| D | scope.go | 21 type Scope interface { interface 62 func NewScope(parent Scope) Scope { 77 func (v Variable) EvalFunction(scope Scope) ([]string, bool) { 99 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/soong/ui/tracer/ |
| D | tracer.go | 73 Scope string `json:"s,omitempty"` member
|
| /build/soong/cmd/pom2mk/ |
| D | pom2mk.go | 128 Scope string `xml:"scope"` member
|
| /build/soong/cmd/pom2bp/ |
| D | pom2bp.go | 176 Scope string `xml:"scope"` member
|
| /build/soong/sysprop/ |
| D | sysprop_library.go | 42 Scope string member
|
| /build/blueprint/ |
| D | context.go | 982 Scope *parser.Scope member 1598 func getLocalStringListFromScope(scope *parser.Scope, v string) ([]string, scanner.Position, error)… 1628 func getStringFromScope(scope *parser.Scope, v string) (string, scanner.Position, error) {
|