Home
last modified time | relevance | path

Searched refs:isWrapperType (Results 1 – 15 of 15) sorted by relevance

/external/guava/guava-tests/test/com/google/common/primitives/
DPrimitivesTest.java36 assertThat(Primitives.isWrapperType(Void.class)).isTrue(); in testIsWrapperType()
37 assertThat(Primitives.isWrapperType(void.class)).isFalse(); in testIsWrapperType()
/external/guava/android/guava-tests/test/com/google/common/primitives/
DPrimitivesTest.java36 assertThat(Primitives.isWrapperType(Void.class)).isTrue(); in testIsWrapperType()
37 assertThat(Primitives.isWrapperType(void.class)).isFalse(); in testIsWrapperType()
/external/gson/gson/src/test/java/com/google/gson/
DPrimitiveTypeAdapter.java35 if (Primitives.isWrapperType(aClass)) { in adaptType()
DParameterizedTypeFixtures.java54 if (Primitives.isWrapperType(Primitives.wrap(clazz))) { in getExpectedJson()
/external/gson/gson/src/main/java/com/google/gson/internal/
DPrimitives.java43 public static boolean isWrapperType(Type type) { in isWrapperType() method in Primitives
/external/guava/guava/src/com/google/common/primitives/
DPrimitives.java98 public static boolean isWrapperType(Class<?> type) { in isWrapperType() method in Primitives
/external/guava/android/guava/src/com/google/common/primitives/
DPrimitives.java98 public static boolean isWrapperType(Class<?> type) { in isWrapperType() method in Primitives
/external/protobuf/php/src/Google/Protobuf/Internal/
DFieldDescriptor.php219 public function isWrapperType() function in Google\\Protobuf\\Internal\\FieldDescriptor
DMessage.php1069 if (!is_null($valueField) && $valueField->isWrapperType()) {
1072 } elseif ($field->isWrapperType()) {
/external/cronet/tot/third_party/protobuf/php/src/Google/Protobuf/Internal/
DFieldDescriptor.php219 public function isWrapperType() function in Google\\Protobuf\\Internal\\FieldDescriptor
DMessage.php1069 if (!is_null($valueField) && $valueField->isWrapperType()) {
1072 } elseif ($field->isWrapperType()) {
/external/cronet/stable/third_party/protobuf/php/src/Google/Protobuf/Internal/
DFieldDescriptor.php219 public function isWrapperType() function in Google\\Protobuf\\Internal\\FieldDescriptor
DMessage.php1069 if (!is_null($valueField) && $valueField->isWrapperType()) {
1072 } elseif ($field->isWrapperType()) {
/external/escapevelocity/src/main/java/com/google/escapevelocity/
DReferenceNode.java282 if (value == null || !Primitives.isWrapperType(value.getClass())) { in primitiveIsCompatible()
/external/auto/value/src/main/java/com/google/auto/value/processor/
DAutoAnnotationProcessor.java215 if (value instanceof String || Primitives.isWrapperType(value.getClass())) { in invariableHash()