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

12

/frameworks/base/core/java/android/util/
H A DKeyValueListParser.java139 public boolean getBoolean(String key, boolean def) { method in class:KeyValueListParser
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DMockableSystemProperties.java31 public boolean getBoolean(String key, boolean def) { method in class:MockableSystemProperties
32 return SystemProperties.getBoolean(key, def);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DPropertyService.java44 boolean getBoolean(String key, boolean defaultValue); method in interface:PropertyService
H A DSystemPropertyService.java32 public boolean getBoolean(String key, boolean defaultValue) { method in class:SystemPropertyService
33 return android.os.SystemProperties.getBoolean(key, defaultValue);
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DMockResources.java34 public boolean getBoolean(int id) { method in class:MockResources
/frameworks/base/core/java/android/preference/
H A DPreferenceDataStore.java117 * @see #getBoolean(String, boolean)
185 * @see #getBoolean(String, boolean)
187 default boolean getBoolean(String key, boolean defValue) { method in interface:PreferenceDataStore
/frameworks/base/core/java/android/security/keymaster/
H A DKeyCharacteristics.java143 public boolean getBoolean(int tag) { method in class:KeyCharacteristics
145 return hwEnforced.getBoolean(tag);
147 return swEnforced.getBoolean(tag);
H A DKeymasterArguments.java234 public boolean getBoolean(int tag) { method in class:KeymasterArguments
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeSharedPreferences.java62 public boolean getBoolean(String key, boolean defValue) { method in class:BridgeSharedPreferences
/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DPreferenceDataStore.java117 * @see #getBoolean(String, boolean)
191 * @see #getBoolean(String, boolean)
193 public boolean getBoolean(String key, boolean defValue) { method in class:PreferenceDataStore
/frameworks/support/v7/preference/tests/src/android/support/v7/preference/tests/helpers/
H A DPreferenceWrapper.java83 public boolean getBoolean(boolean defaultValue) { method in class:PreferenceWrapper
/frameworks/base/core/java/android/content/
H A DSharedPreferences.java334 boolean getBoolean(String key, boolean defValue); method in interface:SharedPreferences
/frameworks/base/core/java/android/os/
H A DSystemProperties.java141 public static boolean getBoolean(String key, boolean def) { method in class:SystemProperties
/frameworks/support/compat/java/android/support/v4/content/res/
H A DTypedArrayUtils.java88 return a.getBoolean(resId, defaultValue);
193 public static boolean getBoolean(TypedArray a, @StyleableRes int index, method in class:TypedArrayUtils
195 boolean val = a.getBoolean(fallbackIndex, defaultValue);
196 return a.getBoolean(index, val);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/system/
H A DSettings.java93 public boolean getBoolean(String key) { method in class:Settings
118 mPreferStaticShadows = customizations.getBoolean(
128 mOutlineClippingDisabled = customizations.getBoolean(
148 public boolean getBoolean(String resourceName, boolean defaultValue) { method in class:Settings.Customizations
150 return resId > 0 ? mResources.getBoolean(resId) : defaultValue;
/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/
H A DPrefs.java80 public static boolean getBoolean(Context context, @Key String key, boolean defaultValue) { method in class:Prefs
81 return get(context).getBoolean(key, defaultValue);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DDozeParameters.java69 return "fallback: " + mContext.getResources().getBoolean(
77 return getBoolean("doze.display.supported", R.bool.doze_display_state_supported);
81 return mContext.getResources().getBoolean(R.bool.doze_suspend_display_state_supported);
103 return getBoolean("doze.pulse.sigmotion", R.bool.doze_pulse_on_significant_motion);
107 return SystemProperties.getBoolean("doze.vibrate.sigmotion", false);
111 return SystemProperties.getBoolean("doze.vibrate.pickup", false);
115 return getBoolean("doze.pulse.proxcheck", R.bool.doze_proximity_check_before_pulse);
126 private boolean getBoolean(String propName, int resId) { method in class:DozeParameters
127 return SystemProperties.getBoolean(propName, mContext.getResources().getBoolean(resI
[all...]
/frameworks/native/libs/binder/
H A DPersistableBundle.cpp221 bool PersistableBundle::getBoolean(const String16& key, bool* out) const { function in class:android::os::PersistableBundle
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DTintTypedArray.java150 public boolean getBoolean(int index, boolean defValue) { method in class:TintTypedArray
151 return mWrapped.getBoolean(index, defValue);
/frameworks/base/core/java/android/app/
H A DSharedPreferencesImpl.java291 public boolean getBoolean(String key, boolean defValue) { method in class:SharedPreferencesImpl
/frameworks/base/core/java/android/content/res/
H A DTypedArray.java318 public boolean getBoolean(@StyleableRes int index, boolean defValue) { method in class:TypedArray
340 throw new RuntimeException("getBoolean of bad type: 0x" + Integer.toHexString(type));
/frameworks/base/media/java/android/media/
H A DMetadata.java458 public boolean getBoolean(final int key) { method in class:Metadata
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/dream/
H A DDreamBackend.java105 .getBoolean(com.android.internal.R.bool.config_dreamsEnabledByDefault);
107 .getBoolean(com.android.internal.R.bool.config_dreamsActivatedOnSleepByDefault);
109 .getBoolean(com.android.internal.R.bool.config_dreamsActivatedOnDockByDefault);
199 return getBoolean(Settings.Secure.SCREENSAVER_ENABLED, mDreamsEnabledByDefault);
208 return getBoolean(Settings.Secure.SCREENSAVER_ACTIVATE_ON_DOCK,
218 return getBoolean(Settings.Secure.SCREENSAVER_ACTIVATE_ON_SLEEP,
227 private boolean getBoolean(String key, boolean def) { method in class:DreamBackend
/frameworks/layoutlib/bridge/src/android/content/res/
H A DBridgeTypedArray.java227 public boolean getBoolean(int index, boolean defValue) { method in class:BridgeTypedArray

Completed in 1065 milliseconds

12