Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBType.h122 bool IsFunctionType();
/llvm-project-15.0.7/lldb/source/API/
H A DSBType.cpp236 bool SBType::IsFunctionType() { in IsFunctionType() function in SBType
241 return m_opaque_sp->GetCompilerType(true).IsFunctionType(); in IsFunctionType()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DCompilerType.cpp101 bool CompilerType::IsFunctionType() const { in IsFunctionType() function in CompilerType
103 return m_type_system->IsFunctionType(m_type); in IsFunctionType()
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DCompilerType.h103 bool IsFunctionType() const;
H A DTypeSystem.h154 virtual bool IsFunctionType(lldb::opaque_compiler_type_t type) = 0;
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBType.i276 IsFunctionType ();
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h570 bool IsFunctionType(lldb::opaque_compiler_type_t type) override;
H A DTypeSystemClang.cpp3011 bool TypeSystemClang::IsFunctionType(lldb::opaque_compiler_type_t type) { in IsFunctionType() function in TypeSystemClang
3028 return IsFunctionType( in IsFunctionType()
/llvm-project-15.0.7/lldb/source/Target/
H A DStackFrame.cpp1585 if (!function_type.IsFunctionType()) { in DoGuessValueAt()