Home
last modified time | relevance | path

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

/build/blueprint/parser/
Dparser.go70 func ParseAndEval(filename string, r io.Reader, scope *Scope) (file *File, errs []error) {
78 func Parse(filename string, r io.Reader, scope *Scope) (file *File, errs []error) {
94 func newParser(r io.Reader, scope *Scope) *parser {
700 type Scope struct { struct
701 vars map[string]*Assignment
702 inheritedVars map[string]*Assignment
705 func NewScope(s *Scope) *Scope {
723 func (s *Scope) Add(assignment *Assignment) error {
737 func (s *Scope) Remove(name string) {
742 func (s *Scope) Get(name string) (*Assignment, bool) {
[all …]
/build/soong/androidmk/parser/
Dscope.go5 type Scope interface { interface
46 func NewScope(parent Scope) Scope {
61 func (v Variable) EvalFunction(scope Scope) (string, bool) {
83 func (v Variable) Value(scope Scope) string {
/build/soong/androidmk/cmd/androidmk/
Dvalues.go47 func makeToStringExpression(ms *mkparser.MakeString, scope mkparser.Scope) (*bpparser.Value, error)…
102 func makeToListExpression(ms *mkparser.MakeString, scope mkparser.Scope) (*bpparser.Value, error) {
/build/blueprint/
Dcontext.go547 *parser.Scope anonMember
855 func getLocalStringListFromScope(scope *parser.Scope, v string) ([]string, scanner.Position, error)…
884 func getStringFromScope(scope *parser.Scope, v string) (string, scanner.Position, error) {