Lines Matching refs:b
351 func (b *bottomUpMutatorContext) MutatorName() string {
352 return b.bp.MutatorName()
355 func (b *bottomUpMutatorContext) Rename(name string) {
356 b.bp.Rename(name)
357 b.Module().base().commonProperties.DebugName = name
360 func (b *bottomUpMutatorContext) AddDependency(module blueprint.Module, tag blueprint.DependencyTag…
361 b.bp.AddDependency(module, tag, name...)
364 func (b *bottomUpMutatorContext) AddReverseDependency(module blueprint.Module, tag blueprint.Depend…
365 b.bp.AddReverseDependency(module, tag, name)
368 func (b *bottomUpMutatorContext) CreateVariations(variations ...string) []Module {
369 if b.finalPhase {
373 modules := b.bp.CreateVariations(variations...)
379 base.commonProperties.DebugMutators = append(base.commonProperties.DebugMutators, b.MutatorName())
386 func (b *bottomUpMutatorContext) CreateLocalVariations(variations ...string) []Module {
387 if b.finalPhase {
391 modules := b.bp.CreateLocalVariations(variations...)
397 base.commonProperties.DebugMutators = append(base.commonProperties.DebugMutators, b.MutatorName())
404 func (b *bottomUpMutatorContext) SetDependencyVariation(variation string) {
405 b.bp.SetDependencyVariation(variation)
408 func (b *bottomUpMutatorContext) SetDefaultDependencyVariation(variation *string) {
409 b.bp.SetDefaultDependencyVariation(variation)
412 func (b *bottomUpMutatorContext) AddVariationDependencies(variations []blueprint.Variation, tag blu…
415 b.bp.AddVariationDependencies(variations, tag, names...)
418 func (b *bottomUpMutatorContext) AddFarVariationDependencies(variations []blueprint.Variation,
421 b.bp.AddFarVariationDependencies(variations, tag, names...)
424 func (b *bottomUpMutatorContext) AddInterVariantDependency(tag blueprint.DependencyTag, from, to bl…
425 b.bp.AddInterVariantDependency(tag, from, to)
428 func (b *bottomUpMutatorContext) ReplaceDependencies(name string) {
429 b.bp.ReplaceDependencies(name)
432 func (b *bottomUpMutatorContext) ReplaceDependenciesIf(name string, predicate blueprint.ReplaceDepe…
433 b.bp.ReplaceDependenciesIf(name, predicate)
436 func (b *bottomUpMutatorContext) AliasVariation(variationName string) {
437 b.bp.AliasVariation(variationName)