Home
last modified time | relevance | path

Searched refs:ENUM (Results 1 – 23 of 23) sorted by relevance

/system/tools/aidl/
Ddiagnostics.h40 #define DIAG(ENUM, NAME, ENABLED) ENUM, argument
Ddiagnostics.cpp30 #define DIAG(ENUM, NAME, ENABLED) {NAME, DiagnosticOption{DiagnosticID::ENUM, NAME, ENABLED}}, argument
36 #define DIAG(ENUM, NAME, ENABLED) {DiagnosticID::ENUM, NAME}, argument
Daidl_language_l.ll135 return yy::parser::token::ENUM;
Daidl_language_y.yy111 %token<token> ENUM "enum"
580 : ENUM identifier enum_decl_body {
/system/tools/hidl/c2hal/
DCompositeDeclaration.cpp73 mQualifier == Type::Qualifier::ENUM); in generateSource()
77 if (mQualifier == Type::Qualifier::ENUM) { in generateSource()
168 CHECK(mQualifier == Type::Qualifier::ENUM); in setEnumTypeName()
DType.h45 ENUM enumerator
74 case Qualifier::ENUM: return "enum"; in qualifierText()
Dc2hal_y.yy80 * both start with STRUCT/UNION/ENUM opt_id
90 %token ENUM
117 %right STRUCT ENUM
309 : ENUM
310 | ENUM CLASS /* c++11 */
311 | ENUM STRUCT /* c++11 */
326 $$ = new CompositeDeclaration(Type::Qualifier::ENUM, $2, $6);
522 | enum_key { $$ = new Type::Qualifier(Type::Qualifier::ENUM); }
DType.cpp132 case Type::Qualifier::ENUM: in getHidlType()
DAST.cpp225 Type::Qualifier::ENUM, in isolateConstants()
Dc2hal_l.ll194 "enum" { return ENUM; }
/system/bt/gd/packet/parser/
Dtype_def.h37 ENUM, enumerator
Dgen_rust.cc128 if (e.second->GetDefinitionType() == TypeDef::Type::ENUM) { in generate_rust_source_one_file()
145 if (e.second->GetDefinitionType() == TypeDef::Type::ENUM) { in generate_rust_source_one_file()
Denum_def.cc49 return TypeDef::Type::ENUM; in GetDefinitionType()
Dgen_cpp.cc149 if (e.second->GetDefinitionType() == TypeDef::Type::ENUM) { in generate_cpp_headers_one_file()
157 if (e.second->GetDefinitionType() == TypeDef::Type::ENUM) { in generate_cpp_headers_one_file()
335 if (e.second->GetDefinitionType() == TypeDef::Type::ENUM) { in generate_pybind11_sources_one_file()
346 if (e.second->GetDefinitionType() == TypeDef::Type::ENUM) { in generate_pybind11_sources_one_file()
Dlanguage_y.yy62 %token ENUM "enum"
127 DEBUG() << "FOUND ENUM\n\n";
158 : ENUM IDENTIFIER ':' INTEGER '{' enumeration_list ',' '}'
544 …EnumDef* enum_def = (type_def->GetDefinitionType() == TypeDef::Type::ENUM ? (EnumDef*)type_def : n…
694 …EnumDef* enum_def = (type_def->GetDefinitionType() == TypeDef::Type::ENUM ? (EnumDef*)type_def : n…
Dlanguage_l.ll72 "enum" { return(token::ENUM); }
/system/security/keystore/include/keystore/
Dkeymaster_types.h104 constexpr int32_t KM_TAG_DIGEST_OLD = static_cast<int32_t>(TagType::ENUM) | 5;
105 constexpr int32_t KM_TAG_PADDING_OLD = static_cast<int32_t>(TagType::ENUM) | 7;
/system/libvintf/
Dparse_string.cpp89 #define DEFINE_PARSE_STREAMIN_FOR_ENUM(ENUM) \ argument
90 bool parse(const std::string &s, ENUM *hf) { \
91 return parseEnum(s, hf, g##ENUM##Strings); \
93 std::ostream &operator<<(std::ostream &os, ENUM hf) { \
94 return os << g##ENUM##Strings.at(static_cast<size_t>(hf)); \
/system/keymaster/ng/include/
Dkeymaster_tags.h92 static const int32_t KM_TAG_DIGEST_OLD = static_cast<int32_t>(TagType::ENUM) | 5;
93 static const int32_t KM_TAG_PADDING_OLD = static_cast<int32_t>(TagType::ENUM) | 7;
/system/tools/hidl/
Dhidl-gen_l.ll105 "enum" { return token::ENUM; }
Dhidl-gen_y.yy236 %token<void> ENUM "keyword `enum`"
1020 : ENUM valid_type_name enum_storage_type
/system/security/keystore2/src/
Dkey_parameter.rs1059 TagType::ENUM | TagType::ENUM_REP => {} in get_field_by_tag_type()
Dlegacy_blob.rs497 TagType::ENUM | TagType::ENUM_REP | TagType::UINT | TagType::UINT_REP => { in read_key_parameters()