Home
last modified time | relevance | path

Searched refs:base (Results 1 – 25 of 96) sorted by relevance

1234

/build/soong/android/
Dlicense.go65 mergeStringProps(&m.base().commonProperties.Effective_licenses, ctx.ModuleName())
66 …mergePathProps(&m.base().commonProperties.Effective_license_text, PathsForModuleSrc(ctx, m.propert…
69 …mergeStringProps(&m.base().commonProperties.Effective_license_conditions, lk.properties.Conditions…
70 mergeStringProps(&m.base().commonProperties.Effective_license_kinds, ctx.OtherModuleName(module))
80 base := module.base()
81 module.AddProperties(&base.nameProperties, &module.properties)
83 base.generalProperties = module.GetProperties()
84 base.customizableProperties = module.GetProperties()
Dlicenses_test.go517 base := module.base()
518 if base == nil {
521 actualLicenses[m.Name()] = base.commonProperties.Effective_licenses
552 base := module.base()
553 if base == nil {
557 for _, l := range base.commonProperties.Effective_licenses {
575 cbase := cmodule.base()
617 base := module.base()
618 if base == nil {
622 if base.commonProperties.Effective_package_name == nil {
[all …]
Dlicenses.go84 module.base().primaryLicensesProperty = newApplicableLicensesProperty(name, licensesProperty)
185 primaryProperty := m.base().primaryLicensesProperty
212 if m.base().commonProperties.Effective_package_name == nil && l.properties.Package_name != nil {
213 m.base().commonProperties.Effective_package_name = l.properties.Package_name
215 …mergeStringProps(&m.base().commonProperties.Effective_licenses, module.base().commonProperties.Eff…
216 …mergePathProps(&m.base().commonProperties.Effective_license_text, module.base().commonProperties.E…
217 …mergeStringProps(&m.base().commonProperties.Effective_license_kinds, module.base().commonPropertie…
218 …mergeStringProps(&m.base().commonProperties.Effective_license_conditions, module.base().commonProp…
221 primaryProperty := m.base().primaryLicensesProperty
254 primaryProperty := module.base().primaryLicensesProperty
Dlicense_kind.go53 base := module.base()
54 module.AddProperties(&base.nameProperties, &module.properties)
56 base.generalProperties = module.GetProperties()
57 base.customizableProperties = module.GetProperties()
Dhooks.go51 earlyModuleContext: m.(Module).base().earlyModuleContextFactory(ctx),
70 err := proptools.AppendMatchingProperties(l.Module().base().customizableProperties,
84 err := proptools.PrependMatchingProperties(l.Module().base().customizableProperties,
97 inherited := []interface{}{&l.Module().base().commonProperties}
100 if l.Module().base().variableProperties != nil && module.base().variableProperties != nil {
101 src := l.Module().base().variableProperties
103 module.base().variableProperties,
132 h := &m.(Module).base().hooks
Dmutator.go423 baseModuleContext: a.base().baseModuleContextFactory(ctx),
460 baseModuleContext: a.base().baseModuleContextFactory(ctx),
550 err := proptools.AppendMatchingProperties(t.Module().base().customizableProperties,
564 err := proptools.PrependMatchingProperties(t.Module().base().customizableProperties,
588 t.Module().base().commonProperties.DebugName = name
592 inherited := []interface{}{&t.Module().base().commonProperties}
595 if t.Module().base().variableProperties != nil && module.base().variableProperties != nil {
596 src := t.Module().base().variableProperties
598 module.base().variableProperties,
623 b.Module().base().commonProperties.DebugName = name
[all …]
Dapex.go338 base := m.apexModuleBase()
339 base.canHaveApexVariants = true
341 m.AddProperties(&base.ApexProperties)
546 base := module.apexModuleBase()
549 if len(base.apexInfos) == 0 {
555 base.checkApexAvailableProperty(mctx)
559 …if !mctx.Module().(ApexModule).UniqueApexVariations() && !base.ApexProperties.UniqueApexVariations…
560 apexInfos, aliases = mergeApexVariations(mctx, base.apexInfos)
562 apexInfos = base.apexInfos
567 base.apexInfos = nil
[all …]
Darch.go424 m := module.base()
494 base := module.base()
497 if !base.ArchSpecific() {
506 if base.supportsTarget(t) {
515 base.Disable()
525 createCommonOSVariant := base.commonProperties.CreateCommonOSVariant
541 m.base().commonProperties.CompileOS = moduleOSList[i]
542 m.base().setOSProperties(mctx)
550 commonOSVariant.base().commonProperties.CommonOSVariant = true
634 base := module.base()
[all …]
Ddefaults.go92 if module.(Module).base().module == nil {
95 module.setProperties(module.(Module).GetProperties(), module.(Module).base().variableProperties)
99 module.base().customizableProperties = module.GetProperties()
190 base := module.base()
192 module.AddProperties(&base.nameProperties, defaultsVisibility)
210 base.module = module
Dmodule.go450 base() *ModuleBase methodSpec
1006 m.base().module = m
1013 base := m.base()
1016 &base.nameProperties,
1017 &base.commonProperties,
1018 &base.distProperties)
1022 base.generalProperties = m.GetProperties()
1023 base.customizableProperties = m.GetProperties()
1027 setPrimaryVisibilityProperty(m, "visibility", &base.commonProperties.Visibility)
1031 setPrimaryLicensesProperty(m, "licenses", &base.commonProperties.Licenses)
[all …]
Dvisibility.go315 primaryProperty := m.base().primaryVisibilityProperty
599 module.base().visibilityPropertyInfo = nil
609 base := module.base()
611 base.visibilityPropertyInfo = append(base.visibilityPropertyInfo, property)
619 module.base().primaryVisibilityProperty = addVisibilityProperty(module, name, stringsProperty)
Doverride_module.go239 base := String(module.getOverrideModuleProperties().Base)
240 if !ctx.OtherModuleExists(base) {
241 ctx.PropertyErrorf("base", "%q is not a valid module name", base)
263 ctx.VisitDirectDepsWithTag(overrideBaseDepTag, func(base Module) {
264 if o, ok := base.(OverridableModule); ok {
Dvariable.go473 moduleBase := module.base()
518 a := module.base()
668 base := m.base()
671 if base.variableProperties == nil {
672 base.variableProperties = defaultProductVariables
675 base.variableProperties = createVariableProperties(m.GetProperties(), base.variableProperties)
676 if base.variableProperties != nil {
677 m.AddProperties(base.variableProperties)
/build/soong/python/
Dandroidmk.go48 func (p *binaryDecorator) AndroidMk(base *Module, entries *android.AndroidMkEntries) {
55 base.subAndroidMk(entries, p.pythonInstaller)
58 func (p *testDecorator) AndroidMk(base *Module, entries *android.AndroidMkEntries) {
74 base.subAndroidMk(entries, p.binaryDecorator.pythonInstaller)
77 func (installer *pythonInstaller) AndroidMk(base *Module, entries *android.AndroidMkEntries) {
80 if base.Target().Os.Class == android.Host {
Dpython_test.go361 base, baseOk := module.Module().(*Module)
367 for _, path := range base.srcsPathMappings {
373 android.AssertPathRelativeToTopEquals(t, "srcsZip", expectedSrcsZip, base.srcsZip)
375 android.AssertPathsRelativeToTopEquals(t, "depsSrcsZips", expectedDepsSrcsZips, base.depsSrcsZips)
/build/make/core/
Dpathmap.mk38 frameworks-base:frameworks/base/include \
94 $(addprefix frameworks/base/,$(FRAMEWORKS_BASE_SUBDIRS))
Dsdk_font.mk21 sdk_font_config := $(sort $(wildcard frameworks/base/data/fonts/*.xml))
25 frameworks/base/data/fonts/%.xml
64 $(eval $(call sdk-extra-font-rule,DroidSansFallback.ttf,frameworks/base/data/fonts/DroidSansFallbac…
/build/make/target/product/
Dhandheld_product.mk37 frameworks-base-overlays
40 frameworks-base-overlays-debug
Dfull_base.mk29 preinstalled-packages-platform-full-base.xml
54 $(call inherit-product-if-exists, frameworks/base/data/sounds/AllAudio.mk)
/build/soong/bp2build/
Dsymlink_forest.go34 dir, base := filepath.Split(path)
40 if child, ok := dn.children[base]; ok {
43 dn.children[base] = &node{base, false, make(map[string]*node)}
44 return dn.children[base]
/build/soong/shared/
Dpaths.go36 func JoinPath(base string, rest ...string) string {
37 result := base
/build/soong/cc/symbolfile/
D__init__.py67 base: Optional[str]
337 base = self.current_line.partition('}')[2]
338 base = base.partition('#')[0].strip()
339 if not base.endswith(';'):
345 base = base.rstrip(';').rstrip()
346 return Version(name, base or None, tags, symbols)
/build/soong/cmd/path_interposer/
Dmain.go81 base := filepath.Base(args[0])
84 if base == filepath.Base(interposer) {
110 if config := opts.config(base); config.Log || config.Error {
119 Basename: base,
126 …ndroid.googlesource.com/platform/build/+/master/Changes.md#PATH_Tools for more information.", base)
130 cmd.Path, err = exec.LookPath(base)
/build/make/tools/signapk/src/com/android/signapk/
DCountingOutputStream.java24 public CountingOutputStream(OutputStream base) { in CountingOutputStream() argument
25 mBase = base; in CountingOutputStream()
/build/soong/cc/ndkstubgen/
D__init__.py86 base = '' if version.base is None else ' ' + version.base
87 self.version_script.write('}' + base + ';\n')

1234