Home
last modified time | relevance | path

Searched refs:getBoolean (Results 1 – 19 of 19) sorted by relevance

/platform_testing/libraries/flag-helpers/junit/test/src/android/platform/test/flag/junit/
DDeviceFlagsValueProviderTest.java49 () -> mFlagsValueProvider.getBoolean("android.platform.test.flagName1")); in getBoolean_classNotFound_throwException()
56 () -> mFlagsValueProvider.getBoolean("android.platfrm.test.flag.junit.flag1")); in getBoolean_noSuchMethod_throwException()
61 assertTrue(mFlagsValueProvider.getBoolean("android.platform.test.flag.junit.flag_name_1")); in getBoolean_validFlag()
69 mFlagsValueProvider.getBoolean( in getBoolean_notBooleanFlag_throwException()
78 mFlagsValueProvider.getBoolean( in getBoolean_aconfigFlagWithNameSpace_throwException()
86 () -> mFlagsValueProvider.getBoolean("does_not_exist/flag")); in getBoolean_fromNotExistLegacyFlag_throwException()
93 () -> mFlagsValueProvider.getBoolean("my_namespace/flag2")); in getBoolean_fromLegacyNonBooleanFlag_throwException()
98 assertTrue(mFlagsValueProvider.getBoolean("my_namespace/flag1")); in getBoolean_fromLegacyBooleanFlag()
DCheckFlagsRuleTest.java38 public boolean getBoolean(String flag) throws FlagReadException {
/platform_testing/libraries/flag-helpers/junit/test/src/android/platform/test/flag/junit/host/
DHostFlagsValueProviderTest.java100 () -> mHostFlagsValueProvider.getBoolean("flag_not_exist")); in getBoolean_flagNotExist_throwException()
107 () -> mHostFlagsValueProvider.getBoolean("namespace2/flag1")); in getBoolean_flagNotBoolean_throwException()
112 assertTrue(mHostFlagsValueProvider.getBoolean("namespace1/flag1")); in getBoolean_verify()
113 assertFalse(mHostFlagsValueProvider.getBoolean("namespace1/flag2")); in getBoolean_verify()
114 assertFalse(mHostFlagsValueProvider.getBoolean("cts/com.android.flags.my_flag")); in getBoolean_verify()
123 assertFalse(mHostFlagsValueProvider.getBoolean("namespace1/flag1")); in getBoolean_afterRefresh()
/platform_testing/libraries/flicker/src/android/tools/flicker/
DConsts.kt22 val isShellTransitionsEnabled = SystemProperties.getBoolean("persist.wm.debug.shell_transit", true)
/platform_testing/libraries/flag-helpers/junit/src_base/android/platform/test/flag/junit/
DIFlagsValueProvider.java34 boolean getBoolean(String flag) throws FlagReadException; in getBoolean() method
DAnnotationsRetriever.java255 valueProvider.getBoolean(flag)); in assumeAllRequiredFlagsMatchProvider()
259 valueProvider.getBoolean(flag)); in assumeAllRequiredFlagsMatchProvider()
/platform_testing/libraries/health/rules/src/android/platform/test/rule/
DSetBatteryPercentageVisibleRule.java38 Boolean visible = getArguments().getBoolean(VISIBLE_OPTION); in starting()
DEnsureDeviceSettingsRule.kt37 val mobileHarnessModeEnabled = SystemProperties.getBoolean(TEST_HARNESS_PROP, false) in checkTestHarnessEnabled()
/platform_testing/libraries/flag-helpers/junit/test/src/android/platform/test/flag/junit/example/
DExampleCheckFlagsRuleTest.java45 public boolean getBoolean(String flag) throws FlagReadException {
/platform_testing/libraries/flicker/utils/src/android/tools/traces/parsers/perfetto/
DLayersTraceParser.kt101 snapshotArgs.getChild("excludes_composition_state")?.getBoolean() ?: false in <lambda>()
175 layer.getChild("is_opaque")?.getBoolean() ?: false, in <lambda>()
186 layer.getChild("is_relative_of")?.getBoolean() ?: false, in <lambda>()
201 display.getChild("is_virtual")?.getBoolean() ?: false, in <lambda>()
DArgs.kt29 fun getBoolean(): Boolean { in getChild() method
/platform_testing/libraries/flag-helpers/junit/src_host/android/platform/test/flag/junit/host/
DHostFlagsValueProvider.java94 public boolean getBoolean(String flag) throws FlagReadException { in getBoolean() method in HostFlagsValueProvider
/platform_testing/libraries/flag-helpers/junit/src/android/platform/test/flag/junit/
DDeviceFlagsValueProvider.java71 public boolean getBoolean(String flag) throws FlagReadException { in getBoolean() method in DeviceFlagsValueProvider
/platform_testing/libraries/compatibility-common-util/src/com/android/compatibility/common/util/
DBusinessLogicFactory.java115 boolean enabled = root.getBoolean(CONDITIONAL_TESTS_ENABLED); in createBL()
/platform_testing/libraries/systemui-helper/src/android/platform/helpers/
DCommonUtils.java369 return sysUiResources.getBoolean(resourceId); in isSplitShade()
/platform_testing/libraries/launcher-helper/src/android/support/test/launcherhelper/
DLeanbackLauncherStrategy.java758 (appInfo.metaData != null && appInfo.metaData.getBoolean("isGame", false)); in isGame()
DTvLauncherStrategy.java801 isGame = (appInfo.metaData != null && appInfo.metaData.getBoolean("isGame", false))
/platform_testing/libraries/launcher-helper/src/android/support/test/launcherhelper2/
DLeanbackLauncherStrategy.java738 && appInfo.metaData.getBoolean("isGame", false)); in isGame()
DTvLauncherStrategy.java778 (appInfo.metaData != null && appInfo.metaData.getBoolean("isGame", false))