Home
last modified time | relevance | path

Searched refs:actualType (Results 1 – 9 of 9) sorted by relevance

/external/mockito/src/main/java/org/mockito/internal/exceptions/
DReporter.java475 …public static MockitoException wrongTypeOfReturnValue(String expectedType, String actualType, Stri… in wrongTypeOfReturnValue() argument
477 actualType + " cannot be returned by " + methodName + "()", in wrongTypeOfReturnValue()
490 …ngTypeReturnedByDefaultAnswer(Object mock, String expectedType, String actualType, String methodNa… in wrongTypeReturnedByDefaultAnswer() argument
493 actualType + " cannot be returned by " + methodName + "()", in wrongTypeReturnedByDefaultAnswer()
754 …entToReturn(InvocationOnMock invocation, String expectedType, Class<?> actualType, int argumentInd… in wrongTypeOfArgumentToReturn() argument
756 …"The argument of type '" + actualType.getSimpleName() + "' cannot be returned because the followin… in wrongTypeOfArgumentToReturn()
/external/vogar/src/vogar/
DOptionParser.java173 Type actualType = parameterizedType.getActualTypeArguments()[0]; in getHandler() local
174 if (!(actualType instanceof Class)) { in getHandler()
177 return getHandler(actualType); in getHandler()
/external/skia/tests/
DGeometryTest.cpp211 SkCubicType actualType = SkClassifyCubic(bezierPoints.data()); in check_cubic_type() local
212 REPORTER_ASSERT(reporter, actualType == expectedType); in check_cubic_type()
/external/mockito/src/main/java/org/mockito/internal/util/reflection/
DGenericMetadataSupport.java208 Type actualType = getActualTypeArgumentFor(typeParameter); in actualTypeArguments() local
210 actualTypeArguments.put(typeParameter, actualType); in actualTypeArguments()
/external/webrtc/webrtc/modules/audio_device/linux/
Daudio_device_alsa_linux.cc1752 char *actualType = LATE(snd_device_name_get_hint)(*list, "IOID"); in GetDevicesInfo() local
1753 if (actualType) in GetDevicesInfo()
1755 bool wrongType = (strcmp(actualType, type) != 0); in GetDevicesInfo()
1756 free(actualType); in GetDevicesInfo()
/external/r8/src/main/java/com/android/tools/r8/ir/desugar/
DLambdaMainMethodSourceCode.java274 DexType erasedType, DexType enforcedType, DexType actualType) { in prepareReturnValue() argument
276 register = adjustType(register, actualType, enforcedType); in prepareReturnValue()
/external/mesa3d/src/mesa/drivers/x11/
Dfakeglx.c163 Atom actualType; in GetOverlayInfo() local
180 overlayVisualsAtom, &actualType, &actualFormat, in GetOverlayInfo()
184 if (status != Success || actualType != overlayVisualsAtom || in GetOverlayInfo()
/external/libxml2/
Dxmlschemas.c25043 xmlSchemaTypePtr actualType; in xmlSchemaValidateElemDecl() local
25053 actualType = WXS_ELEM_TYPEDEF(elemDecl); in xmlSchemaValidateElemDecl()
25062 if (actualType == NULL) { in xmlSchemaValidateElemDecl()
25141 actualType = localType; in xmlSchemaValidateElemDecl()
25154 if (actualType == NULL) { in xmlSchemaValidateElemDecl()
25162 vctxt->inode->typeDef = actualType; in xmlSchemaValidateElemDecl()
/external/vulkan-validation-layers/layers/
Dcore_validation.cpp3530 VkDescriptorType actualType = VK_DESCRIPTOR_TYPE_MAX_ENUM; in validateUpdateConsistency() local
3533 actualType = ((VkWriteDescriptorSet *)pUpdateStruct)->descriptorType; in validateUpdateConsistency()
3546 if (layout_type != actualType) { in validateUpdateConsistency()
3551 string_VkDescriptorType(actualType), string_VkDescriptorType(layout_type)); in validateUpdateConsistency()