Lines Matching defs:Module
88 type Module interface { interface
150 OtherModuleName(m Module) string
151 OtherModuleErrorf(m Module, fmt string, args ...interface{})
152 OtherModuleDependencyTag(m Module) DependencyTag
157 VisitDirectDeps(visit func(Module))
158 VisitDirectDepsIf(pred func(Module) bool, visit func(Module))
159 VisitDepsDepthFirst(visit func(Module))
160 VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module))
161 WalkDeps(visit func(Module, Module) bool)
173 VisitAllModuleVariants(visit func(Module))
513 Module() Module methodSpec
526 OtherModuleName(m Module) string
527 OtherModuleErrorf(m Module, fmt string, args ...interface{})
528 OtherModuleDependencyTag(m Module) DependencyTag
533 VisitDirectDeps(visit func(Module))
534 VisitDirectDepsIf(pred func(Module) bool, visit func(Module))
535 VisitDepsDepthFirst(visit func(Module))
536 VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module))
537 WalkDeps(visit func(Module, Module) bool)
543 AddDependency(module Module, tag DependencyTag, name ...string)
544 AddReverseDependency(module Module, tag DependencyTag, name string)
550 AddInterVariantDependency(tag DependencyTag, from, to Module)
641 func (mctx *mutatorContext) Module() Module { func