HomeSort by relevance Sort by last modified time
    Searched refs:SupportSQLiteProgram (Results 1 - 8 of 8) sorted by null

  /frameworks/support/persistence/db/src/main/java/androidx/sqlite/db/
SupportSQLiteQuery.java 37 void bindTo(SupportSQLiteProgram statement);
SupportSQLiteStatement.java 23 public interface SupportSQLiteStatement extends SupportSQLiteProgram {
SupportSQLiteProgram.java 26 public interface SupportSQLiteProgram extends Closeable {
SimpleSQLiteQuery.java 56 public void bindTo(SupportSQLiteProgram statement) {
71 public static void bind(SupportSQLiteProgram statement, Object[] bindArgs) {
82 private static void bind(SupportSQLiteProgram statement, int index, Object arg) {
  /frameworks/support/persistence/db/src/test/java/androidx/sqlite/db/
SimpleSQLiteQueryTestTest.java 41 SupportSQLiteProgram program = Mockito.mock(SupportSQLiteProgram.class);
51 SupportSQLiteProgram program = Mockito.mock(SupportSQLiteProgram.class);
  /frameworks/support/persistence/db-framework/src/main/java/androidx/sqlite/db/framework/
FrameworkSQLiteProgram.java 21 import androidx.sqlite.db.SupportSQLiteProgram;
24 * An wrapper around {@link SQLiteProgram} to implement {@link SupportSQLiteProgram} API.
26 class FrameworkSQLiteProgram implements SupportSQLiteProgram {
  /frameworks/support/room/runtime/src/test/java/androidx/room/
RoomSQLiteQueryTest.java 26 import androidx.sqlite.db.SupportSQLiteProgram;
81 SupportSQLiteProgram program = mock(SupportSQLiteProgram.class);
  /frameworks/support/room/runtime/src/main/java/androidx/room/
RoomSQLiteQuery.java 22 import androidx.sqlite.db.SupportSQLiteProgram;
42 public class RoomSQLiteQuery implements SupportSQLiteQuery, SupportSQLiteProgram {
91 supportSQLiteQuery.bindTo(new SupportSQLiteProgram() {
210 public void bindTo(SupportSQLiteProgram program) {

Completed in 89 milliseconds