Home
last modified time | relevance | path

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

/external/dagger2/javatests/dagger/functional/assisted/
DAssistedFactoryWithArrayTypesTest.java38 Foo create(Dep[] depArray); in create()
44 private final Dep[] depArray; field in AssistedFactoryWithArrayTypesTest.Foo
47 Foo(@Assisted Dep[] depArray) { in Foo()
54 Dep[] depArray = {new Dep(), new Dep()}; in testFooFactory() local
/external/dagger2/javatests/dagger/functional/kotlinsrc/assisted/
DAssistedFactoryWithArrayTypesTest.kt42 class Foo @AssistedInject constructor(@Assisted val depArray: Array<Dep>) constant in dagger.functional.kotlinsrc.assisted.AssistedFactoryWithArrayTypesTest.Foo
46 val depArray = arrayOf(Dep(), Dep()) in testFooFactory() constant