Home
last modified time | relevance | path

Searched refs:EnumType (Results 1 – 13 of 13) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/
Dmap_test_util_impl.h54 template <typename EnumType, EnumType enum_value0,
55 EnumType enum_value1, typename MapMessage>
59 template <typename EnumType, EnumType enum_value0,
60 EnumType enum_value1, typename MapMessage>
69 template <typename EnumType, EnumType enum_value, typename MapMessage>
74 template <typename EnumType, EnumType enum_value0,
75 EnumType enum_value1, typename MapMessage>
80 template <typename EnumType, EnumType enum_value0,
81 EnumType enum_value1, typename MapMessage>
86 template <typename EnumType, EnumType enum_value, typename MapMessage>
[all …]
Dgenerated_enum_reflection.h69 template<typename EnumType>
72 EnumType* value) { in ParseNamedEnum()
75 *value = static_cast<EnumType>(tmp); in ParseNamedEnum()
Ddescriptor_unittest.cc2183 TEST_F(MiscTest, EnumType) { in TEST_F() argument
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/
DDumpHelpers.h44 template <typename EnumType>
45 void dumpVal(std::string& out, const char* name, const char* valueName, EnumType value) { in dumpVal()
46 dumpVal(out, name, valueName, static_cast<std::underlying_type_t<EnumType>>(value)); in dumpVal()
49 template <typename EnumType>
50 void dumpVal(std::string& out, const char* name, const std::string& valueName, EnumType value) { in dumpVal()
51 dumpVal(out, name, valueName, static_cast<std::underlying_type_t<EnumType>>(value)); in dumpVal()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/internal/
Ddescriptor_pool_test.py377 class EnumType(object): class
694 'NestedEnum': EnumType([('ALPHA', 1), ('BETA', 2)]),
696 'NestedEnum': EnumType([('EPSILON', 5), ('ZETA', 6)]),
698 'NestedEnum': EnumType([('ETA', 7), ('THETA', 8)]),
714 'NestedEnum': EnumType([('GAMMA', 3), ('DELTA', 4)]),
716 'NestedEnum': EnumType([('IOTA', 9), ('KAPPA', 10)]),
718 'NestedEnum': EnumType([('LAMBDA', 11), ('MU', 12)]),
740 'NestedEnum': EnumType([('NU', 13), ('XI', 14)]),
742 'NestedEnum': EnumType([('OMICRON', 15), ('PI', 16)]),
744 'NestedEnum': EnumType([('RHO', 17), ('SIGMA', 18)]),
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/
Djson_format_proto3.proto44 enum EnumType { enum
63 EnumType enum_value = 10;
75 repeated EnumType repeated_enum_value = 30;
90 EnumType oneof_enum_value = 4;
/frameworks/native/libs/vr/libvrflinger/
Dhwc_types.h100 template <typename EnumType>
104 using Base = Wrapper<EnumType>;
107 using BaseType = EnumType;
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/Reflection/
DMessageDescriptor.cs89 proto.EnumType, in MessageDescriptor()
DFileDescriptor.cs61 EnumTypes = DescriptorUtil.ConvertAndMakeReadOnly(proto.EnumType, in FileDescriptor()
DFieldDescriptor.cs226 public EnumDescriptor EnumType property in Google.Protobuf.Reflection.FieldDescriptor
DDescriptor.cs419 public pbc::RepeatedField<global::Google.Protobuf.Reflection.EnumDescriptorProto> EnumType { property in Google.Protobuf.Reflection.FileDescriptorProto
792 public pbc::RepeatedField<global::Google.Protobuf.Reflection.EnumDescriptorProto> EnumType { property in Google.Protobuf.Reflection.DescriptorProto
/frameworks/native/services/sensorservice/
DSensorDevice.cpp65 template<typename EnumType>
66 constexpr typename std::underlying_type<EnumType>::type asBaseType(EnumType value) { in asBaseType()
67 return static_cast<typename std::underlying_type<EnumType>::type>(value); in asBaseType()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/cpp/
Dcpp_unittest.cc1523 TEST_F(OneofTest, EnumType) { in TEST_F() argument