Home
last modified time | relevance | path

Searched refs:targetTypes (Results 1 – 2 of 2) sorted by relevance

/frameworks/support/transition/src/androidTest/java/androidx/transition/
DTransitionTest.java166 List<Class> targetTypes = transition.getTargetTypes(); in testTargetType() local
167 assertNotNull(targetTypes); in testTargetType()
168 assertThat(targetTypes.size(), is(2)); in testTargetType()
169 assertThat(targetTypes, hasItem(Button.class)); in testTargetType()
170 assertThat(targetTypes, hasItem(ImageView.class)); in testTargetType()
172 assertThat(targetTypes.size(), is(1)); in testTargetType()
173 assertThat(targetTypes, not(hasItem(Button.class))); in testTargetType()
174 assertThat(targetTypes, hasItem(ImageView.class)); in testTargetType()
/frameworks/support/room/compiler/src/main/kotlin/androidx/room/solver/
DTypeAdapterStore.kt168 val targetTypes = targetTypeMirrorsFor(affinity) in <lambda>() constant
169 val binder = findTypeConverter(input, targetTypes) ?: return null in <lambda>()
202 val targetTypes = targetTypeMirrorsFor(affinity) in <lambda>() constant
203 val converter = findTypeConverter(targetTypes, output) ?: return null in <lambda>()
242 val targetTypes = targetTypeMirrorsFor(affinity) in <lambda>() constant
243 val intoStatement = findTypeConverter(out, targetTypes) ?: return null in <lambda>()