Home
last modified time | relevance | path

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

/build/blueprint/parser/
Dparser.go86 func ParseAndEval(filename string, r io.Reader, scope *Scope) (file *File, errs []error) {
94 func Parse(filename string, r io.Reader, scope *Scope) (file *File, errs []error) {
110 func newParser(r io.Reader, scope *Scope) *parser {
590 type Scope struct { struct
591 vars map[string]*Assignment
592 inheritedVars map[string]*Assignment
595 func NewScope(s *Scope) *Scope {
613 func (s *Scope) Add(assignment *Assignment) error {
627 func (s *Scope) Remove(name string) {
632 func (s *Scope) Get(name string) (*Assignment, bool) {
[all …]
/build/soong/androidmk/parser/
Dscope.go21 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/androidmk/cmd/androidmk/
Dvalues.go55 func makeToStringExpression(ms *mkparser.MakeString, scope mkparser.Scope) (bpparser.Expression, er…
117 func makeToListExpression(ms *mkparser.MakeString, scope mkparser.Scope) (bpparser.Expression, erro…
/build/soong/cmd/pom2bp/
Dpom2bp.go128 Scope string `xml:"scope"` member
/build/soong/cmd/pom2mk/
Dpom2mk.go127 Scope string `xml:"scope"` member
/build/soong/ui/tracer/
Dtracer.go71 Scope string `json:"s,omitempty"` member
/build/blueprint/
Dcontext.go591 Scope *parser.Scope member
1075 func getLocalStringListFromScope(scope *parser.Scope, v string) ([]string, scanner.Position, error)…
1105 func getStringFromScope(scope *parser.Scope, v string) (string, scanner.Position, error) {