Home
last modified time | relevance | path

Searched refs:enum_type (Results 1 – 12 of 12) sorted by relevance

/system/extras/simpleperf/scripts/
Dprofile_pb2.py40 message_type=None, enum_type=None, containing_type=None,
47 message_type=None, enum_type=None, containing_type=None,
54 message_type=None, enum_type=None, containing_type=None,
61 message_type=None, enum_type=None, containing_type=None,
68 message_type=None, enum_type=None, containing_type=None,
75 message_type=None, enum_type=None, containing_type=None,
82 message_type=None, enum_type=None, containing_type=None,
89 message_type=None, enum_type=None, containing_type=None,
96 message_type=None, enum_type=None, containing_type=None,
103 message_type=None, enum_type=None, containing_type=None,
[all …]
/system/update_engine/scripts/update_payload/
Dupdate_metadata_pb2.py116 message_type=None, enum_type=None, containing_type=None,
123 message_type=None, enum_type=None, containing_type=None,
154 message_type=None, enum_type=None, containing_type=None,
161 message_type=None, enum_type=None, containing_type=None,
168 message_type=None, enum_type=None, containing_type=None,
198 message_type=None, enum_type=None, containing_type=None,
229 message_type=None, enum_type=None, containing_type=None,
236 message_type=None, enum_type=None, containing_type=None,
267 message_type=None, enum_type=None, containing_type=None,
274 message_type=None, enum_type=None, containing_type=None,
[all …]
/system/bt/gd/rust/linux/dbus_projection/src/
Dlib.rs78 ($enum_type:ty) => {
79 impl DBusArg for $enum_type {
86 ) -> Result<$enum_type, Box<dyn Error>> {
87 match <$enum_type>::from_i32(data) {
92 stringify!($enum_type)
97 fn to_dbus(data: $enum_type) -> Result<i32, Box<dyn Error>> {
/system/bt/gd/packet/
Dendian_inserter.h90 using enum_type = typename std::underlying_type_t<Enum>; in insert() local
91 …static_assert(std::is_unsigned_v<enum_type>, "Enum type is signed. Did you forget to specify the e… in insert()
92 insert<enum_type>(static_cast<enum_type>(value), it); in insert()
/system/tools/aidl/
Daidl_to_rust.cpp70 auto enum_type = defined_type->AsEnumDeclaration(); in ConstantValueDecoratorInternal() local
71 AIDL_FATAL_IF(!enum_type, type) << "Invalid type for \"" << raw_value << "\""; in ConstantValueDecoratorInternal()
Daidl_to_cpp.cpp207 auto enum_type = defined_type->AsEnumDeclaration(); in ConstantValueDecorator() local
208 AIDL_FATAL_IF(!enum_type, type) << "Invalid type for \"" << raw_value << "\""; in ConstantValueDecorator()
Daidl_to_ndk.cpp82 auto enum_type = defined_type->AsEnumDeclaration(); in ConstantValueDecorator() local
83 AIDL_FATAL_IF(!enum_type, type) << "Invalid type for \"" << raw_value << "\""; in ConstantValueDecorator()
84 return NdkFullClassName(*enum_type, cpp::ClassNames::RAW) + in ConstantValueDecorator()
Daidl_const_expressions.cpp489 const AidlEnumDeclaration* enum_type = defined_type->AsEnumDeclaration(); in ValueString() local
490 if (!enum_type) { in ValueString()
497 << enum_type->GetCanonicalName(); in ValueString()
Daidl_to_java.cpp49 auto enum_type = defined_type->AsEnumDeclaration(); in ConstantValueDecorator() local
50 AIDL_FATAL_IF(!enum_type, type) << "Invalid type for \"" << raw_value << "\""; in ConstantValueDecorator()
Daidl_language.cpp643 auto enum_type = defined_type->AsEnumDeclaration(); in AidlConstantValueDecorator() local
644 AIDL_FATAL_IF(!enum_type, type) << "Invalid type for \"" << raw_value << "\""; in AidlConstantValueDecorator()
Daidl_unittest.cpp3661 const auto& enum_type = type->AsEnumDeclaration(); in TEST_P() local
3665 visitor.Visit(*enum_type); in TEST_P()
/system/bt/gd/packet/parser/
Dpacket_def.cc958 auto enum_type = type.substr(0, type.find("::")); in GenRustStructImpls() local
959 auto enum_variant = enum_type + "::" in GenRustStructImpls()