Home
last modified time | relevance | path

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

/build/soong/android/
Dnamespace.go74 type NameResolver struct { struct
75 rootNamespace *Namespace
78 nextNamespaceId int32
81 sortedNamespaces sortedNamespaces
84 namespacesByDir sync.Map // if generics were supported, this would be sync.Map[string]*Namespace
87 namespaceExportFilter func(*Namespace) bool
102 func (r *NameResolver) newNamespace(path string) *Namespace {
110 func (r *NameResolver) addNewNamespaceForModule(module *NamespaceModule, path string) error {
124 func (r *NameResolver) addNamespace(namespace *Namespace) (err error) {
142 func (r *NameResolver) namespaceAt(path string) (namespace *Namespace, found bool) {
[all …]
Dtesting.go55 NameResolver *NameResolver member