Lines Matching defs:Module
95 type Module interface { interface
118 func CreateModuleProxy(module Module) ModuleProxy {
159 Module() Module methodSpec
200 OtherModulePropertyErrorf(logicModule Module, property string, format string, args ...interface{})
254 VisitDirectDeps(visit func(Module))
264 VisitDirectDepsIf(pred func(Module) bool, visit func(Module))
273 VisitDepsDepthFirst(visit func(Module))
283 VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module))
292 WalkDeps(visit func(Module, Module) bool)
312 IsFinalModule(module Module) bool
318 VisitAllModuleVariants(visit func(Module))
328 OtherModuleName(m Module) string
332 OtherModuleDir(m Module) string
336 OtherModuleType(m Module) string
340 OtherModuleErrorf(m Module, fmt string, args ...interface{})
345 OtherModuleDependencyTag(m Module) DependencyTag
348 OtherModuleSubDir(m Module) string
390 OtherModuleProvider(m Module, provider AnyProviderKey) (any, bool)
392 OtherModuleHasProvider(m Module, provider AnyProviderKey) bool
396 OtherModuleIsAutoGenerated(m Module) bool
462 func (d *baseModuleContext) Module() Module { func
561 func EqualModules(m1, m2 Module) bool {
593 func getWrappedModule(module Module) Module {
1067 AddDependency(module Module, tag DependencyTag, name ...string) []Module
1075 AddReverseDependency(module Module, tag DependencyTag, name string)
1177 func (mctx *mutatorContext) Module() Module { func
1484 func AddLoadHook(module Module, hook LoadHook) {
1492 func AddLoadHookWithPriority(module Module, hook LoadHook, priority int) {