Home
last modified time | relevance | path

Searched defs:valueType (Results 1 – 25 of 144) sorted by relevance

123456

/external/auto/value/src/test/java/com/google/auto/value/extension/toprettystring/
DToPrettyStringTest.java68 Primitives valueType = in primitives() local
98 PrimitiveArray valueType = in primitiveArray() local
115 PrimitiveArray valueType = new AutoValue_ToPrettyStringTest_PrimitiveArray(new long[0]); in primitiveArray_empty() local
126 PrimitiveArray valueType = new AutoValue_ToPrettyStringTest_PrimitiveArray(null); in primitiveArray_null() local
146 PrettyCollection valueType = in prettyCollection() local
161 PrettyCollection valueType = in prettyCollection_elementsWithNewlines() local
178 PrettyCollection valueType = in prettyCollection_empty() local
190 PrettyCollection valueType = new AutoValue_ToPrettyStringTest_PrettyCollection(null); in prettyCollection_null() local
210 NestedCollection valueType = in nestedCollection() local
241 NestedCollection valueType = in nestedCollection_elementsWithNewlines() local
[all …]
/external/connectedappssdk/sdk/src/main/java/com/google/android/enterprise/connectedapps/internal/
DBundler.java42 void writeToBundle(Bundle bundle, String key, Object value, BundlerType valueType); in writeToBundle()
44 default void writeToBundle(Bundle bundle, String key, byte value, BundlerType valueType) { in writeToBundle()
48 default void writeToBundle(Bundle bundle, String key, short value, BundlerType valueType) { in writeToBundle()
52 default void writeToBundle(Bundle bundle, String key, int value, BundlerType valueType) { in writeToBundle()
56 default void writeToBundle(Bundle bundle, String key, long value, BundlerType valueType) { in writeToBundle()
60 default void writeToBundle(Bundle bundle, String key, char value, BundlerType valueType) { in writeToBundle()
64 default void writeToBundle(Bundle bundle, String key, float value, BundlerType valueType) { in writeToBundle()
68 default void writeToBundle(Bundle bundle, String key, double value, BundlerType valueType) { in writeToBundle()
72 default void writeToBundle(Bundle bundle, String key, boolean value, BundlerType valueType) { in writeToBundle()
90 default void writeToParcel(Parcel parcel, byte value, BundlerType valueType, int flags) { in writeToParcel()
[all …]
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/
DBeanSerializerModifier.java122 ArrayType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer) { in modifyArraySerializer()
130 CollectionType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer) { in modifyCollectionSerializer()
138 CollectionLikeType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer) { in modifyCollectionLikeSerializer()
146 MapType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer) { in modifyMapSerializer()
154 MapLikeType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer) { in modifyMapLikeSerializer()
162 JavaType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer) { in modifyEnumSerializer()
184 JavaType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer) { in modifyKeySerializer()
/external/guice/core/src/com/google/inject/multibindings/
DMapBinder.java101 Binder binder, TypeLiteral<K> keyType, TypeLiteral<V> valueType) { in newMapBinder()
111 Binder binder, Class<K> keyType, Class<V> valueType) { in newMapBinder()
120 Binder binder, TypeLiteral<K> keyType, TypeLiteral<V> valueType, Annotation annotation) { in newMapBinder()
130 Binder binder, Class<K> keyType, Class<V> valueType, Annotation annotation) { in newMapBinder()
141 TypeLiteral<V> valueType, in newMapBinder()
154 Class<V> valueType, in newMapBinder()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/
DObjectCodec.java49 public abstract <T> T readValue(JsonParser p, Class<T> valueType) in readValue()
68 public abstract <T> T readValue(JsonParser p, ResolvedType valueType) in readValue()
75 public abstract <T> Iterator<T> readValues(JsonParser p, Class<T> valueType) in readValues()
89 public abstract <T> Iterator<T> readValues(JsonParser p, ResolvedType valueType) in readValues()
159 public abstract <T> T treeToValue(TreeNode n, Class<T> valueType) in treeToValue()
/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/writer/
DDexDataWriter.java160 public void writeEncodedValueHeader(int valueType, int valueArg) throws IOException { in writeEncodedValueHeader()
164 public void writeEncodedInt(int valueType, int value) throws IOException { in writeEncodedInt()
182 public void writeEncodedLong(int valueType, long value) throws IOException { in writeEncodedLong()
200 public void writeEncodedUint(int valueType, int value) throws IOException { in writeEncodedUint()
210 public void writeEncodedFloat(int valueType, float value) throws IOException { in writeEncodedFloat()
214 protected void writeRightZeroExtendedInt(int valueType, int value) throws IOException { in writeRightZeroExtendedInt()
227 public void writeEncodedDouble(int valueType, double value) throws IOException { in writeEncodedDouble()
231 protected void writeRightZeroExtendedLong(int valueType, long value) throws IOException { in writeRightZeroExtendedLong()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DDexDataWriter.java161 public void writeEncodedValueHeader(int valueType, int valueArg) throws IOException { in writeEncodedValueHeader()
165 public void writeEncodedInt(int valueType, int value) throws IOException { in writeEncodedInt()
183 public void writeEncodedLong(int valueType, long value) throws IOException { in writeEncodedLong()
201 public void writeEncodedUint(int valueType, int value) throws IOException { in writeEncodedUint()
211 public void writeEncodedFloat(int valueType, float value) throws IOException { in writeEncodedFloat()
215 protected void writeRightZeroExtendedInt(int valueType, int value) throws IOException { in writeRightZeroExtendedInt()
228 public void writeEncodedDouble(int valueType, double value) throws IOException { in writeEncodedDouble()
232 protected void writeRightZeroExtendedLong(int valueType, long value) throws IOException { in writeRightZeroExtendedLong()
/external/guava/android/guava/src/com/google/common/collect/
DEnumBiMap.java44 private transient Class<V> valueType; field in EnumBiMap
53 Class<K> keyType, Class<V> valueType) { in create()
72 private EnumBiMap(Class<K> keyType, Class<V> valueType) { in EnumBiMap()
103 public Class<V> valueType() { in valueType() method in EnumBiMap
/external/guava/guava/src/com/google/common/collect/
DEnumBiMap.java44 private transient Class<V> valueType; field in EnumBiMap
53 Class<K> keyType, Class<V> valueType) { in create()
72 private EnumBiMap(Class<K> keyType, Class<V> valueType) { in EnumBiMap()
103 public Class<V> valueType() { in valueType() method in EnumBiMap
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DObjectReader.java178 JavaType valueType, Object valueToUpdate, in ObjectReader()
200 JavaType valueType, JsonDeserializer<Object> rootDeser, Object valueToUpdate, in ObjectReader()
317 JavaType valueType, JsonDeserializer<Object> rootDeser, Object valueToUpdate, in _new()
717 public ObjectReader forType(JavaType valueType) in forType()
741 public ObjectReader forType(Class<?> valueType) { in forType()
762 public ObjectReader withType(JavaType valueType) { in withType()
770 public ObjectReader withType(Class<?> valueType) { in withType()
778 public ObjectReader withType(java.lang.reflect.Type valueType) { in withType()
1188 public <T> T readValue(JsonParser p, Class<T> valueType) throws IOException in readValue()
1224 public <T> T readValue(JsonParser p, ResolvedType valueType) throws IOException { in readValue()
[all …]
DSerializerProvider.java508 public JsonSerializer<Object> findValueSerializer(Class<?> valueType, BeanProperty property) in findValueSerializer()
551 public JsonSerializer<Object> findValueSerializer(JavaType valueType, BeanProperty property) in findValueSerializer()
582 … public JsonSerializer<Object> findValueSerializer(Class<?> valueType) throws JsonMappingException in findValueSerializer()
611 public JsonSerializer<Object> findValueSerializer(JavaType valueType) in findValueSerializer()
645 …public JsonSerializer<Object> findPrimaryPropertySerializer(JavaType valueType, BeanProperty prope… in findPrimaryPropertySerializer()
672 public JsonSerializer<Object> findPrimaryPropertySerializer(Class<?> valueType, in findPrimaryPropertySerializer()
717 …public JsonSerializer<Object> findContentValueSerializer(JavaType valueType, BeanProperty property) in findContentValueSerializer()
744 public JsonSerializer<Object> findContentValueSerializer(Class<?> valueType, in findContentValueSerializer()
783 public JsonSerializer<Object> findTypedValueSerializer(Class<?> valueType, in findTypedValueSerializer()
828 public JsonSerializer<Object> findTypedValueSerializer(JavaType valueType, boolean cache, in findTypedValueSerializer()
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/json/
DJsonFactoryTest.java18 public <T> T readValue(JsonParser p, Class<T> valueType) throws IOException { in readValue()
28 public <T> T readValue(JsonParser p, ResolvedType valueType) throws IOException { in readValue()
33 public <T> Iterator<T> readValues(JsonParser p, Class<T> valueType) throws IOException { in readValues()
43 public <T> Iterator<T> readValues(JsonParser p, ResolvedType valueType) throws IOException { in readValues()
76 public <T> T treeToValue(TreeNode n, Class<T> valueType) throws JsonProcessingException { in treeToValue()
/external/guice/core/src/com/google/inject/internal/
DRealMapBinder.java73 Binder binder, TypeLiteral<K> keyType, TypeLiteral<V> valueType) { in newMapRealBinder()
88 Binder binder, TypeLiteral<K> keyType, TypeLiteral<V> valueType, Annotation annotation) { in newRealMapBinder()
106 TypeLiteral<V> valueType, in newRealMapBinder()
119 static <K, V> TypeLiteral<Map<K, V>> mapOf(TypeLiteral<K> keyType, TypeLiteral<V> valueType) { in mapOf()
126 TypeLiteral<K> keyType, TypeLiteral<V> valueType) { in mapOfProviderOf()
134 TypeLiteral<K> keyType, TypeLiteral<V> valueType) { in mapOfJavaxProviderOf()
144 TypeLiteral<K> keyType, TypeLiteral<V> valueType) { in mapOfSetOfProviderOf()
152 TypeLiteral<K> keyType, TypeLiteral<V> valueType) { in mapOfSetOfJavaxProviderOf()
161 TypeLiteral<K> keyType, TypeLiteral<V> valueType) { in mapOfCollectionOfProviderOf()
171 TypeLiteral<K> keyType, TypeLiteral<V> valueType) { in mapOfCollectionOfJavaxProviderOf()
[all …]
/external/auto/value/src/main/java/com/google/auto/value/extension/toprettystring/processor/
DToPrettyStringExtension.java221 TypeMirror valueType = typeParameters.get(1); in formatMap() local
230 TypeMirror valueType = typeParameters.get(1); in formatMultimap() local
322 private CodeBlock mapMethodBody(TypeMirror keyType, TypeMirror valueType) { in mapMethodBody()
326 private CodeBlock multimapMethodBody(TypeMirror keyType, TypeMirror valueType) { in multimapMethodBody()
331 TypeMirror keyType, TypeMirror valueType, String propertyAccess) { in forEachMapEntryMethodBody()
393 private DeclaredType mapOf(TypeMirror keyType, TypeMirror valueType) { in mapOf()
397 private DeclaredType multimapOf(TypeMirror keyType, TypeMirror valueType) { in multimapOf()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/value/
DDexBackedEncodedValue.java50 int valueType = b & 0x1f; in readFrom() local
123 int valueType = b & 0x1f; in skipFrom() local
/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/dexbacked/value/
DDexBackedEncodedValue.java58 int valueType = b & 0x1f; in readFrom() local
131 int valueType = b & 0x1f; in skipFrom() local
/external/jackson-databind/attic/
DMappingIteratorDeserializer.java19 public MappingIteratorDeserializer(JavaType valueType) { in MappingIteratorDeserializer()
23 protected MappingIteratorDeserializer(JavaType valueType, JsonDeserializer<Object> vdeser) { in MappingIteratorDeserializer()
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowPropertyValuesHolder.java29 Class<?> valueType) { in setupSetterOrGetter()
48 Class<?> valueType); in setupSetterOrGetter()
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/util/
DTestDelegates.java40 public <T> T readValue(JsonParser p, Class<T> valueType) { in readValue()
48 public <T> T readValue(JsonParser p, ResolvedType valueType) { in readValue()
52 public <T> Iterator<T> readValues(JsonParser p, Class<T> valueType) { in readValues()
61 public <T> Iterator<T> readValues(JsonParser p, ResolvedType valueType) { in readValues()
102 public <T> T treeToValue(TreeNode n, Class<T> valueType) { in treeToValue()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsonFormatVisitors/
DJsonMapFormatVisitor.java19 …public void valueFormat(JsonFormatVisitable handler, JavaType valueType) throws JsonMappingExcepti… in valueFormat()
43 …public void valueFormat(JsonFormatVisitable handler, JavaType valueType) throws JsonMappingExcepti… in valueFormat()
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DMapEntryLite.java50 public final WireFormat.FieldType valueType; field in MapEntryLite.Metadata
56 WireFormat.FieldType valueType, in Metadata()
74 WireFormat.FieldType keyType, K defaultKey, WireFormat.FieldType valueType, V defaultValue) { in MapEntryLite()
103 WireFormat.FieldType keyType, K defaultKey, WireFormat.FieldType valueType, V defaultValue) { in newDefaultInstance()
/external/cronet/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DMapEntryLite.java50 public final WireFormat.FieldType valueType; field in MapEntryLite.Metadata
56 WireFormat.FieldType valueType, in Metadata()
74 WireFormat.FieldType keyType, K defaultKey, WireFormat.FieldType valueType, V defaultValue) { in MapEntryLite()
103 WireFormat.FieldType keyType, K defaultKey, WireFormat.FieldType valueType, V defaultValue) { in newDefaultInstance()
/external/auto/value/src/main/java/com/google/auto/value/extension/serializable/serializer/impl/
DImmutableMapSerializerExtension.java52 TypeMirror valueType = getValueType(typeMirror); in getSerializer() local
69 private final TypeMirror valueType; field in ImmutableMapSerializerExtension.ImmutableMapSerializer
79 TypeMirror valueType, in ImmutableMapSerializer()
/external/connectedappssdk/processor/src/main/resources/parcelablewrappers/
DParcelableCollection.java71 BundlerType valueType = type.typeArguments().get(0); in ParcelableCollection() local
92 BundlerType valueType = type.typeArguments().get(0); in writeToParcel() local
DParcelableSet.java69 BundlerType valueType = type.typeArguments().get(0); in ParcelableSet() local
90 BundlerType valueType = type.typeArguments().get(0); in writeToParcel() local

123456