HomeSort by relevance Sort by last modified time
    Searched defs:RoomSQLiteQuery (Results 1 - 2 of 2) sorted by null

  /frameworks/support/room/runtime/src/test/java/androidx/room/
RoomSQLiteQueryTest.java 41 RoomSQLiteQuery.sQueryPool.clear();
46 RoomSQLiteQuery query = RoomSQLiteQuery.acquire("abc", 3);
57 RoomSQLiteQuery query = RoomSQLiteQuery.acquire("abc", 3);
59 assertThat(RoomSQLiteQuery.acquire("blah", 3), sameInstance(query));
64 RoomSQLiteQuery query = RoomSQLiteQuery.acquire("abc", 3);
65 assertThat(RoomSQLiteQuery.acquire("fda", 3), not(sameInstance(query)));
70 RoomSQLiteQuery query = RoomSQLiteQuery.acquire("abc", 6)
    [all...]
  /frameworks/support/room/runtime/src/main/java/androidx/room/
RoomSQLiteQuery.java 42 public class RoomSQLiteQuery implements SupportSQLiteQuery, SupportSQLiteProgram {
79 static final TreeMap<Integer, RoomSQLiteQuery> sQueryPool = new TreeMap<>();
82 * Copies the given SupportSQLiteQuery and converts it into RoomSQLiteQuery.
87 public static RoomSQLiteQuery copyFrom(SupportSQLiteQuery supportSQLiteQuery) {
88 final RoomSQLiteQuery query = RoomSQLiteQuery.acquire(
131 * Returns a new RoomSQLiteQuery that can accept the given number of arguments and holds the
136 * @return A RoomSQLiteQuery that holds the given query and has space for the given number of
140 public static RoomSQLiteQuery acquire(String query, int argumentCount) {
142 final Map.Entry<Integer, RoomSQLiteQuery> entry
    [all...]

Completed in 62 milliseconds