Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/API/
DSBType.cpp242 bool SBType::IsFunctionType() { in IsFunctionType() function in SBType
243 LLDB_RECORD_METHOD_NO_ARGS(bool, SBType, IsFunctionType); in IsFunctionType()
247 return m_opaque_sp->GetCompilerType(true).IsFunctionType(); in IsFunctionType()
934 LLDB_REGISTER_METHOD(bool, SBType, IsFunctionType, ()); in RegisterMethods()
/external/llvm-project/lldb/include/lldb/API/
DSBType.h122 bool IsFunctionType();
/external/llvm-project/lldb/include/lldb/Symbol/
DCompilerType.h99 bool IsFunctionType() const;
DTypeSystem.h155 virtual bool IsFunctionType(lldb::opaque_compiler_type_t type) = 0;
/external/llvm-project/lldb/source/Symbol/
DCompilerType.cpp95 bool CompilerType::IsFunctionType() const { in IsFunctionType() function in CompilerType
97 return m_type_system->IsFunctionType(m_type); in IsFunctionType()
/external/llvm-project/lldb/bindings/interface/
DSBType.i206 IsFunctionType ();
/external/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
DTypeSystemClang.h581 bool IsFunctionType(lldb::opaque_compiler_type_t type) override;
DTypeSystemClang.cpp2918 bool TypeSystemClang::IsFunctionType(lldb::opaque_compiler_type_t type) { in IsFunctionType() function in TypeSystemClang
2935 return IsFunctionType( in IsFunctionType()
/external/llvm-project/lldb/source/Target/
DStackFrame.cpp1590 if (!function_type.IsFunctionType()) { in DoGuessValueAt()