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

1 2

  /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 24 import android.provider.Settings.SettingNotFoundException;
32 * Setting that will have a string value to trigger SettingNotFoundException caused by
78 fail("SettingNotFoundException should have been thrown!");
79 } catch (SettingNotFoundException expected) {
84 fail("SettingNotFoundException should have been thrown!");
85 } catch (SettingNotFoundException expected) {
89 public void testGetPutFloat() throws SettingNotFoundException {
100 fail("SettingNotFoundException should have been thrown!");
101 } catch (SettingNotFoundException expected) {
106 fail("SettingNotFoundException should have been thrown!")
    [all...]
Settings_SystemTest.java 24 import android.provider.Settings.SettingNotFoundException;
61 public void testSystemSettings() throws SettingNotFoundException {
  /external/robolectric/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/apps/ContactsCommon/src/com/android/contacts/common/preference/
ContactsPreferences.java 25 import android.provider.Settings.SettingNotFoundException;
70 } catch (SettingNotFoundException e) {
104 } catch (SettingNotFoundException e) {
  /packages/services/Telephony/src/com/android/phone/sip/
SipSharedPreferences.java 25 import android.provider.Settings.SettingNotFoundException;
102 } catch (SettingNotFoundException e) {
  /external/robolectric/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)
  /frameworks/base/services/java/com/android/server/am/
CoreSettingsObserver.java 24 import android.provider.Settings.SettingNotFoundException;
105 } catch (SettingNotFoundException snfe) {
  /frameworks/base/services/java/com/android/server/wifi/
WifiSettingsStore.java 171 } catch (Settings.SettingNotFoundException e) {
181 } catch (Settings.SettingNotFoundException e) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/settings/
BrightnessController.java 31 import android.provider.Settings.SettingNotFoundException;
212 } catch (SettingNotFoundException snfe) {
230 } catch (SettingNotFoundException ex) {
  /frameworks/base/core/java/android/provider/
Settings.java 821 public static class SettingNotFoundException extends AndroidException {
822 public SettingNotFoundException(String msg) {
    [all...]
  /frameworks/base/services/java/com/android/server/
ConsumerIrService.java 38 import android.provider.Settings.SettingNotFoundException;
VibratorService.java 41 import android.provider.Settings.SettingNotFoundException;
417 } catch (SettingNotFoundException snfe) {
LockSettingsService.java 42 import android.provider.Settings.SettingNotFoundException;
139 } catch (SettingNotFoundException e) {
  /cts/tests/tests/text/src/android/text/method/cts/
PasswordTransformationMethodTest.java 22 import android.provider.Settings.SettingNotFoundException;
207 } catch (SettingNotFoundException e) {
  /packages/apps/SpareParts/src/com/android/spare_parts/
SpareParts.java 38 import android.provider.Settings.SettingNotFoundException;
240 } catch (SettingNotFoundException e) {
  /packages/apps/Settings/src/com/android/settings/
DateTimeSettingsSetupWizard.java 33 import android.provider.Settings.SettingNotFoundException;
299 } catch (SettingNotFoundException e) {
309 } catch (SettingNotFoundException e) {
DisplaySettings.java 36 import android.provider.Settings.SettingNotFoundException;
121 } catch (SettingNotFoundException snfe) {
DateTimeSettings.java 37 import android.provider.Settings.SettingNotFoundException;
344 } catch (SettingNotFoundException snfe) {
  /frameworks/base/core/java/android/hardware/input/
InputManager.java 33 import android.provider.Settings.SettingNotFoundException;
520 } catch (SettingNotFoundException snfe) {
  /packages/apps/Settings/src/com/android/settings/inputmethod/
InputMethodAndSubtypeUtil.java 27 import android.provider.Settings.SettingNotFoundException;
93 } catch (SettingNotFoundException e) {
  /frameworks/base/core/java/android/widget/
DateTimeView.java 30 import android.provider.Settings.SettingNotFoundException;
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiApEnabler.java 137 } catch (Settings.SettingNotFoundException e) {
  /packages/apps/Settings/src/com/android/settings/tts/
TextToSpeechSettings.java 36 import android.provider.Settings.SettingNotFoundException;
216 } catch (SettingNotFoundException e) {
  /frameworks/base/core/java/android/app/
DownloadManager.java 34 import android.provider.Settings.SettingNotFoundException;
    [all...]

Completed in 1845 milliseconds

1 2