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

/frameworks/base/core/java/android/os/
H A DSystemProperties.java110 public static boolean getBoolean(String key, boolean def) { method in class:SystemProperties
H A DBaseBundle.java620 public boolean getBoolean(String key) { method in class:BaseBundle
624 return getBoolean(key, false);
657 public boolean getBoolean(String key, boolean defaultValue) { method in class:BaseBundle
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeSharedPreferences.java62 public boolean getBoolean(String key, boolean defValue) { method in class:BridgeSharedPreferences
/frameworks/base/core/java/android/content/
H A DSharedPreferences.java331 boolean getBoolean(String key, boolean defValue); method in interface:SharedPreferences
/frameworks/base/core/java/android/content/res/
H A DTypedArray.java270 public boolean getBoolean(int index, boolean defValue) { method in class:TypedArray
291 Log.w(Resources.TAG, "getBoolean of bad type: 0x"
H A DResources.java988 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/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DDozeParameters.java70 return getBoolean("doze.display.supported", R.bool.doze_display_state_supported);
98 return getBoolean("doze.pulse.sigmotion", R.bool.doze_pulse_on_significant_motion);
102 return SystemProperties.getBoolean("doze.vibrate.sigmotion", false);
106 return getBoolean("doze.pulse.pickup", R.bool.doze_pulse_on_pick_up);
110 return SystemProperties.getBoolean("doze.vibrate.pickup", false);
114 return getBoolean("doze.pulse.proxcheck", R.bool.doze_proximity_check_before_pulse);
118 return getBoolean("doze.pickup.proxcheck", R.bool.doze_pickup_performs_proximity_check);
122 return getBoolean("doze.pulse.notifications", R.bool.doze_pulse_on_notifications);
141 private boolean getBoolean(String propName, int resId) { method in class:DozeParameters
142 return SystemProperties.getBoolean(propNam
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DLockSettingsService.java90 boolean lockScreenDisable = SystemProperties.getBoolean(
231 public boolean getBoolean(String key, boolean defaultValue, int userId) throws RemoteException { method in class:LockSettingsService
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
H A DBridgeResources.java451 public boolean getBoolean(int id) throws NotFoundException { method in class:BridgeResources
H A DBridgeTypedArray.java185 public boolean getBoolean(int index, boolean defValue) { method in class:BridgeTypedArray
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DTintTypedArray.java96 public boolean getBoolean(int index, boolean defValue) { method in class:TintTypedArray
97 return mWrapped.getBoolean(index, defValue);
H A DResourcesWrapper.java165 public boolean getBoolean(int id) throws NotFoundException { method in class:ResourcesWrapper
166 return mResources.getBoolean(id);
/frameworks/base/core/java/android/app/
H A DSharedPreferencesImpl.java257 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/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiSelector.java642 boolean getBoolean(int criterion) { method in class:UiSelector
665 if (node.isChecked() != getBoolean(criterion)) {
682 if (node.isClickable() != getBoolean(criterion)) {
687 if (node.isCheckable() != getBoolean(criterion)) {
692 if (node.isLongClickable() != getBoolean(criterion)) {
749 if (node.isEnabled() != getBoolean(criterion)) {
754 if (node.isFocusable() != getBoolean(criterion)) {
759 if (node.isFocused() != getBoolean(criterion)) {
778 if (node.isScrollable() != getBoolean(criterion)) {
783 if (node.isSelected() != getBoolean(criterio
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternUtils.java426 return getBoolean(PATTERN_EVER_CHOSEN_KEY, false);
436 return getBoolean(BIOMETRIC_WEAK_EVER_CHOSEN_KEY, false);
663 return getBoolean(LOCK_SCREEN_OWNER_INFO_ENABLED, false);
1146 return getBoolean(Settings.Secure.LOCK_PATTERN_ENABLED, false, userId)
1219 return getBoolean(Settings.Secure.LOCK_PATTERN_VISIBLE, false);
1287 return getBoolean(LOCKOUT_PERMANENT_KEY, false);
1303 return mContext.getResources().getBoolean(
1308 return mContext.getResources().getBoolean(
1313 return mContext.getResources().getBoolean(
1326 private boolean getBoolean(Strin method in class:LockPatternUtils
1334 private boolean getBoolean(String secureSettingKey, boolean defaultValue) { method in class:LockPatternUtils
[all...]

Completed in 318 milliseconds