Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyWasmObjectWriter.cpp60 static bool IsFunctionType(const MCValue &Target) { in IsFunctionType() function
110 if (IsFunctionType(Target)) in getRelocType()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBType.h117 bool IsFunctionType();
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBType.cpp194 bool SBType::IsFunctionType() { in IsFunctionType() function in SBType
197 return m_opaque_sp->GetCompilerType(true).IsFunctionType(); in IsFunctionType()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DCompilerType.h100 bool IsFunctionType(bool *is_variadic_ptr = nullptr) const;
H A DTypeSystem.h157 virtual bool IsFunctionType(lldb::opaque_compiler_type_t type,
H A DClangASTContext.h572 bool IsFunctionType(lldb::opaque_compiler_type_t type,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DCompilerType.cpp115 bool CompilerType::IsFunctionType(bool *is_variadic_ptr) const { in IsFunctionType() function in CompilerType
117 return m_type_system->IsFunctionType(m_type, is_variadic_ptr); in IsFunctionType()
H A DClangASTContext.cpp3095 bool ClangASTContext::IsFunctionType(lldb::opaque_compiler_type_t type, in IsFunctionType() function in ClangASTContext
3117 return IsFunctionType(llvm::cast<clang::TypedefType>(qual_type) in IsFunctionType()
3123 return IsFunctionType(llvm::cast<clang::AutoType>(qual_type) in IsFunctionType()
3128 return IsFunctionType(llvm::cast<clang::ElaboratedType>(qual_type) in IsFunctionType()
3133 return IsFunctionType( in IsFunctionType()
3141 return IsFunctionType(reference_type->getPointeeType().getAsOpaquePtr(), in IsFunctionType()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DStackFrame.cpp1592 if (!function_type.IsFunctionType()) { in DoGuessValueAt()