Home
last modified time | relevance | path

Searched defs:mapConverter (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/golang-protobuf/internal/impl/
H A Dconvert_map.go14 type mapConverter struct { struct
15 goType reflect.Type // map[K]V
16 keyConv, valConv Converter
30 func (c *mapConverter) PBValueOf(v reflect.Value) protoreflect.Value {
37 func (c *mapConverter) GoValueOf(v protoreflect.Value) reflect.Value {
41 func (c *mapConverter) IsValidPB(v protoreflect.Value) bool {
49 func (c *mapConverter) IsValidGo(v reflect.Value) bool {
53 func (c *mapConverter) New() protoreflect.Value {
57 func (c *mapConverter) Zero() protoreflect.Value {
/aosp_15_r20/external/aws-sdk-java-v2/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/converter/attribute/
H A DMapAttributeConverter.java87 …public static <K, V> MapAttributeConverter<Map<K, V>> mapConverter(StringConverter<K> keyConverter, in mapConverter() method in MapAttributeConverter