Searched refs:fMethod (Results 1 – 6 of 6) sorted by relevance
19 final Method fMethod; field in FrameworkMethod25 fMethod= method; in FrameworkMethod()32 return fMethod; in getMethod()45 return fMethod.invoke(target, params); in invokeExplosively()54 return fMethod.getName();68 if (fMethod.getParameterTypes().length != 0)69 errors.add(new Exception("Method " + fMethod.getName() + " should have no parameters"));82 if (Modifier.isStatic(fMethod.getModifiers()) != isStatic) {84 errors.add(new Exception("Method " + fMethod.getName() + "() " + state + " be static"));86 if (!Modifier.isPublic(fMethod.getDeclaringClass().getModifiers()))[all …]
12 private final Method fMethod; field in NoGenericTypeParametersValidator15 this.fMethod = method; in NoGenericTypeParametersValidator()19 for (Type each : fMethod.getGenericParameterTypes()) in validate()25 errors.add(new Exception("Method " + fMethod.getName() in validateNoTypeParameterOnType()
21 private final Method fMethod; field in TestMethod25 fMethod= method; in TestMethod()30 return fMethod.getAnnotation(Ignore.class) != null; in isIgnored()34 Test annotation= fMethod.getAnnotation(Test.class); in getTimeout()42 Test annotation= fMethod.getAnnotation(Test.class); in getExpectedException()66 fMethod.invoke(test); in invoke()
25 private final FrameworkMethod fMethod; field in AllMembersSupplier.MethodParameterValue28 fMethod= dataPointMethod; in MethodParameterValue()34 return fMethod.invokeExplosively(null); in getValue()49 return fMethod.getName(); in getDescription()
37 CtMethod fMethod = cc.getDeclaredMethod("f"); in main()38 CtMethod gMethod = CtNewMethod.copy(fMethod, "g", cc, null); in main()
119 SkBitmapScaler::ResizeMethod fMethod; member in PixmapScalerBench124 PixmapScalerBench(SkBitmapScaler::ResizeMethod method, const char suffix[]) : fMethod(method) { in PixmapScalerBench()150 SkBitmapScaler::Resize(dst, src, fMethod); in onDraw()