Lines Matching defs:Module
89 type Module interface { interface
157 OtherModuleName(m Module) string
158 OtherModuleDir(m Module) string
159 OtherModuleSubDir(m Module) string
160 OtherModuleType(m Module) string
161 OtherModuleErrorf(m Module, fmt string, args ...interface{})
162 OtherModuleDependencyTag(m Module) DependencyTag
167 VisitDirectDeps(visit func(Module))
168 VisitDirectDepsIf(pred func(Module) bool, visit func(Module))
169 VisitDepsDepthFirst(visit func(Module))
170 VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module))
181 VisitAllModuleVariants(visit func(Module))
571 Module() Module methodSpec
584 OtherModuleName(m Module) string
585 OtherModuleDir(m Module) string
586 OtherModuleSubDir(m Module) string
587 OtherModuleType(m Module) string
588 OtherModuleErrorf(m Module, fmt string, args ...interface{})
589 OtherModuleDependencyTag(m Module) DependencyTag
596 VisitDirectDeps(visit func(Module))
597 VisitDirectDepsIf(pred func(Module) bool, visit func(Module))
598 VisitDepsDepthFirst(visit func(Module))
599 VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module))
600 WalkDeps(visit func(Module, Module) bool)
606 AddDependency(module Module, tag DependencyTag, name ...string)
607 AddReverseDependency(module Module, tag DependencyTag, name string)
613 AddInterVariantDependency(tag DependencyTag, from, to Module)
704 func (mctx *mutatorContext) Module() Module { func