Lines Matching refs:blueprint
18 "github.com/google/blueprint"
19 "github.com/google/blueprint/proptools"
30 func registerMutatorsToContext(ctx *blueprint.Context, mutators []*mutator) {
32 var handle blueprint.MutatorHandle
44 func registerMutators(ctx *blueprint.Context, preArch, preDeps, postDeps []RegisterMutatorFunc) {
120 OtherModuleName(m blueprint.Module) string
121 OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{})
122 OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag
124 CreateModule(blueprint.ModuleFactory, ...interface{})
126 GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module
127 GetDirectDep(name string) (blueprint.Module, blueprint.DependencyTag)
130 VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module))
138 blueprint.TopDownMutatorContext
150 Module() blueprint.Module
152 AddDependency(module blueprint.Module, tag blueprint.DependencyTag, name ...string)
153 AddReverseDependency(module blueprint.Module, tag blueprint.DependencyTag, name string)
154 CreateVariations(...string) []blueprint.Module
155 CreateLocalVariations(...string) []blueprint.Module
157 AddVariationDependencies([]blueprint.Variation, blueprint.DependencyTag, ...string)
158 AddFarVariationDependencies([]blueprint.Variation, blueprint.DependencyTag, ...string)
159 AddInterVariantDependency(tag blueprint.DependencyTag, from, to blueprint.Module)
164 blueprint.BottomUpMutatorContext
169 f := func(ctx blueprint.BottomUpMutatorContext) {
184 f := func(ctx blueprint.TopDownMutatorContext) {
227 a.TopDownMutatorContext.VisitDirectDeps(func(module blueprint.Module) {
234 func (a *androidTopDownMutatorContext) VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module)) {
235 a.TopDownMutatorContext.VisitDirectDeps(func(module blueprint.Module) {
247 func(module blueprint.Module) bool {
255 func(module blueprint.Module) {
261 a.TopDownMutatorContext.VisitDepsDepthFirst(func(module blueprint.Module) {
271 func(module blueprint.Module) bool {
279 func(module blueprint.Module) {
285 a.TopDownMutatorContext.WalkDeps(func(child, parent blueprint.Module) bool {