Searched defs:getBoolean (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/core/java/android/os/
H A DSystemProperties.java112 public static boolean getBoolean(String key, boolean def) { method in class:SystemProperties
H A DBundle.java767 public boolean getBoolean(String key) { method in class:Bundle
769 return getBoolean(key, false);
802 public boolean getBoolean(String key, boolean defaultValue) { method in class:Bundle
/frameworks/base/core/java/android/content/
H A DSharedPreferences.java327 boolean getBoolean(String key, boolean defValue); method in interface:SharedPreferences
/frameworks/base/core/java/android/content/res/
H A DTypedArray.java210 public boolean getBoolean(int index, boolean defValue) { method in class:TypedArray
227 Log.w(Resources.TAG, "getBoolean of bad type: 0x"
H A DResources.java793 public boolean getBoolean(int id) throws NotFoundException { method in class:Resources
/frameworks/base/core/java/com/android/internal/util/
H A DTypedProperties.java434 public boolean getBoolean(String property, boolean def) { method in class:TypedProperties
599 public boolean getBoolean(String property) { method in class:TypedProperties
600 return getBoolean(property, false);
/frameworks/base/core/java/com/android/internal/widget/
H A DLockSettingsService.java146 public boolean getBoolean(String key, boolean defaultValue, int userId) throws RemoteException { method in class:LockSettingsService
374 boolean lockScreenDisable = SystemProperties.getBoolean("ro.lockscreen.disable.default",
H A DLockPatternUtils.java370 return getBoolean(PATTERN_EVER_CHOSEN_KEY, false);
380 return getBoolean(BIOMETRIC_WEAK_EVER_CHOSEN_KEY, false);
873 return getBoolean(Settings.Secure.LOCK_PATTERN_ENABLED, false)
936 return getBoolean(Settings.Secure.LOCK_PATTERN_VISIBLE, false);
985 return getBoolean(LOCKOUT_PERMANENT_KEY, false);
1001 return mContext.getResources().getBoolean(
1006 return mContext.getResources().getBoolean(
1011 return mContext.getResources().getBoolean(
1028 private boolean getBoolean(String secureSettingKey, boolean defaultValue) { method in class:LockPatternUtils
1030 return getLockSettings().getBoolean(secureSettingKe
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
H A DBridgeResources.java445 public boolean getBoolean(int id) throws NotFoundException { method in class:BridgeResources
H A DBridgeTypedArray.java180 public boolean getBoolean(int index, boolean defValue) { method in class:BridgeTypedArray
/frameworks/base/core/java/android/app/
H A DSharedPreferencesImpl.java258 public boolean getBoolean(String key, boolean defValue) { method in class:SharedPreferencesImpl
/frameworks/base/media/java/android/media/
H A DMetadata.java450 public boolean getBoolean(final int key) { method in class:Metadata
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DUiSelector.java601 boolean getBoolean(int criterion) { method in class:UiSelector
620 if (node.isChecked() != getBoolean(criterion)) {
637 if (node.isClickable() != getBoolean(criterion)) {
642 if (node.isLongClickable() != getBoolean(criterion)) {
699 if(node.isEnabled() != getBoolean(criterion)) {
704 if(node.isFocusable() != getBoolean(criterion)) {
709 if(node.isFocused() != getBoolean(criterion)) {
728 if(node.isScrollable() != getBoolean(criterion)) {
733 if(node.isSelected() != getBoolean(criterion)) {

Completed in 235 milliseconds