Home
last modified time | relevance | path

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

/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/stock/
DProxyBuilderTest.java126 .constructorArgValues("hello") in testConstruction_SucceedsIfCorrectArgumentsProvided()
453 .constructorArgValues(true) in testHardToConstruct_WorksIfYouSpecifyTheConstructorCorrectly()
461 .constructorArgValues(new Object[] { null }) in testHardToConstruct_EvenWorksWhenArgsAreAmbiguous()
468 .constructorArgValues(true) in testHardToConstruct_DoesNotInferTypesFromValues()
570 .constructorArgValues("asdf", true) in testInvalidConstructorSpecification()
675 .constructorArgValues() in testCachingWithMultipleConstructors()
681 .constructorArgValues(2) in testCachingWithMultipleConstructors()
689 .constructorArgValues(3) in testCachingWithMultipleConstructors()
/external/dexmaker/dexmaker/src/main/java/com/android/dx/stock/
DProxyBuilder.java141 private Object[] constructorArgValues = new Object[0]; field in ProxyBuilder
188 public ProxyBuilder<T> constructorArgValues(Object... constructorArgValues) { in constructorArgValues() argument
189 this.constructorArgValues = constructorArgValues; in constructorArgValues()
211 check(constructorArgTypes.length == constructorArgValues.length, in build()
223 result = constructor.newInstance(constructorArgValues); in build()