Lines Matching refs:Module

118 	Module() Module  methodSpec
120 OtherModuleName(m blueprint.Module) string argument
121 OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{}) argument
122 OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag argument
126 GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module
127 GetDirectDep(name string) (blueprint.Module, blueprint.DependencyTag)
129 VisitDirectDeps(visit func(Module)) argument
130 VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module)) argument
131 VisitDirectDepsIf(pred func(Module) bool, visit func(Module)) argument
132 VisitDepsDepthFirst(visit func(Module)) argument
133 VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module)) argument
134 WalkDeps(visit func(Module, Module) bool) argument
150 Module() blueprint.Module methodSpec
152 AddDependency(module blueprint.Module, tag blueprint.DependencyTag, name ...string) argument
153 AddReverseDependency(module blueprint.Module, tag blueprint.DependencyTag, name string) argument
154 CreateVariations(...string) []blueprint.Module
155 CreateLocalVariations(...string) []blueprint.Module
159 AddInterVariantDependency(tag blueprint.DependencyTag, from, to blueprint.Module) argument
170 if a, ok := ctx.Module().(Module); ok {
185 if a, ok := ctx.Module().(Module); ok {
208 if m, ok := ctx.Module().(Module); ok {
221 func (a *androidTopDownMutatorContext) Module() Module { func
222 module, _ := a.TopDownMutatorContext.Module().(Module)
226 func (a *androidTopDownMutatorContext) VisitDirectDeps(visit func(Module)) {
227 a.TopDownMutatorContext.VisitDirectDeps(func(module blueprint.Module) {
228 if aModule, _ := module.(Module); aModule != nil {
234 …oidTopDownMutatorContext) VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module)) {
235 a.TopDownMutatorContext.VisitDirectDeps(func(module blueprint.Module) {
236 if aModule, _ := module.(Module); aModule != nil {
244 func (a *androidTopDownMutatorContext) VisitDirectDepsIf(pred func(Module) bool, visit func(Module)…
247 func(module blueprint.Module) bool {
248 if aModule, _ := module.(Module); aModule != nil {
255 func(module blueprint.Module) {
256 visit(module.(Module))
260 func (a *androidTopDownMutatorContext) VisitDepsDepthFirst(visit func(Module)) {
261 a.TopDownMutatorContext.VisitDepsDepthFirst(func(module blueprint.Module) {
262 if aModule, _ := module.(Module); aModule != nil {
268 … *androidTopDownMutatorContext) VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module)) {
271 func(module blueprint.Module) bool {
272 if aModule, _ := module.(Module); aModule != nil {
279 func(module blueprint.Module) {
280 visit(module.(Module))
284 func (a *androidTopDownMutatorContext) WalkDeps(visit func(Module, Module) bool) {
285 a.TopDownMutatorContext.WalkDeps(func(child, parent blueprint.Module) bool {
286 childAndroidModule, _ := child.(Module)
287 parentAndroidModule, _ := parent.(Module)
298 err := proptools.AppendMatchingProperties(a.Module().base().customizableProperties,
312 err := proptools.PrependMatchingProperties(a.Module().base().customizableProperties,