Lines Matching refs:Module

274 	CreateModule(ModuleFactory, ...interface{}) Module
300 …AddDependency(module blueprint.Module, tag blueprint.DependencyTag, name ...string) []blueprint.Mo…
307 AddReverseDependency(module blueprint.Module, tag blueprint.DependencyTag, name string)
320 CreateVariations(...string) []Module
329 CreateLocalVariations(...string) []Module
348 …VariationDependencies([]blueprint.Variation, blueprint.DependencyTag, ...string) []blueprint.Module
363 …VariationDependencies([]blueprint.Variation, blueprint.DependencyTag, ...string) []blueprint.Module
369 AddInterVariantDependency(tag blueprint.DependencyTag, from, to blueprint.Module)
405 SetVariationProvider(module blueprint.Module, provider blueprint.ProviderKey, value interface{})
418 func bottomUpMutatorContextFactory(ctx blueprint.BottomUpMutatorContext, a Module, argument
433 if a, ok := ctx.Module().(Module); ok {
457 if a, ok := ctx.Module().(Module); ok {
504 if m := ctx.Module(); m.Enabled() {
510 if m := ctx.Module(); m.Enabled() {
550 err := proptools.AppendMatchingProperties(t.Module().base().customizableProperties,
564 err := proptools.PrependMatchingProperties(t.Module().base().customizableProperties,
588 t.Module().base().commonProperties.DebugName = name
591 func (t *topDownMutatorContext) CreateModule(factory ModuleFactory, props ...interface{}) Module {
592 inherited := []interface{}{&t.Module().base().commonProperties}
593 module := t.bp.CreateModule(ModuleFactoryAdaptor(factory), append(inherited, props...)...).(Module)
595 if t.Module().base().variableProperties != nil && module.base().variableProperties != nil {
596 src := t.Module().base().variableProperties
612 …utatorContext) createModuleWithoutInheritance(factory ModuleFactory, props ...interface{}) Module {
613 module := t.bp.CreateModule(ModuleFactoryAdaptor(factory), props...).(Module)
623 b.Module().base().commonProperties.DebugName = name
626 …rContext) AddDependency(module blueprint.Module, tag blueprint.DependencyTag, name ...string) []bl… argument
630 func (b *bottomUpMutatorContext) AddReverseDependency(module blueprint.Module, tag blueprint.Depend… argument
634 func (b *bottomUpMutatorContext) CreateVariations(variations ...string) []Module {
641 aModules := make([]Module, len(modules))
643 aModules[i] = modules[i].(Module)
652 func (b *bottomUpMutatorContext) CreateLocalVariations(variations ...string) []Module {
659 aModules := make([]Module, len(modules))
661 aModules[i] = modules[i].(Module)
679 names ...string) []blueprint.Module {
683 return []blueprint.Module(nil)
695 tag blueprint.DependencyTag, names ...string) []blueprint.Module {
706 …MutatorContext) AddInterVariantDependency(tag blueprint.DependencyTag, from, to blueprint.Module) { argument
726 func (b *bottomUpMutatorContext) SetVariationProvider(module blueprint.Module, provider blueprint.P… argument