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

1 2 3 4

  /external/r8/src/test/examples/classmerging/
GenericAbstractClass.java 10 public T otherMethod() {
GenericAbstractClassImpl.java 14 public String otherMethod() {
15 return "otherMethod";
Test.java 26 System.out.println(clazz.otherMethod());
  /external/mockito/src/test/java/org/mockito/internal/creation/
DelegatingMethodTest.java 14 private Method someMethod, otherMethod;
20 otherMethod = Something.class.getMethod("otherMethod", Object.class);
26 DelegatingMethod notEqual = new DelegatingMethod(otherMethod);
43 assertFalse(delegatingMethod.equals(otherMethod));
55 Object otherMethod(Object param);
  /external/mockito/src/test/java/org/mockitousage/bugs/
VerifyingWithAnExtraCallToADifferentMockTest.java 26 when(mock.otherMethod()).thenReturn("foo");
32 verify(mockTwo).simpleMethod(mock.otherMethod());
34 verify(mockTwo, never()).simpleMethod(mock.otherMethod());
  /external/mockito/src/test/java/org/mockitousage/stacktrace/
ModellingDescriptiveMessagesTest.java 43 verify(mock).otherMethod();
48 mock.otherMethod();
76 mock.otherMethod();
78 inOrder.verify(mock).otherMethod();
85 mock.otherMethod();
86 mock.otherMethod();
90 inOrder.verify(mock, times(3)).otherMethod();
95 mock.otherMethod();
96 mock.otherMethod();
99 inOrder.verify(mock, times(1)).otherMethod();
    [all...]
  /external/mockito/src/test/java/org/mockitousage/verification/
FindingRedundantInvocationsInOrderTest.java 55 mock.otherMethod();
60 inOrder.verify(mock).otherMethod();
69 mock.otherMethod();
74 inOrder.verify(mock).otherMethod();
83 mock.otherMethod();
99 mock.otherMethod();
OrdinaryVerificationPrintsAllInteractionsTest.java 29 verify(mock).otherMethod(); //verify 1st interaction
75 mock.otherMethod();
CustomVerificationTest.java 33 verify(mock, ignoreParametersUsingOldApi()).otherMethod();
DescriptiveMessagesWhenVerificationFailsTest.java 342 mock.otherMethod();
  /external/mockito/src/test/java/org/mockitousage/junitrule/
StrictJUnitRuleTest.java 59 mock.otherMethod();
108 mock.otherMethod(); //ok, different method
122 mock.otherMethod();
125 verify(mock).otherMethod();
147 given(mock.otherMethod()).willReturn("foo"); //used and should not be reported
150 mock.otherMethod();
  /external/mockito/src/test/java/org/mockitousage/stubbing/
StrictStubbingTest.java 37 mock.otherMethod();
43 mock.otherMethod();
47 verify(mock).otherMethod();
StubbingWarningsTest.java 25 mock.otherMethod();
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstBaseMethodRef.java 96 CstBaseMethodRef otherMethod = (CstBaseMethodRef) other;
97 return prototype.compareTo(otherMethod.prototype);
  /dalvik/dx/src/com/android/dx/rop/cst/
CstBaseMethodRef.java 105 CstBaseMethodRef otherMethod = (CstBaseMethodRef) other;
106 return prototype.compareTo(otherMethod.prototype);
  /external/mockito/src/test/java/org/mockitousage/junitrunner/
VerboseMockitoRunnerTest.java 37 mock.otherMethod();
57 when(mock.otherMethod()).thenReturn("foo");
ModellingVerboseMockitoTest.java 36 when(mock.otherMethod()).thenReturn("foo");
  /external/mockito/src/test/java/org/mockitousage/debugging/
InvocationsPrinterTest.java 29 " 2. mock.otherMethod();\n" +
53 " 2. mock.otherMethod();\n" +
67 " 2. mock.otherMethod();\n" +
75 mock.otherMethod();
  /external/mockito/src/test/java/org/mockito/internal/junit/
ArgMismatchFinderTest.java 46 mock1.otherMethod();
  /external/mockito/src/test/java/org/mockito/internal/util/
DefaultMockingDetailsTest.java 72 mock.otherMethod();
76 assertEquals("[mock.simpleMethod(10);, mock.otherMethod();]", mockingDetails(mock).getInvocations().toString());
147 when(mock.otherMethod()).thenReturn("2");
154 assertEquals("[mock.simpleMethod(1); stubbed with: [Returns: 1], mock.otherMethod(); stubbed with: [Returns: 2]]", stubbings.toString());
  /art/runtime/native/
java_lang_reflect_Executable.cc 201 jobject otherMethod) {
204 ArtMethod* other_method = ArtMethod::FromReflectedMethod(soa, otherMethod);
  /external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
FactoryProvider2.java 337 for (Method otherMethod : otherMethods.get(defaultMethod.getName())) {
338 if (dataSoFar.containsKey(otherMethod) && isCompatible(defaultMethod, otherMethod)) {
346 assistDataBuilder.put(defaultMethod, dataSoFar.get(otherMethod));
    [all...]
  /external/mockito/src/test/java/org/mockitousage/
IMethods.java 113 String otherMethod();
MethodsImpl.java 212 public String otherMethod() {
  /prebuilts/tools/common/m2/repository/com/github/frankiesardo/auto-parcel-processor/0.3.1/
auto-parcel-processor-0.3.1.jar 

Completed in 556 milliseconds

1 2 3 4