Home | History | Annotate | Download | only in android

Lines Matching refs:blueprint

18 	"github.com/google/blueprint"
19 "github.com/google/blueprint/pathtools"
26 ModuleName(module blueprint.Module) string
27 ModuleDir(module blueprint.Module) string
28 ModuleSubDir(module blueprint.Module) string
29 ModuleType(module blueprint.Module) string
30 BlueprintFile(module blueprint.Module) string
32 ModuleErrorf(module blueprint.Module, format string, args ...interface{})
37 Rule(pctx PackageContext, name string, params blueprint.RuleParams, argNames ...string) blueprint.Rule
77 func (s singletonAdaptor) GenerateBuildActions(ctx blueprint.SingletonContext) {
86 blueprint.SingletonContext
97 func (s singletonContextAdaptor) Rule(pctx PackageContext, name string, params blueprint.RuleParams, argNames ...string) blueprint.Rule {
116 // a function that takes an blueprint.Module parameter and only calls the visit function if the
117 // blueprint.Module is an android.Module.
118 func visitAdaptor(visit func(Module)) func(blueprint.Module) {
119 return func(module blueprint.Module) {
127 // into a function that takes an blueprint.Module parameter and only calls the visit function if the
128 // blueprint.Module is an android.Module, otherwise returns false.
129 func predAdaptor(pred func(Module) bool) func(blueprint.Module) bool {
130 return func(module blueprint.Module) bool {