• Home
  • Raw
  • Download

Lines Matching refs:Module

205 	AddDependency(module blueprint.Module, tag blueprint.DependencyTag, name ...string) []Module  argument
213 AddReverseDependency(module blueprint.Module, tag blueprint.DependencyTag, name string) argument
221 …pendencies(variations []blueprint.Variation, tag blueprint.DependencyTag, names ...string) []Module
244 AddFarVariationDependencies([]blueprint.Variation, blueprint.DependencyTag, ...string) []Module
267 CreateModule(ModuleFactory, ...interface{}) Module
286 func bottomUpMutatorContextFactory(ctx blueprint.BottomUpMutatorContext, a Module, argument
302 if a, ok := ctx.Module().(Module); ok {
475 ctx.Module().ComponentDepsMutator(ctx)
479 if m := ctx.Module(); m.Enabled(ctx) {
497 b.Module().base().commonProperties.DebugName = name
500 …rContext) createModule(factory blueprint.ModuleFactory, name string, props ...interface{}) Module {
504 …eInDirectory(factory blueprint.ModuleFactory, name string, _ string, props ...interface{}) Module {
508 func (b *bottomUpMutatorContext) CreateModule(factory ModuleFactory, props ...interface{}) Module {
512 …utatorContext) AddDependency(module blueprint.Module, tag blueprint.DependencyTag, name ...string)…
519 func (b *bottomUpMutatorContext) AddReverseDependency(module blueprint.Module, tag blueprint.Depend…
534 names ...string) []Module {
542 tag blueprint.DependencyTag, names ...string) []Module {
564 func bpModulesToModules(bpModules []blueprint.Module) []Module { argument
565 modules := make([]Module, len(bpModules))
572 func bpModuleToModule(bpModule blueprint.Module) Module { argument
574 return bpModule.(Module)