Home
last modified time | relevance | path

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

/build/blueprint/parser/
Dparser.go89 func ParseAndEval(filename string, r io.Reader, scope *Scope) (file *File, errs []error) {
97 func Parse(filename string, r io.Reader, scope *Scope) (file *File, errs []error) {
122 func newParser(r io.Reader, scope *Scope) *parser {
915 type Scope struct { struct
916 vars map[string]*Assignment
917 inheritedVars map[string]*Assignment
920 func NewScope(s *Scope) *Scope {
938 func (s *Scope) Add(assignment *Assignment) error {
952 func (s *Scope) Remove(name string) {
957 func (s *Scope) Get(name string) (*Assignment, bool) {
[all …]
/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/soong/cmd/pom2mk/
Dpom2mk.go128 Scope string `xml:"scope"` member
/build/soong/sysprop/
Dsysprop_library.go43 Scope string member
537 Scope string member
/build/soong/ui/tracer/
Dtracer.go75 Scope string `json:"s,omitempty"` member
/build/soong/cmd/pom2bp/
Dpom2bp.go176 Scope string `xml:"scope"` member
/build/blueprint/
Dcontext.go772 Scope *parser.Scope member
1359 func getLocalStringListFromScope(scope *parser.Scope, v string) ([]string, scanner.Position, error)…
1389 func getStringFromScope(scope *parser.Scope, v string) (string, scanner.Position, error) {