Home
last modified time | relevance | path

Searched refs:getTargetType (Results 1 – 12 of 12) sorted by relevance

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/filter/
DNullConversionsForContentTest.java65 assertEquals(String.class, e.getTargetType()); in testFailOnNullFromDefaults()
77 assertEquals(String.class, e.getTargetType()); in testFailOnNullFromDefaults()
101 assertEquals(Integer.class, e.getTargetType()); in testFailOnNullWithCollections()
110 assertEquals(String.class, e.getTargetType()); in testFailOnNullWithCollections()
123 assertEquals(Object.class, e.getTargetType()); in testFailOnNullWithArrays()
132 assertEquals(String.class, e.getTargetType()); in testFailOnNullWithArrays()
146 assertEquals(Boolean.TYPE, e.getTargetType()); in testFailOnNullWithPrimitiveArrays()
154 assertEquals(Integer.TYPE, e.getTargetType()); in testFailOnNullWithPrimitiveArrays()
162 assertEquals(Double.TYPE, e.getTargetType()); in testFailOnNullWithPrimitiveArrays()
175 assertEquals(String.class, e.getTargetType()); in testFailOnNullWithMaps()
[all …]
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/json/async/
DAsyncNumberCoercionTest.java78 assertEquals(Integer.TYPE, e.getTargetType()); in testToIntFailing()
91 assertEquals(Integer.TYPE, e.getTargetType()); in testToIntFailing()
104 assertEquals(Integer.TYPE, e.getTargetType()); in testToIntFailing()
115 assertEquals(Integer.TYPE, e.getTargetType()); in testToIntFailing()
128 assertEquals(Integer.TYPE, e.getTargetType()); in testToIntFailing()
139 assertEquals(Integer.TYPE, e.getTargetType()); in testToIntFailing()
194 assertEquals(Long.TYPE, e.getTargetType()); in testToLongFailing()
206 assertEquals(Long.TYPE, e.getTargetType()); in testToLongFailing()
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/read/
DNumberCoercionTest.java70 assertEquals(Integer.TYPE, e.getTargetType()); in testToIntFailing()
83 assertEquals(Integer.TYPE, e.getTargetType()); in testToIntFailing()
96 assertEquals(Integer.TYPE, e.getTargetType()); in testToIntFailing()
107 assertEquals(Integer.TYPE, e.getTargetType()); in testToIntFailing()
120 assertEquals(Integer.TYPE, e.getTargetType()); in testToIntFailing()
131 assertEquals(Integer.TYPE, e.getTargetType()); in testToIntFailing()
191 assertEquals(Long.TYPE, e.getTargetType()); in testToLongFailing()
203 assertEquals(Long.TYPE, e.getTargetType()); in testToLongFailing()
DNumberParsingTest.java224 assertEquals(Integer.TYPE, e.getTargetType()); in _testSimpleLong()
/external/guava/guava-tests/test/com/google/common/reflect/
DTypeTokenResolutionTest.java435 Type getTargetType(String methodName) throws Exception {
448 (TypeVariable<?>) new WithGenericBound<String>() {}.getTargetType("withTypeVariable");
454 (TypeVariable<?>) new WithGenericBound<String>() {}.getTargetType("withRecursiveBound");
461 new WithGenericBound<String>() {}.getTargetType("withMutualRecursiveBound");
470 (WildcardType) new WithGenericBound<String>() {}.getTargetType("withWildcardLowerBound");
476 (WildcardType) new WithGenericBound<String>() {}.getTargetType("withWildcardUpperBound");
/external/guava/android/guava-tests/test/com/google/common/reflect/
DTypeTokenResolutionTest.java435 Type getTargetType(String methodName) throws Exception {
448 (TypeVariable<?>) new WithGenericBound<String>() {}.getTargetType("withTypeVariable");
454 (TypeVariable<?>) new WithGenericBound<String>() {}.getTargetType("withRecursiveBound");
461 new WithGenericBound<String>() {}.getTargetType("withMutualRecursiveBound");
470 (WildcardType) new WithGenericBound<String>() {}.getTargetType("withWildcardLowerBound");
476 (WildcardType) new WithGenericBound<String>() {}.getTargetType("withWildcardUpperBound");
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/exc/
DInputCoercionException.java70 public Class<?> getTargetType() { in getTargetType() method in InputCoercionException
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/exc/
DMismatchedInputException.java75 public Class<?> getTargetType() { in getTargetType() method in MismatchedInputException
/external/grpc-grpc-java/rls/src/test/java/io/grpc/rls/
DRlsProtoConvertersTest.java68 assertThat(proto.getTargetType()).isEqualTo("grpc"); in convert_toRequestObject()
/external/deqp/modules/gles2/functional/
Des2fDefaultVertexAttributeTests.cpp180 glu::DataType getTargetType(void) const;
/external/deqp/modules/gles3/functional/
Des3fDefaultVertexAttributeTests.cpp256 glu::DataType getTargetType(void) const;
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/jdk/
DDateDeserializationTest.java809 assertEquals(Date.class, e.getTargetType()); in testInvalidFormat()