HomeSort by relevance Sort by last modified time
    Searched refs:getMethodName (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
AbstractListIndexOfTester.java 43 protected abstract String getMethodName();
47 assertEquals(getMethodName() + "(firstElement) should return 0",
52 assertEquals(getMethodName() + "(notPresent) should return -1",
58 assertEquals(getMethodName() + "(nullNotPresent) should return -1",
66 getMethodName() + "(nullNotPresent) should return -1 or throw",
76 assertEquals(getMethodName() + "(notPresent) should return -1",
84 assertEquals(getMethodName() + "(null) should return " + getNullLocation(),
90 assertEquals(getMethodName() + "(wrongType) should return -1 or throw",
ListIndexOfTester.java 40 @Override protected String getMethodName() {
ListLastIndexOfTester.java 40 @Override protected String getMethodName() {
  /external/junit/src/org/junit/rules/
TestName.java 15 * assertEquals("testA", name.getMethodName());
20 * assertEquals("testB", name.getMethodName());
30 fName= d.getMethodName();
36 public String getMethodName() {
  /external/javassist/src/main/javassist/
CtPrimitiveType.java 25 private String getMethodName;
37 getMethodName = methodName;
80 public String getGetMethodName() { return getMethodName; }
  /external/chromium_org/testing/android/junit/java/src/org/chromium/testing/local/
GtestLogger.java 28 mOutputStream.format("[ RUN ] %s.%s", test.getClassName(), test.getMethodName());
47 test.getClassName(), test.getMethodName(), elapsedTimeMillis);
50 test.getClassName(), test.getMethodName(), elapsedTimeMillis);
101 mOutputStream.format("[ FAILED ] %s.%s", d.getClassName(), d.getMethodName());
GtestFilter.java 70 if (description.getMethodName() == null) return true;
72 String gtestName = description.getClassName() + "." + description.getMethodName();
  /external/mockito/src/org/mockito/internal/stubbing/answers/
AnswersValidator.java 65 reporter.cannotStubVoidMethodWithAReturnValue(methodInfo.getMethodName());
69 reporter.wrongTypeOfReturnValue(methodInfo.printMethodReturnType(), "null", methodInfo.getMethodName());
73 reporter.wrongTypeOfReturnValue(methodInfo.printMethodReturnType(), answer.printReturnType(), methodInfo.getMethodName());
MethodInfo.java 51 public String getMethodName() {
  /external/javassist/src/main/javassist/expr/
ConstructorCall.java 42 public String getMethodName() {
MethodCall.java 104 public String getMethodName() {
114 return getCtClass().getMethod(getMethodName(), getSignature());
  /external/javassist/sample/reflect/
VerboseMetaobj.java 23 System.out.println("** trap: " + getMethodName(identifier) + "() in "
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
SensorCtsTestActivity.java 189 getTestLogger().logTestStart(description.getMethodName());
194 getTestLogger().logTestPass(description.getMethodName(), null /* testSummary */);
201 .logTestFail(failure.getDescription().getMethodName(), failure.toString());
207 .logTestFail(failure.getDescription().getMethodName(), failure.toString());
212 getTestLogger().logTestSkip(description.getMethodName(), description.toString());
  /cts/tools/junit/src/com/android/cts/junit/
SingleJUnitTestRunListener.java 49 description.getClassName(), description.getMethodName()));
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
ExceptionExtensions.cs 60 public static string getMethodName(StackFrame frame) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
ExceptionExtensions.cs 65 public static string getMethodName( this StackFrame frame )
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
FramesTest.java 89 methodName = getMethodName(frame.loc.classID, frame.loc.methodID);
143 methodName = getMethodName(frame.loc.classID, frame.loc.methodID);
198 methodName = getMethodName(frame.loc.classID, frame.loc.methodID);
259 methodName = getMethodName(frame.loc.classID, frame.loc.methodID);
285 methodName = getMethodName(frame.loc.classID, frame.loc.methodID);
354 methodName = getMethodName(frame.loc.classID, frame.loc.methodID);
382 methodName = getMethodName(frame.loc.classID, frame.loc.methodID);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractFutureTest.java 145 ASSERT.that(e.getStackTrace()[index - 1].getMethodName()).isEqualTo("get");
154 && element.getMethodName().equals(method)) {
  /art/test/044-proxy/src/
BasicTest.java 264 if (ste.getMethodName().equals("getTrace")) {
265 System.out.println(ste.getClassName() + "." + ste.getMethodName() + " " +
278 if (ste.getMethodName().equals("getTrace")) {
279 System.out.println(ste.getClassName() + "." + ste.getMethodName() + " " +
  /cts/libs/deviceutil/src/android/cts/util/
MediaUtils.java 54 String methodName = stack[index].getMethodName();
88 && stack[index + depth].getMethodName().equals("invoke")
100 if (stack[index + depth].getMethodName().equals("runMethod")) {
  /cts/common/util/src/com/android/compatibility/common/util/
ReportLog.java 62 "%s#%s:%d", e.getClassName(), e.getMethodName(), e.getLineNumber());
  /external/javassist/src/main/javassist/tools/reflect/
Metaobject.java 122 public final String getMethodName(int identifier) {
  /external/junit/src/org/junit/runner/
Description.java 228 public String getMethodName() {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/DebuggerOnDemand/
LaunchedDebugger.java 217 methodName = getMethodName(frameInfos[i].location.classID,
227 protected String getMethodName(long classID, long methodID) {
  /external/javassist/src/main/javassist/convert/
TransformAccessArrayField.java 128 String methodName = getMethodName(opcode);
165 private String getMethodName(int opcode) {

Completed in 952 milliseconds

1 2 3