Home
last modified time | relevance | path

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

/build/soong/androidmk/parser/
Dscope.go21 type Scope interface { interface
31 parent Scope
62 func NewScope(parent Scope) Scope { argument
77 func (v Variable) EvalFunction(scope Scope) (string, bool) { argument
99 func (v Variable) Value(scope Scope) string { argument
Dmake_strings.go89 func (ms *MakeString) Value(scope Scope) string {
/build/blueprint/parser/
Dparser.go86 func ParseAndEval(filename string, r io.Reader, scope *Scope) (file *File, errs []error) { argument
94 func Parse(filename string, r io.Reader, scope *Scope) (file *File, errs []error) { argument
105 scope *Scope
110 func newParser(r io.Reader, scope *Scope) *parser { argument
590 type Scope struct { struct
595 func NewScope(s *Scope) *Scope { argument
596 newScope := &Scope{
613 func (s *Scope) Add(assignment *Assignment) error { argument
627 func (s *Scope) Remove(name string) { argument
632 func (s *Scope) Get(name string) (*Assignment, bool) { argument
[all …]
/build/soong/androidmk/cmd/androidmk/
Dvalues.go55 func makeToStringExpression(ms *mkparser.MakeString, scope mkparser.Scope) (bpparser.Expression, er… argument
117 func makeToListExpression(ms *mkparser.MakeString, scope mkparser.Scope) (bpparser.Expression, erro… argument
Dandroidmk.go47 scope mkparser.Scope
Dandroid.go761 func androidScope() mkparser.Scope {
/build/soong/cmd/pom2bp/
Dpom2bp.go128 Scope string `xml:"scope"` member
185 if d.Type != typeExt || !InList(d.Scope, scopes) {
211 if d.Scope == "" {
213 d.Scope = "compile"
/build/soong/cmd/pom2mk/
Dpom2mk.go127 Scope string `xml:"scope"` member
184 if d.Type != typeExt || !InList(d.Scope, scopes) {
211 if d.Scope == "" {
213 d.Scope = "compile"
/build/blueprint/gotestmain/
Dgotestmain.go52 for _, obj := range f.Scope.Objects {
/build/soong/ui/tracer/
Dtracer.go71 Scope string `json:"s,omitempty"` member
/build/blueprint/
Dcontext.go591 Scope *parser.Scope member
753 file, blueprints, deps, errs := c.openAndParse(blueprint.fileName, blueprint.Scope, rootDir,
794 …foundParseableBlueprint(fileParseContext{descendant, parser.NewScope(blueprint.Scope), &blueprint,…
869 func (c *Context) openAndParse(filename string, scope *parser.Scope, rootDir string,
928 …scope *parser.Scope, parent *fileParseContext) (file *parser.File, subBlueprints []fileParseContex…
1075 func getLocalStringListFromScope(scope *parser.Scope, v string) ([]string, scanner.Position, error)… argument
1105 func getStringFromScope(scope *parser.Scope, v string) (string, scanner.Position, error) { argument