• Home
  • Raw
  • Download

Lines Matching refs:b

582 func (b *bottomUpMutatorContext) MutatorName() string {
583 return b.bp.MutatorName()
586 func (b *bottomUpMutatorContext) Rename(name string) {
587 b.bp.Rename(name)
588 b.Module().base().commonProperties.DebugName = name
591 func (b *bottomUpMutatorContext) AddDependency(module blueprint.Module, tag blueprint.DependencyTag…
592 return b.bp.AddDependency(module, tag, name...)
595 func (b *bottomUpMutatorContext) AddReverseDependency(module blueprint.Module, tag blueprint.Depend…
596 b.bp.AddReverseDependency(module, tag, name)
599 func (b *bottomUpMutatorContext) CreateVariations(variations ...string) []Module {
600 if b.finalPhase {
604 modules := b.bp.CreateVariations(variations...)
610 base.commonProperties.DebugMutators = append(base.commonProperties.DebugMutators, b.MutatorName())
617 func (b *bottomUpMutatorContext) CreateLocalVariations(variations ...string) []Module {
618 if b.finalPhase {
622 modules := b.bp.CreateLocalVariations(variations...)
628 base.commonProperties.DebugMutators = append(base.commonProperties.DebugMutators, b.MutatorName())
635 func (b *bottomUpMutatorContext) SetDependencyVariation(variation string) {
636 b.bp.SetDependencyVariation(variation)
639 func (b *bottomUpMutatorContext) SetDefaultDependencyVariation(variation *string) {
640 b.bp.SetDefaultDependencyVariation(variation)
643 func (b *bottomUpMutatorContext) AddVariationDependencies(variations []blueprint.Variation, tag blu…
645 if b.bazelConversionMode {
646 _, noSelfDeps := RemoveFromList(b.ModuleName(), names)
653 return b.bp.AddFarVariationDependencies(nil, tag, noSelfDeps...)
656 return b.bp.AddVariationDependencies(variations, tag, names...)
659 func (b *bottomUpMutatorContext) AddFarVariationDependencies(variations []blueprint.Variation,
661 if b.bazelConversionMode {
665 return b.bp.AddFarVariationDependencies(nil, tag, names...)
668 return b.bp.AddFarVariationDependencies(variations, tag, names...)
671 func (b *bottomUpMutatorContext) AddInterVariantDependency(tag blueprint.DependencyTag, from, to bl…
672 b.bp.AddInterVariantDependency(tag, from, to)
675 func (b *bottomUpMutatorContext) ReplaceDependencies(name string) {
676 b.bp.ReplaceDependencies(name)
679 func (b *bottomUpMutatorContext) ReplaceDependenciesIf(name string, predicate blueprint.ReplaceDepe…
680 b.bp.ReplaceDependenciesIf(name, predicate)
683 func (b *bottomUpMutatorContext) AliasVariation(variationName string) {
684 b.bp.AliasVariation(variationName)
687 func (b *bottomUpMutatorContext) CreateAliasVariation(fromVariationName, toVariationName string) {
688 b.bp.CreateAliasVariation(fromVariationName, toVariationName)
691 func (b *bottomUpMutatorContext) SetVariationProvider(module blueprint.Module, provider blueprint.P…
692 b.bp.SetVariationProvider(module, provider, value)