Home
last modified time | relevance | path

Searched refs:IsTypedefType (Results 1 – 13 of 13) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/lang/cpp/typedef/
H A DTestCppTypedef.py35 self.assertTrue(typedef_type.IsTypedefType())
52 self.assertTrue(typedef_type.IsTypedefType())
/llvm-project-15.0.7/lldb/source/DataFormatters/
H A DFormatManager.cpp206 if (non_ref_type.IsTypedefType()) { in GetPossibleMatches()
223 if (non_ptr_type.IsTypedefType()) { in GetPossibleMatches()
242 if (element_type.IsTypedefType()) { in GetPossibleMatches()
269 if (compiler_type.IsTypedefType()) { in GetPossibleMatches()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBType.i328 ") IsTypedefType;
330 IsTypedefType ();
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBType.h130 bool IsTypedefType();
/llvm-project-15.0.7/lldb/source/API/
H A DSBType.cpp252 bool SBType::IsTypedefType() { in IsTypedefType() function in SBType
257 return m_opaque_sp->GetCompilerType(true).IsTypedefType(); in IsTypedefType()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DCompilerType.cpp230 bool CompilerType::IsTypedefType() const { in IsTypedefType() function in CompilerType
233 return m_type_system->IsTypedefType(m_type); in IsTypedefType()
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DCompilerType.h145 bool IsTypedefType() const;
H A DTypeSystem.h443 virtual bool IsTypedefType(lldb::opaque_compiler_type_t type) = 0;
/llvm-project-15.0.7/lldb/unittests/SymbolFile/PDB/
H A DSymbolFilePDBTests.cpp546 clang_type_system->IsTypedefType(compiler_type.GetOpaqueQualType())); in TEST_F()
/llvm-project-15.0.7/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.cpp1053 if (candidate.IsTypedefType()) in GetTypeScavenger()
/llvm-project-15.0.7/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.cpp1251 if (candidate.IsTypedefType()) in GetTypeScavenger()
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h627 bool IsTypedefType(lldb::opaque_compiler_type_t type) override;
H A DTypeSystemClang.cpp3671 bool TypeSystemClang::IsTypedefType(lldb::opaque_compiler_type_t type) { in IsTypedefType() function in TypeSystemClang