Lines Matching refs:blueprint
45 Rule blueprint.Rule
46 Deps blueprint.Deps
146 blueprintBaseModuleContext() blueprint.BaseModuleContext
150 OtherModuleName(m blueprint.Module) string
154 OtherModuleDir(m blueprint.Module) string
158 OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{})
163 OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag
174 OtherModuleDependencyVariantExists(variations []blueprint.Variation, name string) bool
181 OtherModuleFarDependencyVariantExists(variations []blueprint.Variation, name string) bool
191 OtherModuleType(m blueprint.Module) string
197 OtherModuleProvider(m blueprint.Module, provider blueprint.ProviderKey) interface{}
200 OtherModuleHasProvider(m blueprint.Module, provider blueprint.ProviderKey) bool
207 Provider(provider blueprint.ProviderKey) interface{}
210 HasProvider(provider blueprint.ProviderKey) bool
216 SetProvider(provider blueprint.ProviderKey, value interface{})
218 GetDirectDepsWithTag(tag blueprint.DependencyTag) []Module
223 GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module
228 GetDirectDep(name string) (blueprint.Module, blueprint.DependencyTag)
230 ModuleFromName(name string) (blueprint.Module, bool)
238 VisitDirectDepsBlueprint(visit func(blueprint.Module))
249 VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module))
283 WalkDepsBlueprint(visit func(blueprint.Module, blueprint.Module) bool)
312 GetTagPath() []blueprint.DependencyTag
353 blueprintModuleContext() blueprint.ModuleContext
447 …Rule(pctx PackageContext, name string, params blueprint.RuleParams, argNames ...string) blueprint.…
466 blueprint.Module
496 ImageVariation() blueprint.Variation
532 RuleParamsForTests() map[blueprint.Rule]blueprint.RuleParams
742 Effective_licenses []string `blueprint:"mutated"`
744 Effective_package_name *string `blueprint:"mutated"`
746 Effective_license_text NamedPaths `blueprint:"mutated"`
748 Effective_license_kinds []string `blueprint:"mutated"`
750 Effective_license_conditions []string `blueprint:"mutated"`
771 UseTargetVariants bool `blueprint:"mutated"`
772 Default_multilib string `blueprint:"mutated"`
840 CompileOS OsType `blueprint:"mutated"`
845 CompileTarget Target `blueprint:"mutated"`
860 CompileMultiTargets []Target `blueprint:"mutated"`
865 CompilePrimary bool `blueprint:"mutated"`
868 HostOrDeviceSupported HostOrDeviceSupported `blueprint:"mutated"`
869 ArchSpecific bool `blueprint:"mutated"`
879 CreateCommonOSVariant bool `blueprint:"mutated"`
885 CommonOSVariant bool `blueprint:"mutated"`
889 HideFromMake bool `blueprint:"mutated"`
894 SkipInstall bool `blueprint:"mutated"`
897 ReplacedByPrebuilt bool `blueprint:"mutated"`
900 ForcedDisabled bool `blueprint:"mutated"`
902 NamespaceExportedToMake bool `blueprint:"mutated"`
904 MissingDeps []string `blueprint:"mutated"`
907 DebugName string `blueprint:"mutated"`
908 DebugMutators []string `blueprint:"mutated"`
909 DebugVariations []string `blueprint:"mutated"`
914 ImageVariation string `blueprint:"mutated"`
919 Bp2buildInfo []bp2buildInfo `blueprint:"mutated"`
923 UnconvertedBp2buildDeps []string `blueprint:"mutated"`
926 MissingBp2buildDeps []string `blueprint:"mutated"`
1379 ruleParams map[blueprint.Rule]blueprint.RuleParams
1611 func (m *ModuleBase) RuleParamsForTests() map[blueprint.Rule]blueprint.RuleParams {
1997 func (m *ModuleBase) ImageVariation() blueprint.Variation {
1998 return blueprint.Variation{
2108 func determineModuleKind(m *ModuleBase, ctx blueprint.EarlyModuleContext) moduleKind {
2167 func (m *ModuleBase) earlyModuleContextFactory(ctx blueprint.EarlyModuleContext) earlyModuleContext…
2175 func (m *ModuleBase) baseModuleContextFactory(ctx blueprint.BaseModuleContext) baseModuleContext {
2186 func (m *ModuleBase) GenerateBuildActions(blueprintCtx blueprint.ModuleContext) {
2215 ctx.ruleParams = make(map[blueprint.Rule]blueprint.RuleParams)
2246 ctx.VisitDirectDepsBlueprint(func(bm blueprint.Module) {
2361 blueprint.EarlyModuleContext
2433 bp blueprint.BaseModuleContext
2442 tagPath []blueprint.DependencyTag
2452 func (b *baseModuleContext) OtherModuleName(m blueprint.Module) string {
2455 func (b *baseModuleContext) OtherModuleDir(m blueprint.Module) string { return b.bp.OtherModuleDir(…
2456 func (b *baseModuleContext) OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{}) {
2459 func (b *baseModuleContext) OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag {
2463 func (b *baseModuleContext) OtherModuleDependencyVariantExists(variations []blueprint.Variation, na…
2466 func (b *baseModuleContext) OtherModuleFarDependencyVariantExists(variations []blueprint.Variation,…
2472 func (b *baseModuleContext) OtherModuleType(m blueprint.Module) string {
2475 func (b *baseModuleContext) OtherModuleProvider(m blueprint.Module, provider blueprint.ProviderKey)…
2478 func (b *baseModuleContext) OtherModuleHasProvider(m blueprint.Module, provider blueprint.ProviderK…
2481 func (b *baseModuleContext) Provider(provider blueprint.ProviderKey) interface{} {
2484 func (b *baseModuleContext) HasProvider(provider blueprint.ProviderKey) bool {
2487 func (b *baseModuleContext) SetProvider(provider blueprint.ProviderKey, value interface{}) {
2491 func (b *baseModuleContext) GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint…
2495 func (b *baseModuleContext) blueprintBaseModuleContext() blueprint.BaseModuleContext {
2500 bp blueprint.ModuleContext
2513 ruleParams map[blueprint.Rule]blueprint.RuleParams
2578 func validateBuildParams(params blueprint.BuildParams) error {
2599 func convertBuildParams(params BuildParams) blueprint.BuildParams {
2600 bparams := blueprint.BuildParams{
2657 func (m *moduleContext) Rule(pctx PackageContext, name string, params blueprint.RuleParams,
2658 argNames ...string) blueprint.Rule {
2728 blueprint.DependencyTag
2732 func (b *baseModuleContext) validateAndroidModule(module blueprint.Module, tag blueprint.Dependency…
2758 mod blueprint.Module
2759 tag blueprint.DependencyTag
2762 func (b *baseModuleContext) getDirectDepsInternal(name string, tag blueprint.DependencyTag) []dep {
2764 b.VisitDirectDepsBlueprint(func(module blueprint.Module) {
2782 …uleContext) getDirectDepInternal(name string, tag blueprint.DependencyTag) (blueprint.Module, blue…
2794 func (b *baseModuleContext) getDirectDepFirstTag(name string) (blueprint.Module, blueprint.Dependen…
2796 deps := map[blueprint.Module]bool{}
2813 func (b *baseModuleContext) GetDirectDepsWithTag(tag blueprint.DependencyTag) []Module {
2815 b.VisitDirectDepsBlueprint(func(module blueprint.Module) {
2825 func (m *moduleContext) GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Mod…
2833 func (b *baseModuleContext) GetDirectDep(name string) (blueprint.Module, blueprint.DependencyTag) {
2837 func (b *baseModuleContext) ModuleFromName(name string) (blueprint.Module, bool) {
2848 func (b *baseModuleContext) VisitDirectDepsBlueprint(visit func(blueprint.Module)) {
2853 b.bp.VisitDirectDeps(func(module blueprint.Module) {
2860 func (b *baseModuleContext) VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module))…
2861 b.bp.VisitDirectDeps(func(module blueprint.Module) {
2873 func(module blueprint.Module) bool {
2881 func(module blueprint.Module) {
2887 b.bp.VisitDepsDepthFirst(func(module blueprint.Module) {
2897 func(module blueprint.Module) bool {
2905 func(module blueprint.Module) {
2910 func (b *baseModuleContext) WalkDepsBlueprint(visit func(blueprint.Module, blueprint.Module) bool) {
2916 b.tagPath = []blueprint.DependencyTag{}
2917 b.bp.WalkDeps(func(child, parent blueprint.Module) bool {
2939 func (b *baseModuleContext) GetTagPath() []blueprint.DependencyTag {
2944 b.bp.VisitAllModuleVariants(func(module blueprint.Module) {
2958 func IsMetaDependencyTag(tag blueprint.DependencyTag) bool {
2973 func PrettyPrintTag(tag blueprint.DependencyTag) string {
3336 func (m *moduleContext) blueprintModuleContext() blueprint.ModuleContext {
3410 blueprint.BaseDependencyTag
3419 func sourceOrOutputDepTag(moduleName, tag string) blueprint.DependencyTag {
3426 func IsSourceDepTag(depTag blueprint.DependencyTag) bool {
3435 func IsSourceDepTagWithOutputTag(depTag blueprint.DependencyTag, outputTag string) bool {
3486 func OutputFilesForModule(ctx PathContext, module blueprint.Module, tag string) Paths {
3497 func OutputFileForModule(ctx PathContext, module blueprint.Module, tag string) Path {
3511 func outputFilesForModule(ctx PathContext, module blueprint.Module, tag string) (Paths, error) {
3744 return blueprint.CheckBlueprintSyntax(bpctx.ModuleFactories(), filename, contents)