Home
last modified time | relevance | path

Searched defs:selectAll (Results 1 – 2 of 2) sorted by relevance

/sqlite/integration-tests/inspection-sqldelight-testapp/src/main/generated/androidx/sqlite/inspection/test/
DTestEntityQueries.kt10 fun <T : Any> selectAll(mapper: (id: Long, value: String) -> T): Query<T> method
12 fun selectAll(): Query<TestEntity> method
/sqlite/integration-tests/inspection-sqldelight-testapp/src/main/generated/androidx/sqlite/inspection/sqldeligttestapp/app/
DDatabaseImpl.kt67 internal val selectAll: MutableList<Query<*>> = copyOnWriteList() constant in TestEntityQueriesImpl
69 override fun <T : Any> selectAll(mapper: (id: Long, value: String) -> T): Query<T> = in selectAll() method in TestEntityQueriesImpl
81 override fun selectAll(): Query<TestEntity> = selectAll(TestEntity::Impl) in selectAll() method in TestEntityQueriesImpl