HomeSort by relevance Sort by last modified time
    Searched refs:cpp_type (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /packages/services/Car/tools/emulator/
VehicleHalProto_pb2.py 159 number=1, type=5, cpp_type=1, label=2,
166 number=2, type=17, cpp_type=1, label=1,
173 number=3, type=17, cpp_type=1, label=1,
180 number=4, type=18, cpp_type=2, label=1,
187 number=5, type=18, cpp_type=2, label=1,
194 number=6, type=2, cpp_type=6, label=1,
201 number=7, type=2, cpp_type=6, label=1,
229 number=1, type=5, cpp_type=1, label=2,
236 number=2, type=5, cpp_type=1, label=1,
243 number=3, type=5, cpp_type=1, label=1
    [all...]
  /external/nanopb-c/generator/proto/
plugin_pb2.py 27 number=1, type=9, cpp_type=9, label=3,
34 number=2, type=9, cpp_type=9, label=1,
41 number=15, type=11, cpp_type=10, label=3,
69 number=1, type=9, cpp_type=9, label=1,
76 number=2, type=9, cpp_type=9, label=1,
83 number=15, type=9, cpp_type=9, label=1,
110 number=1, type=9, cpp_type=9, label=1,
117 number=15, type=11, cpp_type=10, label=3,
nanopb_pb2.py 58 number=1010, type=11, cpp_type=10, label=1,
66 number=1010, type=11, cpp_type=10, label=1,
74 number=1010, type=11, cpp_type=10, label=1,
82 number=1010, type=11, cpp_type=10, label=1,
98 number=1, type=5, cpp_type=1, label=1,
105 number=2, type=5, cpp_type=1, label=1,
112 number=3, type=14, cpp_type=8, label=1,
119 number=4, type=8, cpp_type=7, label=1,
126 number=5, type=8, cpp_type=7, label=1,
  /test/vts/proto/
ComponentSpecificationMessage_pb2.py 441 number=1, type=8, cpp_type=7, label=1,
448 number=2, type=8, cpp_type=7, label=1,
455 number=11, type=12, cpp_type=9, label=3,
462 number=12, type=12, cpp_type=9, label=3,
490 number=1, type=12, cpp_type=9, label=1,
497 number=11, type=12, cpp_type=9, label=1,
525 number=1, type=12, cpp_type=9, label=1,
532 number=11, type=5, cpp_type=1, label=1,
539 number=21, type=14, cpp_type=8, label=1,
546 number=22, type=14, cpp_type=8, label=1
    [all...]
TestSchedulingPolicyMessage_pb2.py 60 number=1, type=12, cpp_type=9, label=3,
67 number=2, type=12, cpp_type=9, label=3,
74 number=101, type=14, cpp_type=8, label=1,
81 number=110, type=13, cpp_type=3, label=1,
VtsProfilingMessage_pb2.py 96 number=1, type=3, cpp_type=2, label=1,
103 number=2, type=14, cpp_type=8, label=1,
110 number=3, type=12, cpp_type=9, label=1,
117 number=4, type=2, cpp_type=6, label=1,
124 number=5, type=12, cpp_type=9, label=1,
131 number=6, type=11, cpp_type=10, label=1,
159 number=1, type=11, cpp_type=10, label=3,
  /external/nanopb-c/generator/google/protobuf/compiler/
plugin_pb2.py 31 number=1, type=9, cpp_type=9, label=3,
38 number=2, type=9, cpp_type=9, label=1,
45 number=15, type=11, cpp_type=10, label=3,
73 number=1, type=9, cpp_type=9, label=1,
80 number=2, type=9, cpp_type=9, label=1,
87 number=15, type=9, cpp_type=9, label=1,
114 number=1, type=9, cpp_type=9, label=1,
121 number=15, type=11, cpp_type=10, label=3,
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_extension.cc 68 switch (descriptor_->cpp_type()) {
86 type_traits_.append(PrimitiveTypeName(descriptor_->cpp_type()));
141 if (descriptor_->cpp_type() == FieldDescriptor::CPPTYPE_STRING) {
179 switch (descriptor_->cpp_type()) {
cpp_field.cc 138 switch (field->cpp_type()) {
157 switch (field->cpp_type()) {
172 switch (field->cpp_type()) {
cpp_map_field.cc 63 (*variables)["key_cpp"] = PrimitiveTypeName(key->cpp_type());
64 switch (val->cpp_type()) {
74 (*variables)["val_cpp"] = PrimitiveTypeName(val->cpp_type());
195 switch (value_field->cpp_type()) {
  /external/protobuf/python/google/protobuf/pyext/
extension_dict.cc 68 if (descriptor->cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE) {
81 } else if (descriptor->cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE) {
102 descriptor->cpp_type() != FieldDescriptor::CPPTYPE_MESSAGE) {
121 descriptor->cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE) {
132 if (descriptor->cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE) {
170 descriptor->cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE) {
  /external/protobuf/python/google/protobuf/
json_format.py 153 field.cpp_type == descriptor.FieldDescriptor.CPPTYPE_MESSAGE) or
177 if field.cpp_type == descriptor.FieldDescriptor.CPPTYPE_MESSAGE:
179 elif field.cpp_type == descriptor.FieldDescriptor.CPPTYPE_ENUM:
186 elif field.cpp_type == descriptor.FieldDescriptor.CPPTYPE_STRING:
192 elif field.cpp_type == descriptor.FieldDescriptor.CPPTYPE_BOOL:
194 elif field.cpp_type in _INT64_TYPES:
196 elif field.cpp_type in _FLOAT_TYPES:
371 if field.cpp_type == descriptor.FieldDescriptor.CPPTYPE_MESSAGE:
389 elif field.cpp_type == descriptor.FieldDescriptor.CPPTYPE_MESSAGE:
522 if value_field.cpp_type == descriptor.FieldDescriptor.CPPTYPE_MESSAGE
    [all...]
  /external/protobuf/src/google/protobuf/
reflection_ops.cc 74 switch (field->cpp_type()) {
99 switch (field->cpp_type()) {
159 if (field->cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE) {
190 if (field->cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE) {
245 if (field->cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE) {
dynamic_message.cc 114 switch (field->cpp_type()) {
139 switch (field->cpp_type()) {
170 switch (field->cpp_type()) {
353 switch (field->cpp_type()) {
449 if (field->cpp_type() == FieldDescriptor::CPPTYPE_STRING) {
464 } else if (field->cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE) {
473 switch (field->cpp_type()) {
510 } else if (field->cpp_type() == FieldDescriptor::CPPTYPE_STRING) {
523 } else if (field->cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE) {
550 if (field->cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE &
    [all...]
repeated_field_reflection.h 51 // of the value depends on the field's cpp_type. Following is a mapping from
52 // cpp_type to the type that should be used in this interface:
54 // field->cpp_type() T Actual type of void*
249 static const FieldDescriptor::CppType cpp_type = \
269 static const FieldDescriptor::CppType cpp_type = member in struct:google::protobuf::internal::RefTypeTraits
270 PrimitiveTraits<T>::cpp_type;
285 static const FieldDescriptor::CppType cpp_type = member in struct:google::protobuf::internal::RefTypeTraits
300 static const FieldDescriptor::CppType cpp_type = member in struct:google::protobuf::internal::RefTypeTraits
328 static const FieldDescriptor::CppType cpp_type = member in struct:google::protobuf::internal::RefTypeTraits
reflection.h 98 internal::RefTypeTraits<T>::cpp_type, NULL);
163 message, field, internal::RefTypeTraits<T>::cpp_type, NULL);
220 internal::RefTypeTraits<T>::cpp_type,
295 message, field, internal::RefTypeTraits<T>::cpp_type,
313 // of the value depends on the field's cpp_type. Following is a mapping from
314 // cpp_type to the type that should be used in this interface:
316 // field->cpp_type() T Actual type of void*
511 static const FieldDescriptor::CppType cpp_type = \
531 static const FieldDescriptor::CppType cpp_type = member in struct:google::protobuf::internal::RefTypeTraits
532 PrimitiveTraits<T>::cpp_type;
547 static const FieldDescriptor::CppType cpp_type = member in struct:google::protobuf::internal::RefTypeTraits
562 static const FieldDescriptor::CppType cpp_type = member in struct:google::protobuf::internal::RefTypeTraits
590 static const FieldDescriptor::CppType cpp_type = member in struct:google::protobuf::internal::RefTypeTraits
    [all...]
generated_message_reflection.cc 123 " Field type: " << cpptype_names_[field->cpp_type()];
148 if (field->cpp_type() != FieldDescriptor::CPPTYPE_##CPPTYPE) \
294 switch (field->cpp_type()) {
339 switch (field->cpp_type()) {
397 switch (field->cpp_type()) {
439 GOOGLE_LOG(FATAL) << "Unimplemented type: " << field->cpp_type();
442 switch (field->cpp_type()) {
508 GOOGLE_LOG(FATAL) << "Unimplemented type: " << field->cpp_type();
536 switch (field1->cpp_type()) {
560 GOOGLE_LOG(FATAL) << "Unimplemented type: " << field1->cpp_type();
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
repeated_field_reflection.h 51 // of the value depends on the field's cpp_type. Following is a mapping from
52 // cpp_type to the type that should be used in this interface:
54 // field->cpp_type() T Actual type of void*
249 static const FieldDescriptor::CppType cpp_type = \
269 static const FieldDescriptor::CppType cpp_type = member in struct:google::protobuf::internal::RefTypeTraits
270 PrimitiveTraits<T>::cpp_type;
285 static const FieldDescriptor::CppType cpp_type = member in struct:google::protobuf::internal::RefTypeTraits
300 static const FieldDescriptor::CppType cpp_type = member in struct:google::protobuf::internal::RefTypeTraits
328 static const FieldDescriptor::CppType cpp_type = member in struct:google::protobuf::internal::RefTypeTraits
reflection.h 98 internal::RefTypeTraits<T>::cpp_type, NULL);
163 message, field, internal::RefTypeTraits<T>::cpp_type, NULL);
220 internal::RefTypeTraits<T>::cpp_type,
295 message, field, internal::RefTypeTraits<T>::cpp_type,
313 // of the value depends on the field's cpp_type. Following is a mapping from
314 // cpp_type to the type that should be used in this interface:
316 // field->cpp_type() T Actual type of void*
511 static const FieldDescriptor::CppType cpp_type = \
531 static const FieldDescriptor::CppType cpp_type = member in struct:google::protobuf::internal::RefTypeTraits
532 PrimitiveTraits<T>::cpp_type;
547 static const FieldDescriptor::CppType cpp_type = member in struct:google::protobuf::internal::RefTypeTraits
562 static const FieldDescriptor::CppType cpp_type = member in struct:google::protobuf::internal::RefTypeTraits
590 static const FieldDescriptor::CppType cpp_type = member in struct:google::protobuf::internal::RefTypeTraits
    [all...]
  /external/nanopb-c/generator/google/protobuf/internal/
python_message.py 34 # descriptor's cpp_type is CPPTYPE_MESSAGE.
266 if field.cpp_type == _FieldDescriptor.CPPTYPE_MESSAGE:
275 type_checker = type_checkers.GetTypeChecker(field.cpp_type, field.type)
281 if field.cpp_type == _FieldDescriptor.CPPTYPE_MESSAGE:
317 if field.cpp_type == _FieldDescriptor.CPPTYPE_MESSAGE: # Composite
323 elif field.cpp_type == _FieldDescriptor.CPPTYPE_MESSAGE:
380 elif field.cpp_type == _FieldDescriptor.CPPTYPE_MESSAGE:
443 type_checker = type_checkers.GetTypeChecker(field.cpp_type, field.type)
568 elif item[0].cpp_type == _FieldDescriptor.CPPTYPE_MESSAGE:
600 if field.cpp_type == _FieldDescriptor.CPPTYPE_MESSAGE
    [all...]
  /external/protobuf/src/google/protobuf/util/
field_comparator.cc 67 switch (field->cpp_type()) {
128 << " of CppType = " << field->cpp_type();
142 GOOGLE_CHECK(FieldDescriptor::CPPTYPE_FLOAT == field->cpp_type() ||
143 FieldDescriptor::CPPTYPE_DOUBLE == field->cpp_type())
  /system/tools/aidl/
aidl_unittest.cpp 351 auto cpp_type = cpp_types_.FindTypeByCanonicalName("p.Outer.Inner"); local
352 ASSERT_NE(nullptr, cpp_type);
354 EXPECT_EQ("::p::Outer::Inner", cpp_type->CppType());
368 auto cpp_type = cpp_types_.FindTypeByCanonicalName("p.Bar"); local
369 ASSERT_NE(nullptr, cpp_type);
370 EXPECT_EQ("::p::Bar", cpp_type->CppType());
372 cpp_type->GetHeaders(&headers);
  /external/protobuf/python/google/protobuf/internal/
python_message.py 34 # descriptor's cpp_type is CPPTYPE_MESSAGE.
286 return value_type.cpp_type == _FieldDescriptor.CPPTYPE_MESSAGE
418 if field.cpp_type == _FieldDescriptor.CPPTYPE_MESSAGE:
433 if field.cpp_type == _FieldDescriptor.CPPTYPE_MESSAGE:
505 if field.cpp_type == _FieldDescriptor.CPPTYPE_MESSAGE: # Composite
519 if field.cpp_type == _FieldDescriptor.CPPTYPE_ENUM:
524 elif field.cpp_type == _FieldDescriptor.CPPTYPE_MESSAGE:
535 if field.cpp_type == _FieldDescriptor.CPPTYPE_ENUM:
593 elif field.cpp_type == _FieldDescriptor.CPPTYPE_MESSAGE:
791 elif item[0].cpp_type == _FieldDescriptor.CPPTYPE_MESSAGE
    [all...]
  /external/nanopb-c/generator/google/protobuf/
text_format.py 98 if field.cpp_type != descriptor.FieldDescriptor.CPPTYPE_MESSAGE:
115 if field.cpp_type == descriptor.FieldDescriptor.CPPTYPE_MESSAGE:
124 elif field.cpp_type == descriptor.FieldDescriptor.CPPTYPE_ENUM:
130 elif field.cpp_type == descriptor.FieldDescriptor.CPPTYPE_STRING:
137 elif field.cpp_type == descriptor.FieldDescriptor.CPPTYPE_BOOL:
212 if field.cpp_type == descriptor.FieldDescriptor.CPPTYPE_MESSAGE:
  /external/protobuf/src/google/protobuf/compiler/ruby/
ruby_generator.cc 131 if (value_field->cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE) {
135 } else if (value_field->cpp_type() == FieldDescriptor::CPPTYPE_ENUM) {
153 if (field->cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE) {
157 } else if (field->cpp_type() == FieldDescriptor::CPPTYPE_ENUM) {
342 if ((field->cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE &&

Completed in 320 milliseconds

1 2 3 4