Searched defs:getBoolean (Results 26 - 36 of 36) sorted by relevance

12

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DResourcesWrapper.java166 public boolean getBoolean(int id) throws NotFoundException { method in class:ResourcesWrapper
167 return mResources.getBoolean(id);
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiSelector.java645 boolean getBoolean(int criterion) { method in class:UiSelector
668 if (node.isChecked() != getBoolean(criterion)) {
685 if (node.isClickable() != getBoolean(criterion)) {
690 if (node.isCheckable() != getBoolean(criterion)) {
695 if (node.isLongClickable() != getBoolean(criterion)) {
752 if (node.isEnabled() != getBoolean(criterion)) {
757 if (node.isFocusable() != getBoolean(criterion)) {
762 if (node.isFocused() != getBoolean(criterion)) {
781 if (node.isScrollable() != getBoolean(criterion)) {
786 if (node.isSelected() != getBoolean(criterio
[all...]
/frameworks/base/core/java/android/os/
H A DBaseBundle.java819 public boolean getBoolean(String key) { method in class:BaseBundle
823 return getBoolean(key, false);
856 public boolean getBoolean(String key, boolean defaultValue) { method in class:BaseBundle
/frameworks/layoutlib/bridge/src/android/content/res/
H A DResources_Delegate.java654 static boolean getBoolean(Resources resources, int id) throws NotFoundException { method in class:Resources_Delegate
/frameworks/base/core/java/android/content/res/
H A DResources.java1054 public boolean getBoolean(@BoolRes int id) throws NotFoundException { method in class:Resources
/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
H A DMOManager.java812 boolean checkAAACert = getBoolean(credNode.getChild(TAG_CheckAAAServerCertStatus));
829 boolean machineManaged = getBoolean(unNode.getChild(TAG_MachineManaged));
831 boolean ableToShare = getBoolean(unNode.getChild(TAG_AbleToShare));
970 private static boolean getBoolean(OMANode boolNode) { method in class:MOManager
/frameworks/base/services/core/java/com/android/server/
H A DTextServicesManagerService.java1089 private boolean getBoolean(final String key, final boolean defaultValue) { method in class:TextServicesManagerService.TextServicesSettings
1132 return getBoolean(Settings.Secure.SPELL_CHECKER_ENABLED, true);
/frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
H A DMockSystemServices.java326 public boolean getBoolean(String key, boolean def) { method in class:MockSystemServices.SystemPropertiesForMock
/frameworks/base/core/java/com/android/internal/inputmethod/
H A DInputMethodUtils.java974 private boolean getBoolean(final String key, final boolean defaultValue) { method in class:InputMethodUtils.InputMethodSettings
1338 return getBoolean(Settings.Secure.SHOW_IME_WITH_HARD_KEYBOARD, false);
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternUtils.java181 return getLockSettings().getBoolean(IS_TRUST_USUALLY_MANAGED, false, userId);
561 return getBoolean(PATTERN_EVER_CHOSEN_KEY, false, userId);
647 boolean disabledByDefault = mContext.getResources().getBoolean(
653 return getBoolean(DISABLE_LOCKSCREEN_KEY, false, userId)
738 return getBoolean(LOCK_SCREEN_OWNER_INFO_ENABLED, false, userId);
1147 return getBoolean(LEGACY_LOCK_PATTERN_ENABLED, true, userId);
1164 return getBoolean(Settings.Secure.LOCK_PATTERN_VISIBLE, false, userId);
1269 private boolean getBoolean(String secureSettingKey, boolean defaultValue, int userId) { method in class:LockPatternUtils
1271 return getLockSettings().getBoolean(secureSettingKey, defaultValue, userId);
1325 return getBoolean(LOCKSCREEN_POWER_BUTTON_INSTANTLY_LOCK
[all...]
/frameworks/base/services/core/java/com/android/server/locksettings/
H A DLockSettingsService.java328 boolean lockScreenDisable = SystemProperties.getBoolean(
699 if (getBoolean(LockPatternUtils.DISABLE_LOCKSCREEN_KEY, false, id)) {
767 && !getBoolean("migrated_frp", false, 0)) {
874 return getBoolean(SEPARATE_PROFILE_CHALLENGE_KEY, false, userId);
921 public boolean getBoolean(String key, boolean defaultValue, int userId) { method in class:LockSettingsService

Completed in 406 milliseconds

12