Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/test/API/python_api/type/
H A DTestTypeList.py164 int_scoped_enum_type = scoped_enum_type.GetEnumerationIntegerType()
172 int_enum_uchar = enum_uchar.GetEnumerationIntegerType()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBType.i482 ") GetEnumerationIntegerType;
484 GetEnumerationIntegerType();
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBType.h158 lldb::SBType GetEnumerationIntegerType();
/llvm-project-15.0.7/lldb/source/API/
H A DSBType.cpp345 SBType SBType::GetEnumerationIntegerType() { in GetEnumerationIntegerType() function in SBType
350 m_opaque_sp->GetCompilerType(true).GetEnumerationIntegerType()); in GetEnumerationIntegerType()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DCompilerType.cpp353 CompilerType CompilerType::GetEnumerationIntegerType() const { in GetEnumerationIntegerType() function in CompilerType
355 return m_type_system->GetEnumerationIntegerType(m_type); in GetEnumerationIntegerType()
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DCompilerType.h193 CompilerType GetEnumerationIntegerType() const;
H A DTypeSystem.h230 GetEnumerationIntegerType(lldb::opaque_compiler_type_t type) = 0;
/llvm-project-15.0.7/lldb/unittests/Symbol/
H A DTestTypeSystemClang.cpp239 EXPECT_FALSE(m_ast->GetEnumerationIntegerType(CompilerType()).IsValid()); in TEST_F()
244 CompilerType t = m_ast->GetEnumerationIntegerType(int_type); in TEST_F()
268 CompilerType t = ast.GetEnumerationIntegerType(enum_type); in TEST_F()
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h671 GetEnumerationIntegerType(lldb::opaque_compiler_type_t type) override;
926 CompilerType GetEnumerationIntegerType(CompilerType type);
H A DTypeSystemClang.cpp4300 TypeSystemClang::GetEnumerationIntegerType(lldb::opaque_compiler_type_t type) { in GetEnumerationIntegerType() function in TypeSystemClang
4302 return GetEnumerationIntegerType(GetType(GetCanonicalQualType(type))); in GetEnumerationIntegerType()
8422 CompilerType underlying_type = GetEnumerationIntegerType(enum_type); in AddEnumerationValueToEnumerationType()
8432 CompilerType TypeSystemClang::GetEnumerationIntegerType(CompilerType type) { in GetEnumerationIntegerType() function in TypeSystemClang
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp1185 CompilerType underlying_type = m_ast.GetEnumerationIntegerType(enum_type); in AddEnumValue()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp836 enumerator_clang_type = m_ast.GetEnumerationIntegerType(clang_type); in ParseEnum()