Home
last modified time | relevance | path

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

/aosp12/build/blueprint/
H A Dscope.go60 type basicScope struct { struct
61 parent *basicScope
62 variables map[string]Variable
63 pools map[string]Pool
64 rules map[string]Rule
65 imports map[string]*basicScope
68 func newScope(parent *basicScope) *basicScope {
78 func makeRuleScope(parent *basicScope, argNames map[string]bool) *basicScope {
211 func (s *basicScope) AddImport(name string, importedScope *basicScope) error {
255 func newLocalScope(parent *basicScope, namePrefix string) *localScope {