Home
last modified time | relevance | path

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

/aosp_15_r20/external/dagger2/javatests/dagger/functional/multibindings/
H A DComplexMapKeysInDifferentOrderTest.java38 @interface ComplexMapKey { annotation in ComplexMapKeysInDifferentOrderTest
47 @ComplexMapKey(i = 1, j = 2)
54 @ComplexMapKey(j = 4, i = 5)
62 Map<ComplexMapKey, Integer> map(); in map()
67 Map<ComplexMapKey, Integer> map = in test()
74 static ComplexMapKey mapKey(int i, int j) { in mapKey()
/aosp_15_r20/external/dagger2/javatests/dagger/functional/kotlinsrc/multibindings/
H A DComplexMapKeysInDifferentOrderTest.kt33 @MapKey(unwrapValue = false) annotation class ComplexMapKey(val i: Int, val j: Int) class in dagger.functional.kotlinsrc.multibindings.ComplexMapKeysInDifferentOrderTest
38 @Provides @IntoMap @ComplexMapKey(i = 1, j = 2) fun inOrder(): Int = 3 in inOrder()
40 @Provides @IntoMap @ComplexMapKey(j = 4, i = 5) fun backwardsOrder(): Int = 6 in inOrder()
46 fun map(): Map<ComplexMapKey, Int> in inOrder()
61 fun mapKey(i: Int, j: Int): ComplexMapKey { in mapKey()