• Home
  • Raw
  • Download

Lines Matching defs:baseModuleContext

381 type baseModuleContext struct {  struct
382 context *Context
383 config interface{}
384 module *moduleInfo
385 errs []error
386 visitingParent *moduleInfo
387 visitingDep depInfo
388 ninjaFileDeps []string
391 func (d *baseModuleContext) moduleInfo() *moduleInfo {
395 func (d *baseModuleContext) Module() Module {
399 func (d *baseModuleContext) ModuleName() string {
403 func (d *baseModuleContext) ModuleType() string {
407 func (d *baseModuleContext) ContainsProperty(name string) bool {
412 func (d *baseModuleContext) ModuleDir() string {
416 func (d *baseModuleContext) BlueprintsFile() string {
420 func (d *baseModuleContext) Config() interface{} {
424 func (d *baseModuleContext) error(err error) {
430 func (d *baseModuleContext) Errorf(pos scanner.Position,
439 func (d *baseModuleContext) ModuleErrorf(format string,
451 func (d *baseModuleContext) PropertyErrorf(property, format string,
472 func (d *baseModuleContext) Failed() bool {
476 func (d *baseModuleContext) GlobWithDeps(pattern string,
481 func (d *baseModuleContext) Fs() pathtools.FileSystem {
485 func (d *baseModuleContext) Namespace() Namespace {
492 baseModuleContext anonMember
498 func (m *baseModuleContext) OtherModuleName(logicModule Module) string {
503 func (m *baseModuleContext) OtherModuleDir(logicModule Module) string {
508 func (m *baseModuleContext) OtherModuleSubDir(logicModule Module) string {
513 func (m *baseModuleContext) OtherModuleType(logicModule Module) string {
518 func (m *baseModuleContext) OtherModuleErrorf(logicModule Module, format string,
531 func (m *baseModuleContext) OtherModuleDependencyTag(logicModule Module) DependencyTag {
546 func (m *baseModuleContext) ModuleFromName(name string) (Module, bool) {
563 func (m *baseModuleContext) OtherModuleExists(name string) bool {
568 … *baseModuleContext) OtherModuleDependencyVariantExists(variations []Variation, name string) bool {
577 …aseModuleContext) OtherModuleFarDependencyVariantExists(variations []Variation, name string) bool {
586 func (m *baseModuleContext) OtherModuleReverseDependencyVariantExists(name string) bool {
595 … (m *baseModuleContext) OtherModuleProvider(logicModule Module, provider ProviderKey) interface{} {
601 func (m *baseModuleContext) OtherModuleHasProvider(logicModule Module, provider ProviderKey) bool {
607 func (m *baseModuleContext) Provider(provider ProviderKey) interface{} {
612 func (m *baseModuleContext) HasProvider(provider ProviderKey) bool {
617 func (m *baseModuleContext) SetProvider(provider ProviderKey, value interface{}) {
621 func (m *baseModuleContext) GetDirectDep(name string) (Module, DependencyTag) {
631 func (m *baseModuleContext) GetDirectDepWithTag(name string, tag DependencyTag) Module {
649 func (m *baseModuleContext) VisitDirectDeps(visit func(Module)) {
668 func (m *baseModuleContext) VisitDirectDepsIf(pred func(Module) bool, visit func(Module)) {
689 func (m *baseModuleContext) VisitDepsDepthFirst(visit func(Module)) {
707 func (m *baseModuleContext) VisitDepsDepthFirstIf(pred func(Module) bool,
729 func (m *baseModuleContext) WalkDeps(visit func(child, parent Module) bool) {
740 func (m *baseModuleContext) PrimaryModule() Module {
744 func (m *baseModuleContext) FinalModule() Module {
748 func (m *baseModuleContext) VisitAllModuleVariants(visit func(Module)) {
752 func (m *baseModuleContext) AddNinjaFileDeps(deps ...string) {
756 func (m *baseModuleContext) ModuleFactories() map[string]ModuleFactory {
815 baseModuleContext anonMember
1324 baseModuleContext anonMember