Home
last modified time | relevance | path

Searched refs:IsFunctionPointerType (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DCompilerType.h110 bool IsFunctionPointerType() const;
H A DTypeSystem.h167 virtual bool IsFunctionPointerType(lldb::opaque_compiler_type_t type) = 0;
H A DClangASTContext.h584 bool IsFunctionPointerType(lldb::opaque_compiler_type_t type) override;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DCompilerType.cpp142 bool CompilerType::IsFunctionPointerType() const { in IsFunctionPointerType() function in CompilerType
144 return m_type_system->IsFunctionPointerType(m_type); in IsFunctionPointerType()
H A DClangASTContext.cpp3277 bool ClangASTContext::IsFunctionPointerType(lldb::opaque_compiler_type_t type) { in IsFunctionPointerType() function in ClangASTContext
3289 return IsFunctionPointerType(llvm::cast<clang::TypedefType>(qual_type) in IsFunctionPointerType()
3294 return IsFunctionPointerType(llvm::cast<clang::AutoType>(qual_type) in IsFunctionPointerType()
3298 return IsFunctionPointerType(llvm::cast<clang::ElaboratedType>(qual_type) in IsFunctionPointerType()
3302 return IsFunctionPointerType( in IsFunctionPointerType()
3310 return IsFunctionPointerType( in IsFunctionPointerType()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.cpp980 if (valobj.GetCompilerType().IsFunctionPointerType()) { in GetHardcodedSummaries()