Home
last modified time | relevance | path

Searched refs:IsScopedEnumerationType (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/python_api/type/
H A DTestTypeList.py156 self.assertFalse(enum_type.IsScopedEnumerationType())
162 self.assertTrue(scoped_enum_type.IsScopedEnumerationType())
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBType.i353 ") IsScopedEnumerationType;
355 IsScopedEnumerationType ();
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBType.h134 bool IsScopedEnumerationType();
/llvm-project-15.0.7/lldb/source/API/
H A DSBType.cpp268 bool SBType::IsScopedEnumerationType() { in IsScopedEnumerationType() function in SBType
273 return m_opaque_sp->GetCompilerType(true).IsScopedEnumerationType(); in IsScopedEnumerationType()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DCompilerType.cpp43 bool CompilerType::IsScopedEnumerationType() const { in IsScopedEnumerationType() function in CompilerType
45 return m_type_system->IsScopedEnumerationType(m_type); in IsScopedEnumerationType()
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DCompilerType.h87 bool IsScopedEnumerationType() const;
H A DTypeSystem.h177 virtual bool IsScopedEnumerationType(lldb::opaque_compiler_type_t type) = 0;
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h592 bool IsScopedEnumerationType(lldb::opaque_compiler_type_t type) override;
H A DTypeSystemClang.cpp3243 bool TypeSystemClang::IsScopedEnumerationType( in IsScopedEnumerationType() function in TypeSystemClang