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.java132 .constructorArgValues("hello") in testConstruction_SucceedsIfCorrectArgumentsProvided()
478 .constructorArgValues(true) in testHardToConstruct_WorksIfYouSpecifyTheConstructorCorrectly()
486 .constructorArgValues(new Object[] { null }) in testHardToConstruct_EvenWorksWhenArgsAreAmbiguous()
493 .constructorArgValues(true) in testHardToConstruct_DoesNotInferTypesFromValues()
597 .constructorArgValues("asdf", true) in testInvalidConstructorSpecification()
718 .constructorArgValues() in testCachingWithMultipleConstructors()
724 .constructorArgValues(2) in testCachingWithMultipleConstructors()
732 .constructorArgValues(3) in testCachingWithMultipleConstructors()
/external/dexmaker/dexmaker/src/main/java/com/android/dx/stock/
DProxyBuilder.java143 private Object[] constructorArgValues = new Object[0]; field in ProxyBuilder
196 public ProxyBuilder<T> constructorArgValues(Object... constructorArgValues) { in constructorArgValues() argument
197 this.constructorArgValues = constructorArgValues; in constructorArgValues()
234 check(constructorArgTypes.length == constructorArgValues.length, in build()
246 result = constructor.newInstance(constructorArgValues); in build()