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

12

/packages/apps/Dialer/java/com/android/dialer/configprovider/
H A DConfigProvider.java26 boolean getBoolean(String key, boolean defaultValue); method in interface:ConfigProvider
H A DConfigProviderBindings.java64 public boolean getBoolean(String key, boolean defaultValue) { method in class:ConfigProviderBindings.ConfigProviderStub
H A DSharedPrefConfigProvider.java109 public boolean getBoolean(String key, boolean defaultValue) { method in class:SharedPrefConfigProvider
111 () -> getSharedPrefs(appContext).getBoolean(PREF_PREFIX + key, defaultValue));
/packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/shadow/
H A DShadowKeyValueListParserWrapperImpl.java10 * {@link #getBoolean(String, boolean)} that doesn't support in the current
17 public boolean getBoolean(String key, boolean defaultValue) { method in class:ShadowKeyValueListParserWrapperImpl
H A DSettingsShadowSystemProperties.java37 public static synchronized boolean getBoolean(String key, boolean def) { method in class:SettingsShadowSystemProperties
43 return ShadowSystemProperties.getBoolean(key, def);
H A DSettingsShadowResources.java151 public boolean getBoolean(int id) { method in class:SettingsShadowResources
156 return Shadow.directlyOn(realResources, Resources.class, "getBoolean",
/packages/apps/Contacts/src-bind/com/android/contactsbind/experiments/
H A DFlags.java42 public boolean getBoolean(String flagName) { method in class:Flags
/packages/apps/Messaging/src/com/android/messaging/util/
H A DBugleGservices.java57 public abstract boolean getBoolean(final String key, final boolean defaultValue); method in class:BugleGservices
H A DBugleGservicesImpl.java52 public boolean getBoolean(final String key, final boolean defaultValue) { method in class:BugleGservicesImpl
H A DBuglePrefsImpl.java59 public boolean getBoolean(final String key, final boolean defaultValue) { method in class:BuglePrefsImpl
63 return prefs.getBoolean(key, defaultValue);
H A DBuglePrefs.java91 public abstract boolean getBoolean(final String key, final boolean defaultValue); method in class:BuglePrefs
/packages/apps/Messaging/tests/src/com/android/messaging/util/
H A DFakeBugleGservices.java41 public boolean getBoolean(final String key, final boolean defaultValue) { method in class:FakeBugleGservices
H A DFakeBuglePrefs.java38 public boolean getBoolean(final String key, final boolean defaultValue) { method in class:FakeBuglePrefs
/packages/apps/Settings/src/com/android/settings/fuelgauge/anomaly/
H A DKeyValueListParserWrapper.java60 boolean getBoolean(String key, boolean defaultValue); method in interface:KeyValueListParserWrapper
H A DKeyValueListParserWrapperImpl.java47 public boolean getBoolean(String key, boolean defaultValue) { method in class:KeyValueListParserWrapperImpl
48 return mParser.getBoolean(key, defaultValue);
/packages/apps/TV/src/com/android/tv/config/
H A DRemoteConfig.java47 boolean getBoolean(String key); method in interface:RemoteConfig
H A DDefaultConfigManager.java48 public boolean getBoolean(String key) { method in class:DefaultConfigManager.StubRemoteConfig
/packages/apps/TV/src/com/android/tv/tuner/util/
H A DSystemPropertiesProxy.java25 * Proxy class that gives an access to a hidden API {@link android.os.SystemProperties#getBoolean}.
32 public static boolean getBoolean(String key, boolean def) method in class:SystemPropertiesProxy
36 Method getBooleanMethod = SystemPropertiesClass.getDeclaredMethod("getBoolean",
42 Log.e(TAG, "Failed to invoke SystemProperties.getBoolean()", e);
/packages/apps/TV/common/src/com/android/tv/common/
H A DBooleanSystemProperty.java33 * >android.os.SystemProperties.getBoolean</a>.
68 private static boolean getBoolean(String key, boolean defaultValue) { method in class:BooleanSystemProperty
71 final Method get = systemProperties.getMethod("getBoolean", String.class, Boolean.TYPE);
96 mValue = getBoolean(mKey, mDefaultValue);
/packages/apps/Contacts/src/com/android/contacts/group/
H A DGroupMetaData.java78 this.readOnly = getBoolean(cursor, GroupMetaDataLoader.IS_READ_ONLY);
79 this.defaultGroup = getBoolean(cursor, GroupMetaDataLoader.AUTO_ADD);
80 this.favorites = getBoolean(cursor, GroupMetaDataLoader.FAVORITES);
84 private static boolean getBoolean(Cursor cursor, int columnIndex) { method in class:GroupMetaData
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
H A DTestResources.java79 public final boolean getBoolean(@BoolRes int id) throws NotFoundException { method in class:TestResources
/packages/apps/Calendar/tests/src/com/android/calendar/
H A DFakeSharedPreferences.java48 public boolean getBoolean(String key, boolean defValue) { method in class:FakeSharedPreferences
/packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/
H A DMockSharedPreferences.java48 public boolean getBoolean(String key, boolean defValue) { method in class:MockSharedPreferences
/packages/apps/Dialer/java/com/android/dialer/common/
H A DPerAccountSharedPreferences.java99 public boolean getBoolean(String key, boolean defValue) { method in class:PerAccountSharedPreferences
/packages/apps/Email/tests/src/com/android/email/
H A DMockSharedPreferences.java50 public boolean getBoolean(String key, boolean defValue) { method in class:MockSharedPreferences

Completed in 5595 milliseconds

12