Searched defs:constructorParameter (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/security/
H A DProvider.java1053 * @param constructorParameter
1063 * {@code constructorParameter}.
1065 public Object newInstance(Object constructorParameter) throws NoSuchAlgorithmException { argument
1081 if (constructorParameter == null) {
1084 return newInstanceWithParameter(constructorParameter,
1085 constructorParameter.getClass());
1091 if (constructorParameter == null) {
1101 if (!expectedClass.isAssignableFrom(constructorParameter.getClass())) {
1104 + constructorParameter.getClass().getName());
1106 return newInstanceWithParameter(constructorParameter, expectedClas
1109 newInstanceWithParameter(Object constructorParameter, Class<?> parameterClass) argument
[all...]

Completed in 81 milliseconds