Home | History | Annotate | Download | only in room

Lines Matching defs:RoomSQLiteQuery

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 =
146 final RoomSQLiteQuery sqliteQuery = entry.getValue();
151 RoomSQLiteQuery sqLiteQuery = new RoomSQLiteQuery(argumentCount);
156 private RoomSQLiteQuery(int capacity) {
267 * Copies arguments from another RoomSQLiteQuery into this query.
271 public void copyArgumentsFrom(RoomSQLiteQuery other) {