Lines Matching defs:Module
120 Module() Module methodSpec
122 OtherModuleName(m blueprint.Module) string
123 OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{})
124 OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag
131 VisitDirectDeps(visit func(Module))
132 VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module))
133 VisitDirectDepsIf(pred func(Module) bool, visit func(Module))
134 VisitDepsDepthFirst(visit func(Module))
135 VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module))
136 WalkDeps(visit func(Module, Module) bool)
156 Module() blueprint.Module methodSpec
158 AddDependency(module blueprint.Module, tag blueprint.DependencyTag, name ...string)
159 AddReverseDependency(module blueprint.Module, tag blueprint.DependencyTag, name string)
165 AddInterVariantDependency(tag blueprint.DependencyTag, from, to blueprint.Module)
227 func (a *androidTopDownMutatorContext) Module() Module { func