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

1 2

  /frameworks/base/core/java/android/database/sqlite/
SQLiteDoneException.java 25 public class SQLiteDoneException extends SQLiteException {
26 public SQLiteDoneException() {}
28 public SQLiteDoneException(String error) {
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteDoneExceptionTest.java 19 import android.database.sqlite.SQLiteDoneException;
24 new SQLiteDoneException();
26 new SQLiteDoneException("error");
SQLiteStatementTest.java 26 import android.database.sqlite.SQLiteDoneException;
182 fail("There should be a SQLiteDoneException thrown out.");
183 } catch (SQLiteDoneException e) {
206 fail("There should be a SQLiteDoneException thrown out.");
207 } catch (SQLiteDoneException e) {
267 SQLiteDoneException expectedException = null;
270 } catch (SQLiteDoneException ex) {
278 assertNotNull("Should have thrown SQLiteDoneException", expectedException);
288 SQLiteDoneException expectedException = null;
291 } catch (SQLiteDoneException ex)
    [all...]
SQLiteProgramTest.java 23 import android.database.sqlite.SQLiteDoneException;
76 } catch (SQLiteDoneException expected) {
85 } catch (SQLiteDoneException expected) {
DatabaseStatementTest.java 23 import android.database.sqlite.SQLiteDoneException;
109 } catch (SQLiteDoneException e) {
121 } catch (SQLiteDoneException e) {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteStatement.java 4 import android.database.sqlite.SQLiteDoneException;
78 throw new SQLiteDoneException("No data is available");
81 throw new SQLiteDoneException("ResultSet closed,(probably, no data available)");
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ProfileAggregator.java 19 import android.database.sqlite.SQLiteDoneException;
87 } catch (SQLiteDoneException e) {
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
SQLiteStatementTest.java 4 import android.database.sqlite.SQLiteDoneException;
89 @Test(expected = SQLiteDoneException.class)
91 //throw SQLiteDOneException if no rows returned.
97 @Test(expected = SQLiteDoneException.class)
99 //throw SQLiteDOneException if no rows returned.
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
SQLiteStatementTest.java 8 import android.database.sqlite.SQLiteDoneException;
132 @Test(expected = SQLiteDoneException.class)
134 //throw SQLiteDOneException if no rows returned.
140 @Test(expected = SQLiteDoneException.class)
142 //throw SQLiteDOneException if no rows returned.
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseStatementTest.java 23 import android.database.sqlite.SQLiteDoneException;
108 } catch (SQLiteDoneException e) {
120 } catch (SQLiteDoneException e) {
  /cts/tests/tests/database/src/android/database/cts/
DatabaseUtilsTest.java 27 import android.database.sqlite.SQLiteDoneException;
456 fail("should throw SQLiteDoneException");
457 } catch (SQLiteDoneException e) {
473 fail("should throw SQLiteDoneException");
474 } catch (SQLiteDoneException e) {
571 fail("should throw SQLiteDoneException");
572 } catch (SQLiteDoneException e) {
584 fail("should throw SQLiteDoneException");
585 } catch (SQLiteDoneException e) {
609 fail("should throw SQLiteDoneException");
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowSQLiteConnection.java 19 import android.database.sqlite.SQLiteDoneException;
753 case SQLiteConstants.SQLITE_DONE: return new SQLiteDoneException(message);
  /packages/apps/Email/provider_src/com/android/email/provider/
DBHelper.java 26 import android.database.sqlite.SQLiteDoneException;
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
LegacyApiSupport.java 28 import android.database.sqlite.SQLiteDoneException;
    [all...]
ContactsDatabaseHelper.java 40 import android.database.sqlite.SQLiteDoneException;
    [all...]
ContactsProvider2.java 50 import android.database.sqlite.SQLiteDoneException;
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
BugleDatabaseOperations.java 22 import android.database.sqlite.SQLiteDoneException;
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDatabaseHelper.java 27 import android.database.sqlite.SQLiteDoneException;
    [all...]
  /frameworks/base/config/
preloaded-classes     [all...]
  /external/robolectric/v1/lib/main/
android.jar 
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 

Completed in 536 milliseconds

1 2