HomeSort by relevance Sort by last modified time
    Searched full:getmethodname (Results 1 - 25 of 159) sorted by null

1 2 3 4 5 6 7

  /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/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/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/sample/reflect/
VerboseMetaobj.java 23 System.out.println("** trap: " + getMethodName(identifier) + "() in "
  /libcore/luni/src/test/java/libcore/java/lang/
OldStackTraceElementTest.java 53 ste1.getMethodName(),
59 ste1.getMethodName(), ste2.getMethodName());
68 ste2.getMethodName(),
86 ste2.getMethodName(),
102 ste1.getMethodName(),
154 e.getStackTrace()[0].getMethodName());
157 e.getStackTrace()[1].getMethodName());
169 ste1.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();
  /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());
  /libcore/luni/src/main/java/java/lang/
StackTraceElement.java 113 if (!getMethodName().equals(castObj.getMethodName())) {
175 public String getMethodName() {
194 * Indicates if the method name returned by {@link #getMethodName()} is
210 buf.append(getMethodName());
  /external/javassist/src/main/javassist/
CtPrimitiveType.java 25 private String getMethodName;
37 getMethodName = methodName;
80 public String getGetMethodName() { return getMethodName; }
  /frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/
TestDelegates.java 132 getMethodName(delegateMethod),
158 String name = getMethodName(originalMethod, parameters);
180 getMethodName(delegateMethod)));
186 private String getMethodName(Method method) {
187 return getMethodName(method, method.getParameterTypes());
190 private String getMethodName(Method method, Class<?>[] parameters) {
  /art/runtime/mirror/
stack_trace_element.h 38 String* GetMethodName() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
  /cts/tools/junit/src/com/android/cts/junit/
SingleJUnitTestRunListener.java 49 description.getClassName(), description.getMethodName()));
  /external/javassist/src/main/javassist/expr/
ConstructorCall.java 42 public String getMethodName() {
  /frameworks/webview/chromium/java/com/android/webview/chromium/
UnimplementedWebViewApi.java 48 Log.w(TAG, "Unimplemented WebView method " + unimplementedMethod.getMethodName() +
  /art/compiler/driver/
compiler_driver_test.cc 127 << " " << dex->GetMethodName(dex->GetMethodId(i));
131 << " " << dex->GetMethodName(dex->GetMethodId(i));
136 << " " << dex->GetMethodName(dex->GetMethodId(i));
  /art/runtime/
method_helper.cc 80 const char* mid_name = dexfile->GetMethodName(mid);
113 DCHECK_STREQ(dexfile->GetMethodName(mid), other_dexfile.GetMethodName(name_and_sig_mid));
  /frameworks/base/core/java/android/ddm/
DdmHandleThread.java 153 bufferSize += 4 + elem.getMethodName().length() * 2;
167 out.putInt(elem.getMethodName().length());
168 putString(out, elem.getMethodName());
  /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);
  /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() + " " +
  /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 )

Completed in 947 milliseconds

1 2 3 4 5 6 7