HomeSort by relevance Sort by last modified time
    Searched refs:SettingNotFoundException (Results 1 - 25 of 42) 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/apps/Phone/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 32 import android.provider.Settings.SettingNotFoundException;
216 } catch (SettingNotFoundException snfe) {
234 } catch (SettingNotFoundException ex) {
  /frameworks/base/core/java/android/provider/
Settings.java 738 public static class SettingNotFoundException extends AndroidException {
739 public SettingNotFoundException(String msg) {
    [all...]
  /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;
300 } catch (SettingNotFoundException e) {
310 } catch (SettingNotFoundException e) {
DateTimeSettings.java 37 import android.provider.Settings.SettingNotFoundException;
349 } catch (SettingNotFoundException snfe) {
DisplaySettings.java 42 import android.provider.Settings.SettingNotFoundException;
132 } catch (SettingNotFoundException snfe) {
  /frameworks/base/core/java/android/hardware/input/
InputManager.java 33 import android.provider.Settings.SettingNotFoundException;
520 } catch (SettingNotFoundException snfe) {
  /frameworks/base/services/java/com/android/server/
LockSettingsService.java 38 import android.provider.Settings.SettingNotFoundException;
129 } catch (SettingNotFoundException e) {
VibratorService.java 40 import android.provider.Settings.SettingNotFoundException;
413 } catch (SettingNotFoundException snfe) {
  /packages/apps/Settings/src/com/android/settings/inputmethod/
InputMethodAndSubtypeUtil.java 30 import android.provider.Settings.SettingNotFoundException;
99 } catch (SettingNotFoundException e) {
  /packages/apps/Settings/src/com/android/settings/tts/
TextToSpeechSettings.java 36 import android.provider.Settings.SettingNotFoundException;
179 } 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) {
  /frameworks/base/core/java/android/app/
DownloadManager.java 32 import android.provider.Settings.SettingNotFoundException;
    [all...]
  /frameworks/base/services/java/com/android/server/input/
InputManagerService.java 63 import android.provider.Settings.SettingNotFoundException;
    [all...]

Completed in 532 milliseconds

1 2