Home
last modified time | relevance | path

Searched refs:returnedValue (Results 1 – 8 of 8) sorted by relevance

/external/mockito/src/main/java/org/mockito/internal/handler/
DNotifiedMethodInvocationReport.java18 private final Object returnedValue; field in NotifiedMethodInvocationReport
29 public NotifiedMethodInvocationReport(Invocation invocation, Object returnedValue) { in NotifiedMethodInvocationReport() argument
31 this.returnedValue = returnedValue; in NotifiedMethodInvocationReport()
44 this.returnedValue = null; in NotifiedMethodInvocationReport()
53 return returnedValue; in getReturnedValue()
76 areEqual(returnedValue, that.returnedValue) && in equals()
82 result = 31 * result + (returnedValue != null ? returnedValue.hashCode() : 0); in hashCode()
DInvocationNotifierHandler.java35 Object returnedValue = mockHandler.handle(invocation); in handle() local
36 notifyMethodCall(invocation, returnedValue); in handle()
37 return returnedValue; in handle()
/external/mockito/src/main/java/org/mockito/internal/stubbing/answers/
DDefaultAnswerValidator.java13 …public static void validateReturnValueFor(InvocationOnMock invocation, Object returnedValue) throw… in validateReturnValueFor() argument
15 if (returnedValue != null && !invocationInfo.isValidReturnType(returnedValue.getClass())) { in validateReturnValueFor()
19 returnedValue.getClass().getSimpleName(), in validateReturnValueFor()
/external/jsilver/src/com/google/clearsilver/jsilver/data/
DUniqueStack.java129 T returnedValue = null; in pop() local
136 returnedValue = firstObject; in pop()
139 returnedValue = objectStack.pollLast(); in pop()
140 objectsSet.remove(returnedValue); in pop()
142 return returnedValue; in pop()
/external/grpc-grpc-java/core/src/test/java/io/grpc/
DForwardingChannelBuilderTest.java71 Object returnedValue = method.invoke(testChannelBuilder, args); in allBuilderMethodsReturnThis() local
73 assertThat(returnedValue).isSameAs(testChannelBuilder); in allBuilderMethodsReturnThis()
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DMapInterfaceTest.java833 final V returnedValue = entry.setValue(valueToSet); in testEntrySetSetValue() local
834 assertEquals(oldValue, returnedValue); in testEntrySetSetValue()
858 final V returnedValue = entry.setValue(oldValue); in testEntrySetSetValueSameValue() local
859 assertEquals(oldValue, returnedValue); in testEntrySetSetValueSameValue()
1074 final V returnedValue = map.put(null, valueToPut); in testPutNullKey() local
1075 assertEquals(oldValue, returnedValue); in testPutNullKey()
1104 final V returnedValue = map.put(keyToPut, null); in testPutNullValue() local
1105 assertEquals(oldValue, returnedValue); in testPutNullValue()
1136 final V returnedValue = map.put(keyToPut, null); in testPutNullValueForExistingKey() local
1137 assertEquals(oldValue, returnedValue); in testPutNullValueForExistingKey()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
DSetValuesTest.java148 Value returnedValue = reply.getNextValueAsValue(); in testField() local
149 assertEquals("ClassType::SetValues returne invalid returned value,", value, returnedValue); in testField()
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmFloatControlsTests.cpp2095 typename TYPE::StorageType returnedValue = returnedFloat.bits(); in compareBytes() local
2096 return (returnedValue == 0xbc00) || (returnedValue == 0xbbff); in compareBytes()