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

1 2

  /cts/tests/tests/provider/src/android/provider/cts/
Settings_SettingNotFoundExceptionTest.java 23 import android.provider.Settings.SettingNotFoundException;
26 @TestTargetClass(android.provider.Settings.SettingNotFoundException.class)
30 method = "Settings.SettingNotFoundException",
34 new SettingNotFoundException("Setting not found exception.");
35 new SettingNotFoundException(null);
Settings_SecureTest.java 28 import android.provider.Settings.SettingNotFoundException;
37 * Setting that will have a string value to trigger SettingNotFoundException caused by
100 fail("SettingNotFoundException should have been thrown!");
101 } catch (SettingNotFoundException expected) {
106 fail("SettingNotFoundException should have been thrown!");
107 } catch (SettingNotFoundException expected) {
111 public void testGetPutFloat() throws SettingNotFoundException {
120 // TODO: Should be fixed to throw SettingNotFoundException.
129 fail("SettingNotFoundException should have been thrown!");
130 } catch (SettingNotFoundException expected)
    [all...]
Settings_SystemTest.java 28 import android.provider.Settings.SettingNotFoundException;
107 public void testSystemSettings() throws SettingNotFoundException {
  /packages/apps/Contacts/src/com/android/contacts/ui/
ContactsPreferences.java 27 import android.provider.Settings.SettingNotFoundException;
66 } catch (SettingNotFoundException e) {
100 } catch (SettingNotFoundException e) {
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
RealSystemFacade.java 11 import android.provider.Settings.SettingNotFoundException;
68 } catch (SettingNotFoundException exc) {
78 } catch (SettingNotFoundException exc) {
  /packages/apps/Phone/src/com/android/phone/sip/
SipSharedPreferences.java 25 import android.provider.Settings.SettingNotFoundException;
102 } catch (SettingNotFoundException e) {
  /packages/apps/Settings/src/com/android/settings/
BrightnessPreference.java 25 import android.provider.Settings.SettingNotFoundException;
70 } catch (SettingNotFoundException snfe) {
81 } catch (SettingNotFoundException snfe) {
SoundSettings.java 37 import android.provider.Settings.SettingNotFoundException;
150 } catch (SettingNotFoundException snfe) {
DateTimeSettings.java 36 import android.provider.Settings.SettingNotFoundException;
317 } catch (SettingNotFoundException snfe) {
TextToSpeechSettings.java 43 import android.provider.Settings.SettingNotFoundException;
242 } catch (SettingNotFoundException e) {
266 } catch (SettingNotFoundException e) {
    [all...]
  /frameworks/base/core/java/android/provider/
Settings.java 555 public static class SettingNotFoundException extends AndroidException {
556 public SettingNotFoundException(String msg) {
820 * it throws {@link SettingNotFoundException}.
825 * @throws SettingNotFoundException Thrown if a setting by the given
831 throws SettingNotFoundException {
836 throw new SettingNotFoundException(name);
    [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
PasswordTransformationMethodTest.java 26 import android.provider.Settings.SettingNotFoundException;
253 } catch (SettingNotFoundException e) {
  /development/apps/SpareParts/src/com/android/spare_parts/
SpareParts.java 38 import android.provider.Settings.SettingNotFoundException;
240 } catch (SettingNotFoundException e) {
  /packages/apps/Phone/src/com/android/phone/
SipBroadcastReceiver.java 34 import android.provider.Settings.SettingNotFoundException;
  /frameworks/base/telephony/java/com/android/internal/telephony/
DataConnectionTracker.java 25 import android.provider.Settings.SettingNotFoundException;
254 } catch (SettingNotFoundException snfe) {
PhoneBase.java 578 } catch (Settings.SettingNotFoundException e) {
    [all...]
  /frameworks/base/core/java/android/widget/
DateTimeView.java 30 import android.provider.Settings.SettingNotFoundException;
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiApEnabler.java 139 } catch (Settings.SettingNotFoundException e) {
  /packages/apps/Settings/src/com/android/settings/widget/
SettingsAppWidgetProvider.java     [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaServiceStateTracker.java 33 import android.provider.Settings.SettingNotFoundException;
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmServiceStateTracker.java 39 import android.provider.Settings.SettingNotFoundException;
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/pm/
PackageManagerTests.java 41 import android.provider.Settings.SettingNotFoundException;
    [all...]
  /frameworks/base/services/java/com/android/server/
WifiService.java 376 } catch (Settings.SettingNotFoundException e) {
386 } catch (Settings.SettingNotFoundException e) {
    [all...]
PowerManagerService.java 56 import android.provider.Settings.SettingNotFoundException;
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiStateTracker.java     [all...]

Completed in 568 milliseconds

1 2