Searched refs:BoolDefault (Results 1 – 25 of 32) sorted by relevance
12
/build/blueprint/proptools/ |
D | proptools.go | 74 func BoolDefault(b *bool, def bool) bool { func 84 return BoolDefault(b, false)
|
/build/soong/java/ |
D | dexpreopt.go | 92 if !BoolDefault(d.dexpreoptProperties.Dex_preopt.Enabled, true) { 192 if BoolDefault(d.dexpreoptProperties.Dex_preopt.Profile_guided, true) { 237 NoCreateAppImage: !BoolDefault(d.dexpreoptProperties.Dex_preopt.App_image, true), 238 ForceCreateAppImage: BoolDefault(d.dexpreoptProperties.Dex_preopt.App_image, false),
|
D | dex.go | 84 return BoolDefault(d.dexProperties.Optimize.Enabled, d.dexProperties.Optimize.EnabledByDefault) 239 if BoolDefault(opt.Proguard_compatibility, true) {
|
D | droidstubs.go | 457 if BoolDefault(d.properties.High_mem, false) { 462 generateStubs := BoolDefault(d.properties.Generate_stubs, true) 498 if BoolDefault(d.properties.Check_api.Api_lint.Enabled, false) {
|
D | androidmk.go | 162 if !BoolDefault(j.testProperties.Auto_gen_config, true) { 508 if BoolDefault(jd.properties.Installable, true) { 529 …entries.SetBoolIfTrue("LOCAL_UNINSTALLABLE_MODULE", !BoolDefault(ddoc.Javadoc.properties.Installab…
|
D | prebuilt_apis.go | 163 compileDex := proptools.BoolDefault(p.properties.Imports_compile_dex, false)
|
D | lint.go | 162 return BoolDefault(l.properties.Lint.Strict_updatability_linting, false) 178 return BoolDefault(l.properties.Lint.Enabled, true)
|
/build/soong/python/ |
D | binary.go | 87 py3Enabled := proptools.BoolDefault(m.properties.Version.Py3.Enabled, false) 88 py2Enabled := proptools.BoolDefault(m.properties.Version.Py2.Enabled, false) 179 return BoolDefault(binary.binaryProperties.Autorun, true)
|
D | python.go | 284 if proptools.BoolDefault(base.properties.Version.Py3.Enabled, true) { 288 if proptools.BoolDefault(base.properties.Version.Py2.Enabled, false) { 493 if proptools.BoolDefault(p.properties.Is_internal, false) { 721 var BoolDefault = proptools.BoolDefault var
|
D | androidmk.go | 68 …entries.SetBoolIfTrue("LOCAL_DISABLE_AUTO_GENERATE_TEST_CONFIG", !BoolDefault(p.binaryProperties.A…
|
/build/soong/android/ |
D | bazel.go | 331 return proptools.BoolDefault(propValue, true) 335 return proptools.BoolDefault(propValue, false)
|
D | proto.go | 93 CanonicalPathFromRoot: proptools.BoolDefault(p.Proto.Canonical_path_from_root, true),
|
/build/soong/linkerconfig/ |
D | linkerconfig.go | 97 if !proptools.BoolDefault(l.properties.Installable, true) { 152 installable := proptools.BoolDefault(l.properties.Installable, true)
|
/build/soong/tradefed/ |
D | autogen.go | 51 …} else if BoolDefault(autoGenConfig, true) && (!android.InList("cts", testSuites) || testConfigTem… 324 var BoolDefault = proptools.BoolDefault var
|
/build/soong/rust/ |
D | library.go | 167 return library.MutatedProperties.BuildRlib && BoolDefault(library.Properties.Rlib.Enabled, true) 171 return library.MutatedProperties.BuildDylib && BoolDefault(library.Properties.Dylib.Enabled, true) 175 …return library.MutatedProperties.BuildShared && BoolDefault(library.Properties.Shared.Enabled, tru… 179 …return library.MutatedProperties.BuildStatic && BoolDefault(library.Properties.Static.Enabled, tru…
|
D | fuzz.go | 226 if rustModule.Host() && !BoolDefault(config.Fuzz_on_haiku_host, true) { 228 } else if !BoolDefault(config.Fuzz_on_haiku_device, true) {
|
D | androidmk.go | 107 …entries.SetBoolIfTrue("LOCAL_DISABLE_AUTO_GENERATE_TEST_CONFIG", !BoolDefault(test.Properties.Auto… 124 …entries.SetBoolIfTrue("LOCAL_DISABLE_AUTO_GENERATE_TEST_CONFIG", !BoolDefault(benchmark.Properties…
|
D | test.go | 84 return BoolDefault(test.Properties.Test_harness, true)
|
D | rust.go | 1366 var BoolDefault = proptools.BoolDefault var
|
/build/soong/cc/ |
D | fuzz.go | 216 if !proptools.BoolDefault(ccLibrary.Properties.Installable, true) { 526 if ccModule.Host() && !BoolDefault(config.Fuzz_on_haiku_host, true) { 528 } else if !BoolDefault(config.Fuzz_on_haiku_device, true) {
|
D | coverage.go | 183 needCoverageVariant = BoolDefault(properties.Native_coverage, true)
|
D | test.go | 250 return BoolDefault(test.Properties.Gtest, true) 285 } else if BoolDefault(test.Properties.Isolated, false) {
|
D | pgo.go | 266 proptools.BoolDefault(pgo.Properties.Pgo.Enable_profile_use, true) {
|
D | androidmk.go | 363 if !BoolDefault(benchmark.Properties.Auto_gen_config, true) { 387 if !BoolDefault(test.Properties.Auto_gen_config, true) {
|
D | bp2build.go | 303 if !BoolDefault(linkerProperties.Pack_relocations, true) {
|
12