Home
last modified time | relevance | path

Searched refs:rawQuery (Results 1 – 13 of 13) sorted by relevance

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DSQLiteDatabaseTest.java130 … Cursor cursor = database.rawQuery("select second_column, first_column from table_name", null); in testInsertAndRawQuery()
159 … Cursor cursor = database.rawQuery("select second_column, first_column from table_name", null); in testInsertOrThrow()
169 …database.rawQuery("select second_column, first_column from rawtable WHERE `id` = ?", new String[]{… in testRawQueryThrowsIndex0NullException()
174 database.rawQuery("select second_column, first_column from rawtable", new String[]{null}); in testRawQueryThrowsIndex0NullException2()
179 …Cursor cursor = database.rawQuery("select second_column, first_column from rawtable WHERE `id` = ?… in testRawQueryCountWithOneArgument()
185 Cursor cursor = database.rawQuery("select second_column, first_column from rawtable", null); in testRawQueryCountWithNullArgs()
191 …Cursor cursor = database.rawQuery("select second_column, first_column from rawtable", new String[]… in testRawQueryCountWithEmptyArguments()
197 database.rawQuery("select second_column, first_column from rawtable", new String[]{"1"}); in shouldThrowWhenArgumentsDoNotMatchQuery()
350 Cursor cursor = database.rawQuery("SELECT COUNT(*) FROM table_name", null); in testExecSQL()
355 cursor = database.rawQuery("SELECT * FROM table_name", null); in testExecSQL()
[all …]
DSQLiteStatementTest.java54 Cursor dataCursor = database.rawQuery("SELECT COUNT(*) FROM `routine`", null); in testExecuteInsert()
59 dataCursor = database.rawQuery("SELECT `id`, `name` ,`lastUsed` FROM `routine`", null); in testExecuteInsert()
107 Cursor dataCursor = database.rawQuery("SELECT `name` FROM `routine`", null); in testExecuteUpdateDelete()
DShadowCursorAdapterTest.java41 curs = database.rawQuery(sql, null); in setUp()
85 adapter.changeCursor(database.rawQuery("SELECT * FROM table_name;", null)); in shouldNotErrorOnCursorChangeWhenNoFlagsAreSet()
DShadowSimpleCursorAdapterTest.java78 return database.rawQuery(sql, null); in setUpDatabase()
DShadowSQLiteConnectionTest.java86 Cursor cursor = db.rawQuery(sql, new String[0]); in simpleQueryForList()
DShadowMergeCursorTest.java64 Cursor cursor = database.rawQuery(selectSql, null); in setupTable()
DSQLiteCursorTest.java477 Cursor cursor = database.rawQuery(sql, null); in createCursor()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/introspect/
DIgnoredFieldPresentInCreatorProperty2001Test.java18 public Foo(@JsonProperty("query") String rawQuery) { in Foo() argument
19 query = rawQuery; in Foo()
/external/perfetto/ui/src/common/
Dengine.ts73 abstract rawQuery(rawQueryArgs: Uint8Array): Promise<Uint8Array>;
102 const respEncoded = await this.rawQuery(argsEncoded);
Dwasm_engine_proxy.ts108 rawQuery(rawQueryArgs: Uint8Array): Promise<Uint8Array> { method in WasmEngineProxy
Dhttp_rpc_engine.ts62 rawQuery(rawQueryArgs: Uint8Array): Promise<Uint8Array> {
/external/dokka/core/src/main/kotlin/Utilities/
DUri.kt31 child.rawQuery?.let { in <lambda>()
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
DEABProvider.java290 Cursor cursor = db.rawQuery(rawquery, null); in queryInternal()