Home
last modified time | relevance | path

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

/build/soong/android/
Dnamespace.go78 type NameResolver struct { struct
79 rootNamespace *Namespace
82 nextNamespaceId int32
85 sortedNamespaces sortedNamespaces
88 namespacesByDir sync.Map // if generics were supported, this would be sync.Map[string]*Namespace
91 namespaceExportFilter func(*Namespace) bool
126 func (r *NameResolver) newNamespace(path string) *Namespace {
134 func (r *NameResolver) addNewNamespaceForModule(module *NamespaceModule, path string) error {
148 func (r *NameResolver) addNamespace(namespace *Namespace) (err error) {
166 func (r *NameResolver) namespaceAt(path string) (namespace *Namespace, found bool) {
[all …]
Dtesting.go186 NameResolver *NameResolver member