Searched refs:entity1 (Results 1 - 2 of 2) sorted by relevance

/frameworks/support/room/compiler/src/test/kotlin/androidx/room/processor/
H A DDatabaseProcessorTest.kt322 val entity1 = JavaFileObjects.forSourceString("foo.bar.Entity1",
349 """, entity1, entity2) { _, _ ->
358 val entity1 = JavaFileObjects.forSourceString("foo.bar.Entity1",
375 """, entity1, COMMON.USER) { _, _ ->
383 val entity1 = JavaFileObjects.forSourceString("foo.bar.Entity1",
400 """, entity1, COMMON.USER) { _, _ ->
413 val entity1 = JavaFileObjects.forSourceString("foo.bar.Entity1",
443 """, entity1, entity2) { _, _ ->
449 val entity1 = JavaFileObjects.forSourceString("foo.bar.Entity1",
479 """, entity1, entity
[all...]
/frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
H A DQueryTransactionTest.java231 for (Entity1 entity1 : allEntities) {
232 assertThat(entity1.transactionId, is(expectedTransactionCount));
240 for (Entity1WithChildren entity1 : allEntities) {
241 assertThat(entity1.transactionId, is(expectedTransactionCount));
242 assertThat(entity1.children, notNullValue());
243 assertThat(entity1.children.isEmpty(), is(false));
244 for (Child child : entity1.children) {
363 void insert(Entity1 entity1); argument
366 void insert(Child entity1); argument

Completed in 599 milliseconds