OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SettingNotFoundException
(Results
1 - 25
of
74
) sorted by null
1
2
3
/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
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) {
/cts/tests/tests/voicesettings/src/android/voicesettings/cts/
AirplaneModeTest.java
61
} catch (Settings.
SettingNotFoundException
e) {
101
private int getMode() throws Settings.
SettingNotFoundException
{
ZenModeTest.java
66
} catch (Settings.
SettingNotFoundException
e) {
115
private int getMode() throws Settings.
SettingNotFoundException
{
/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)
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiSettingsStore.java
201
} catch (Settings.
SettingNotFoundException
e) {
211
} catch (Settings.
SettingNotFoundException
e) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
ImportantNoticeUtils.java
23
import android.provider.Settings.
SettingNotFoundException
;
65
} catch (final
SettingNotFoundException
e) {
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
SettingsFacade.java
28
import android.provider.Settings.
SettingNotFoundException
;
85
} catch (
SettingNotFoundException
e) {
159
} catch (
SettingNotFoundException
e) {
/packages/apps/ContactsCommon/src/com/android/contacts/common/preference/
ContactsPreferences.java
31
import android.provider.Settings.
SettingNotFoundException
;
339
} catch (
SettingNotFoundException
e) {
349
} catch (
SettingNotFoundException
e) {
/platform_testing/tests/functional/settingstests/src/com/android/settings/functional/
MainSettingsLargeTests.java
24
import android.provider.Settings.
SettingNotFoundException
;
SettingsHelper.java
8
import android.provider.Settings.
SettingNotFoundException
;
129
private int getIntSetting(SettingsType type, String sName) throws
SettingNotFoundException
{
BluetoothNetworkSettingsTests.java
27
import android.provider.Settings.
SettingNotFoundException
;
/cts/tests/tests/text/src/android/text/method/cts/
PasswordTransformationMethodTest.java
24
import android.provider.Settings.
SettingNotFoundException
;
248
} 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) {
/platform_testing/libraries/settings-app-helper/src/android/platform/test/helpers/
SettingsHelperImpl.java
24
import android.provider.Settings.
SettingNotFoundException
;
207
private int getIntSetting(SettingsType type, String sName) throws
SettingNotFoundException
{
/frameworks/base/core/java/android/provider/
Settings.java
[
all
...]
/cts/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/
CreateAndManageUserTest.java
92
} catch (Settings.
SettingNotFoundException
e) {
/frameworks/base/core/java/android/nfc/cardemulation/
CardEmulation.java
32
import android.provider.Settings.
SettingNotFoundException
;
270
} catch (
SettingNotFoundException
e) {
/packages/apps/Settings/src/com/android/settings/
DateTimeSettingsSetupWizard.java
27
import android.provider.Settings.
SettingNotFoundException
;
293
} catch (
SettingNotFoundException
e) {
303
} catch (
SettingNotFoundException
e) {
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
WifiScannerFacade.java
50
import android.provider.Settings.
SettingNotFoundException
;
549
throws
SettingNotFoundException
{
562
public Boolean wifiScannerIsAlwaysAvailable() throws
SettingNotFoundException
{
Completed in 527 milliseconds
1
2
3