Home | History | Annotate | Download | only in testing

Lines Matching refs:paramIndex

191    * paramIndex} is null.  If this parameter is marked {@link Nullable}, this
198 int paramIndex) throws Exception {
215 }, paramIndex, method.getDeclaringClass());
221 * paramIndex} is null. If this parameter is marked {@link Nullable}, this
225 int paramIndex) throws Exception {
239 }, paramIndex, ctor.getDeclaringClass());
245 * paramIndex} is null. If this parameter is marked {@link Nullable}, this
252 int paramIndex, Class<?> testedClass) throws Exception {
253 if (parameterIsPrimitiveOrNullable(func, paramIndex)) {
256 Object[] params = buildParamList(func, paramIndex);
275 Functor func, int paramIndex) {
276 if (func.getParameterTypes()[paramIndex].isPrimitive()) {
279 Annotation[] annotations = func.getParameterAnnotations()[paramIndex];