HomeSort by relevance Sort by last modified time
    Searched refs:SettingNotFoundException (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /cts/tests/tests/provider/src/android/provider/cts/
Settings_SettingNotFoundExceptionTest.java 20 import android.provider.Settings.SettingNotFoundException;
25 new SettingNotFoundException("Setting not found exception.");
26 new SettingNotFoundException(null);
Settings_SecureTest.java 25 import android.provider.Settings.SettingNotFoundException;
33 * Setting that will have a string value to trigger SettingNotFoundException caused by
79 fail("SettingNotFoundException should have been thrown!");
80 } catch (SettingNotFoundException expected) {
85 fail("SettingNotFoundException should have been thrown!");
86 } catch (SettingNotFoundException expected) {
90 public void testGetPutFloat() throws SettingNotFoundException {
101 fail("SettingNotFoundException should have been thrown!");
102 } catch (SettingNotFoundException expected) {
107 fail("SettingNotFoundException should have been thrown!")
    [all...]
Settings_SystemTest.java 25 import android.provider.Settings.SettingNotFoundException;
91 public void testSystemSettings() throws SettingNotFoundException {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSettings.java 40 public static int getInt(ContentResolver cr, String name) throws Settings.SettingNotFoundException {
44 throw new Settings.SettingNotFoundException(name);
79 public static long getLong(ContentResolver cr, String name) throws Settings.SettingNotFoundException {
83 throw new Settings.SettingNotFoundException(name);
103 public static float getFloat(ContentResolver cr, String name) throws Settings.SettingNotFoundException {
107 throw new Settings.SettingNotFoundException(name);
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipPreferences.java 23 import android.provider.Settings.SettingNotFoundException;
69 } catch (SettingNotFoundException e) {
  /packages/apps/Car/Settings/src/com/android/car/settings/display/
BrightnessLineItem.java 48 } catch (Settings.SettingNotFoundException e) {
  /cts/tests/tests/voicesettings/src/android/voicesettings/cts/
AirplaneModeTest.java 62 } catch (Settings.SettingNotFoundException e) {
102 private int getMode() throws Settings.SettingNotFoundException {
ZenModeTest.java 67 } catch (Settings.SettingNotFoundException e) {
116 private int getMode() throws Settings.SettingNotFoundException {
  /packages/apps/Dialer/java/com/android/incallui/calllocation/impl/
GoogleLocationSettingHelper.java 27 import android.provider.Settings.SettingNotFoundException;
109 } catch (SettingNotFoundException e) {
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
SettingsTest.java 90 @Test(expected = Settings.SettingNotFoundException.class)
95 @Test(expected = Settings.SettingNotFoundException.class)
100 @Test(expected = Settings.SettingNotFoundException.class)
  /packages/services/Telephony/tests/src/com/android/phone/
RoamingDialogFragmentTest.java 21 import android.provider.Settings.SettingNotFoundException;
89 public void dataRoamingEnabledWhenPositiveButtonClicked() throws SettingNotFoundException {
116 public void dataRoamingStaysDisabledWhenDialogCanceled() throws SettingNotFoundException {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
ImportantNoticeUtils.java 23 import android.provider.Settings.SettingNotFoundException;
65 } catch (final SettingNotFoundException e) {
  /frameworks/base/core/tests/utiltests/src/com/android/internal/util/test/
FakeSettingsProviderTest.java 53 } catch (Settings.SettingNotFoundException expected) {}
  /packages/apps/Contacts/src/com/android/contacts/preference/
ContactsPreferences.java 29 import android.provider.Settings.SettingNotFoundException;
358 } catch (SettingNotFoundException e) {
368 } catch (SettingNotFoundException e) {
378 } catch (SettingNotFoundException e) {
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiSettingsStore.java 201 } catch (Settings.SettingNotFoundException e) {
211 } catch (Settings.SettingNotFoundException e) {
  /packages/apps/Dialer/java/com/android/contacts/common/preference/
ContactsPreferences.java 26 import android.provider.Settings.SettingNotFoundException;
239 } catch (SettingNotFoundException e) {
248 } catch (SettingNotFoundException e) {
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
SettingsFacade.java 28 import android.provider.Settings.SettingNotFoundException;
85 } catch (SettingNotFoundException e) {
177 } catch (SettingNotFoundException e) {
  /packages/apps/Settings/src/com/android/settings/notification/
PulseNotificationPreferenceController.java 90 } catch (Settings.SettingNotFoundException snfe) {
  /cts/tests/tests/text/src/android/text/method/cts/
PasswordTransformationMethodTest.java 34 import android.provider.Settings.SettingNotFoundException;
227 } catch (SettingNotFoundException e) {
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
PreferredServices.java 36 import android.provider.Settings.SettingNotFoundException;
140 } catch (SettingNotFoundException e) {
  /packages/apps/Settings/src/com/android/settings/nfc/
PaymentBackend.java 30 import android.provider.Settings.SettingNotFoundException;
157 } catch (SettingNotFoundException e) {
  /packages/apps/SpareParts/src/com/android/spare_parts/
SpareParts.java 38 import android.provider.Settings.SettingNotFoundException;
240 } catch (SettingNotFoundException e) {
  /frameworks/base/core/java/android/provider/
Settings.java     [all...]
  /packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/setting/
GarageModeSettingsFragment.java 113 } catch (Settings.SettingNotFoundException e) {
  /frameworks/base/core/java/android/nfc/cardemulation/
CardEmulation.java 32 import android.provider.Settings.SettingNotFoundException;
270 } catch (SettingNotFoundException e) {

Completed in 665 milliseconds

1 2 3 4