Home
last modified time | relevance | path

Searched refs:selectAll (Results 1 – 4 of 4) sorted by relevance

/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
72 selectAll, in selectAll()
81 override fun selectAll(): Query<TestEntity> = selectAll(TestEntity::Impl) in selectAll() method in TestEntityQueriesImpl
97 notifyQueries(-2020431062, { database.testEntityQueries.selectAll }) in selectAll()
/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/sqldelight/androidx/sqlite/inspection/test/
DTestEntity.sq6 selectAll:
/sqlite/integration-tests/inspection-sqldelight-testapp/src/androidTest/java/androidx/sqlite/inspection/
DSqlDelightInvalidationTest.kt80 val query = dao.selectAll() in test()