Home
last modified time | relevance | path

Searched refs:TYPE_BYTES (Results 1 – 25 of 65) sorted by relevance

123

/external/protobuf/src/google/protobuf/compiler/csharp/
Dcsharp_field_base.cc168 wrapped_field->type() == FieldDescriptor::TYPE_BYTES) { in type_name()
193 case FieldDescriptor::TYPE_BYTES: in type_name()
235 case FieldDescriptor::TYPE_BYTES: in has_default_value()
274 case FieldDescriptor::TYPE_BYTES: in is_nullable_type()
360 case FieldDescriptor::TYPE_BYTES: in default_value()
408 case FieldDescriptor::TYPE_BYTES: in capitalized_type_name()
Dcsharp_helpers.cc95 case FieldDescriptor::TYPE_BYTES: in GetCSharpType()
400 case FieldDescriptor::TYPE_BYTES : return -1; in GetFixedSize()
Dcsharp_wrapper_field.cc57 wrapped_field->type() != FieldDescriptor::TYPE_BYTES; in WrapperFieldGenerator()
Dcsharp_primitive_field.cc56 && descriptor->type() != FieldDescriptor::TYPE_BYTES; in PrimitiveFieldGenerator()
/external/nanopb-c/generator/google/protobuf/internal/
Dtype_checkers.py185 _FieldDescriptor.TYPE_BYTES: wire_format.BytesByteSize,
208 _FieldDescriptor.TYPE_BYTES: encoder.BytesEncoder,
231 _FieldDescriptor.TYPE_BYTES: encoder.BytesSizer,
254 _FieldDescriptor.TYPE_BYTES: decoder.BytesDecoder,
278 _FieldDescriptor.TYPE_BYTES:
Dwire_format.py255 descriptor.FieldDescriptor.TYPE_BYTES
/external/protobuf/python/google/protobuf/internal/
Dtype_checkers.py251 _FieldDescriptor.TYPE_BYTES: wire_format.BytesByteSize,
274 _FieldDescriptor.TYPE_BYTES: encoder.BytesEncoder,
297 _FieldDescriptor.TYPE_BYTES: encoder.BytesSizer,
320 _FieldDescriptor.TYPE_BYTES: decoder.BytesDecoder,
344 _FieldDescriptor.TYPE_BYTES:
Dwire_format.py255 descriptor.FieldDescriptor.TYPE_BYTES
/external/protobuf/src/google/protobuf/compiler/java/
Djava_helpers.cc291 case FieldDescriptor::TYPE_BYTES: in GetJavaType()
365 case FieldDescriptor::TYPE_BYTES : return "BYTES"; in FieldTypeName()
429 if (GetType(field) == FieldDescriptor::TYPE_BYTES) { in DefaultValue()
638 case FieldDescriptor::TYPE_BYTES : { in GetCapitalizedType()
674 case FieldDescriptor::TYPE_BYTES : return -1; in FixedSize()
/external/protobuf/src/google/protobuf/util/internal/
Ddatapiece.h74 TYPE_BYTES = 10, enumerator
92 : type_(TYPE_BYTES), in DataPiece()
Ddatapiece.cc207 case TYPE_BYTES: { in ToString()
236 case TYPE_BYTES: { in ValueAsStringOrDefault()
249 if (type_ == TYPE_BYTES) return str_.ToString(); in ToBytes()
Dobject_writer.cc76 case DataPiece::TYPE_BYTES: { in RenderDataPieceTo()
/external/protobuf/src/google/protobuf/util/
Dtype_resolver_util_test.cc193 Field::TYPE_BYTES, "optional_bytes", 15)); in TEST_F()
249 Field::TYPE_BYTES, "repeated_bytes", 45)); in TEST_F()
303 Field::TYPE_BYTES, "oneof_bytes", 114)); in TEST_F()
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
DExtension.java69 public static final int TYPE_BYTES = InternalNano.TYPE_BYTES; field in Extension
427 case TYPE_BYTES: in writeSingularData()
678 case TYPE_BYTES: in computeSingularSerializedSize()
DInternalNano.java62 public static final int TYPE_BYTES = 12; field in InternalNano
345 case TYPE_BYTES: in primitiveDefaultValue()
/external/protobuf/src/google/protobuf/compiler/javamicro/
Djavamicro_helpers.cc228 case FieldDescriptor::TYPE_BYTES: in GetJavaType()
316 if (field->type() == FieldDescriptor::TYPE_BYTES) { in DefaultValue()
Djavamicro_primitive_field.cc111 case FieldDescriptor::TYPE_BYTES : return "Bytes" ; in GetCapitalizedType()
145 case FieldDescriptor::TYPE_BYTES : return -1; in FixedSize()
/external/perfetto/include/perfetto/protozero/
Dproto_field_descriptor.h40 TYPE_BYTES = 12, enumerator
/external/protobuf/src/google/protobuf/compiler/javanano/
Djavanano_primitive_field.cc113 case FieldDescriptor::TYPE_BYTES : return "Bytes" ; in GetCapitalizedType()
147 case FieldDescriptor::TYPE_BYTES : return -1; in FixedSize()
189 if (descriptor->type() == FieldDescriptor::TYPE_BYTES) { in SetPrimitiveVariables()
Djavanano_extension.cc65 case FieldDescriptor::TYPE_BYTES : return "TYPE_BYTES" ; in GetTypeConstantName()
Djavanano_helpers.cc325 case FieldDescriptor::TYPE_BYTES: in GetJavaType()
460 if (field->type() == FieldDescriptor::TYPE_BYTES) { in DefaultValue()
/external/protobuf/src/google/protobuf/compiler/objectivec/
Dobjectivec_helpers.cc538 case FieldDescriptor::TYPE_BYTES: in GetCapitalizedType()
586 case FieldDescriptor::TYPE_BYTES: in GetObjectiveCType()
665 if (field->type() == FieldDescriptor::TYPE_BYTES) { in GPBGenericValueFieldName()
725 if (field->type() == FieldDescriptor::TYPE_BYTES) { in DefaultValue()
/external/protobuf/src/google/protobuf/compiler/js/
Djs_generator.cc501 if (field->type() == FieldDescriptor::TYPE_BYTES) { in JSGetterName()
828 case FieldDescriptor::TYPE_BYTES: in ProtoTypeName()
848 if (field->type() == FieldDescriptor::TYPE_BYTES) { in JSStringTypeName()
903 (field->type() != FieldDescriptor::TYPE_BYTES || in JSFieldTypeAnnotation()
910 if (field->type() == FieldDescriptor::TYPE_BYTES && in JSFieldTypeAnnotation()
1125 if (field->type() == FieldDescriptor::TYPE_BYTES && bytes_mode == BYTES_U8) { in FieldComments()
1946 field->type() == FieldDescriptor::TYPE_BYTES) { in GenerateClassFieldToObject()
2196 field->type() == FieldDescriptor::TYPE_BYTES && !options.binary ? in GenerateClassField()
2284 if (field->type() == FieldDescriptor::TYPE_BYTES && !untyped) { in GenerateClassField()
/external/protobuf/src/google/protobuf/
Dany.cc109 (*value_field)->type() == FieldDescriptor::TYPE_BYTES); in GetAnyFieldDescriptors()
/external/nanopb-c/generator/google/protobuf/
Ddescriptor.py373 TYPE_BYTES = 12 variable in FieldDescriptor
412 TYPE_BYTES: CPPTYPE_STRING,

123