Searched defs:RoomSQLiteQuery (Results 1 - 1 of 1) sorted by relevance

/frameworks/support/room/runtime/src/main/java/android/arch/persistence/room/
H A DRoomSQLiteQuery.java42 public class RoomSQLiteQuery implements SupportSQLiteQuery, SupportSQLiteProgram { class in inherits:SupportSQLiteQuery,SupportSQLiteProgram
79 static final TreeMap<Integer, RoomSQLiteQuery> sQueryPool = new TreeMap<>();
82 * Returns a new RoomSQLiteQuery that can accept the given number of arguments and holds the
87 * @return A RoomSQLiteQuery that holds the given query and has space for the given number of
91 public static RoomSQLiteQuery acquire(String query, int argumentCount) {
93 final Map.Entry<Integer, RoomSQLiteQuery> entry =
97 final RoomSQLiteQuery sqliteQuery = entry.getValue();
102 RoomSQLiteQuery sqLiteQuery = new RoomSQLiteQuery(argumentCount);
107 private RoomSQLiteQuery(in method in class:RoomSQLiteQuery
[all...]

Completed in 63 milliseconds