Home
last modified time | relevance | path

Searched refs:fMethod (Results 1 – 6 of 6) sorted by relevance

/external/junit/src/org/junit/runners/model/
DFrameworkMethod.java19 final Method fMethod; field in FrameworkMethod
25 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 …]
DNoGenericTypeParametersValidator.java12 private final Method fMethod; field in NoGenericTypeParametersValidator
15 this.fMethod = method; in NoGenericTypeParametersValidator()
19 for (Type each : fMethod.getGenericParameterTypes()) in validate()
25 errors.add(new Exception("Method " + fMethod.getName() in validateNoTypeParameterOnType()
/external/junit/src/org/junit/internal/runners/
DTestMethod.java21 private final Method fMethod; field in TestMethod
25 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()
/external/junit/src/org/junit/experimental/theories/internal/
DAllMembersSupplier.java25 private final FrameworkMethod fMethod; field in AllMembersSupplier.MethodParameterValue
28 fMethod= dataPointMethod; in MethodParameterValue()
34 return fMethod.invokeExplosively(null); in getValue()
49 return fMethod.getName(); in getDescription()
/external/javassist/sample/
DTest.java37 CtMethod fMethod = cc.getDeclaredMethod("f"); in main()
38 CtMethod gMethod = CtNewMethod.copy(fMethod, "g", cc, null); in main()
/external/skia/bench/
DBitmapScaleBench.cpp119 SkBitmapScaler::ResizeMethod fMethod; member in PixmapScalerBench
124 PixmapScalerBench(SkBitmapScaler::ResizeMethod method, const char suffix[]) : fMethod(method) { in PixmapScalerBench()
150 SkBitmapScaler::Resize(dst, src, fMethod); in onDraw()