Home
last modified time | relevance | path

Searched defs:enum_type (Results 1 – 13 of 13) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/lang/cpp/enum_types/
H A Dmain.cpp1 #define DEFINE_UNSIGNED_ENUM(suffix, enum_type) \ argument
9 #define DEFINE_SIGNED_ENUM(suffix, enum_type) \ argument
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DOptionValueEnumeration.h25 typedef int64_t enum_type; typedef
/llvm-project-15.0.7/lldb/test/API/python_api/type/
H A Dmain.cpp65 EnumType enum_type; in main() local
/llvm-project-15.0.7/lldb/include/lldb/DataFormatters/
H A DTypeFormat.h200 void SetTypeName(ConstString enum_type) { m_enum_type = enum_type; } in SetTypeName()
/llvm-project-15.0.7/polly/lib/External/isl/interface/
H A Dgenerator.cc228 const EnumType *enum_type = return_type->getAs<EnumType>(); in add_type_subclasses() local
283 const EnumType *enum_type; in handled_sets_enum() local
/llvm-project-15.0.7/lldb/unittests/Symbol/
H A DTestTypeSystemClang.cpp264 CompilerType enum_type = ast.CreateEnumerationType( in TEST_F() local
278 CompilerType enum_type = ast.CreateEnumerationType( in TEST_F() local
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp467 auto enum_type = llvm::dyn_cast<PDBSymbolTypeEnum>(&type); in CreateLLDBTypeFromPDBType() local
1150 bool PDBASTParser::AddEnumValue(CompilerType enum_type, in AddEnumValue()
H A DSymbolFilePDB.cpp1494 if (auto enum_type = llvm::dyn_cast<PDBSymbolTypeEnum>(result.get())) in FindTypesByRegex() local
/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Dvalue-init.cpp28 enum enum_type { negative_number = -1, magic_number = 42 }; enum
/llvm-project-15.0.7/libcxx/test/support/
H A Drapid-cxx-test.h473 enum enum_type { enum
/llvm-project-15.0.7/lldb/unittests/SymbolFile/PDB/
H A DSymbolFilePDBTests.cpp491 lldb::TypeSP enum_type = results.GetTypeAtIndex(0); in TEST_F() local
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp3230 const clang::EnumType *enum_type = llvm::dyn_cast<clang::EnumType>( in IsEnumerationType() local
3246 const clang::EnumType *enum_type = llvm::dyn_cast<clang::EnumType>( in IsScopedEnumerationType() local
5556 const clang::EnumType *enum_type = in ForEachEnumerator() local
7584 if (const EnumType *enum_type = qt->getAs<EnumType>()) { in SetIntegerInitializerForVariable() local
8374 const CompilerType &enum_type, const Declaration &decl, const char *name, in AddEnumerationValueToEnumerationType()
8420 const CompilerType &enum_type, const Declaration &decl, const char *name, in AddEnumerationValueToEnumerationType()
8435 const auto *enum_type = llvm::dyn_cast_or_null<clang::EnumType>(clang_type); in GetEnumerationIntegerType() local
/llvm-project-15.0.7/clang/bindings/python/clang/
H A Dcindex.py1702 def enum_type(self): member in Cursor