Lines Matching defs:baseModuleContext
370 type baseModuleContext struct { struct
371 context *Context
372 config interface{}
373 module *moduleInfo
374 errs []error
375 visitingParent *moduleInfo
376 visitingDep depInfo
377 ninjaFileDeps []string
380 func (d *baseModuleContext) moduleInfo() *moduleInfo {
384 func (d *baseModuleContext) Module() Module {
388 func (d *baseModuleContext) ModuleName() string {
392 func (d *baseModuleContext) ModuleType() string {
396 func (d *baseModuleContext) ContainsProperty(name string) bool {
401 func (d *baseModuleContext) ModuleDir() string {
405 func (d *baseModuleContext) BlueprintsFile() string {
409 func (d *baseModuleContext) Config() interface{} {
413 func (d *baseModuleContext) error(err error) {
419 func (d *baseModuleContext) Errorf(pos scanner.Position,
428 func (d *baseModuleContext) ModuleErrorf(format string,
440 func (d *baseModuleContext) PropertyErrorf(property, format string,
461 func (d *baseModuleContext) Failed() bool {
465 func (d *baseModuleContext) GlobWithDeps(pattern string,
470 func (d *baseModuleContext) Fs() pathtools.FileSystem {
474 func (d *baseModuleContext) Namespace() Namespace {
481 baseModuleContext anonMember
487 func (m *baseModuleContext) OtherModuleName(logicModule Module) string {
492 func (m *baseModuleContext) OtherModuleDir(logicModule Module) string {
497 func (m *baseModuleContext) OtherModuleSubDir(logicModule Module) string {
502 func (m *baseModuleContext) OtherModuleType(logicModule Module) string {
507 func (m *baseModuleContext) OtherModuleErrorf(logicModule Module, format string,
520 func (m *baseModuleContext) OtherModuleDependencyTag(logicModule Module) DependencyTag {
535 func (m *baseModuleContext) OtherModuleExists(name string) bool {
540 … *baseModuleContext) OtherModuleDependencyVariantExists(variations []Variation, name string) bool {
549 …aseModuleContext) OtherModuleFarDependencyVariantExists(variations []Variation, name string) bool {
558 func (m *baseModuleContext) OtherModuleReverseDependencyVariantExists(name string) bool {
567 … (m *baseModuleContext) OtherModuleProvider(logicModule Module, provider ProviderKey) interface{} {
573 func (m *baseModuleContext) OtherModuleHasProvider(logicModule Module, provider ProviderKey) bool {
579 func (m *baseModuleContext) Provider(provider ProviderKey) interface{} {
584 func (m *baseModuleContext) HasProvider(provider ProviderKey) bool {
589 func (m *baseModuleContext) SetProvider(provider ProviderKey, value interface{}) {
593 func (m *baseModuleContext) GetDirectDep(name string) (Module, DependencyTag) {
603 func (m *baseModuleContext) GetDirectDepWithTag(name string, tag DependencyTag) Module {
621 func (m *baseModuleContext) VisitDirectDeps(visit func(Module)) {
640 func (m *baseModuleContext) VisitDirectDepsIf(pred func(Module) bool, visit func(Module)) {
661 func (m *baseModuleContext) VisitDepsDepthFirst(visit func(Module)) {
679 func (m *baseModuleContext) VisitDepsDepthFirstIf(pred func(Module) bool,
701 func (m *baseModuleContext) WalkDeps(visit func(child, parent Module) bool) {
712 func (m *baseModuleContext) PrimaryModule() Module {
716 func (m *baseModuleContext) FinalModule() Module {
720 func (m *baseModuleContext) VisitAllModuleVariants(visit func(Module)) {
724 func (m *baseModuleContext) AddNinjaFileDeps(deps ...string) {
728 func (m *baseModuleContext) ModuleFactories() map[string]ModuleFactory {
787 baseModuleContext anonMember
1315 baseModuleContext anonMember