OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SQLiteDoneException
(Results
1 - 7
of
7
) sorted by null
/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-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.
/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
20
import android.database.sqlite.
SQLiteDoneException
;
754
case SQLiteConstants.SQLITE_DONE: return new
SQLiteDoneException
(message);
Completed in 150 milliseconds