Home
last modified time | relevance | path

Searched refs:function_type (Results 1 – 12 of 12) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBFunction.cpp197 Type *function_type = m_opaque_ptr->GetType(); in GetType() local
198 if (function_type) in GetType()
199 sb_type.ref().SetType(function_type->shared_from_this()); in GetType()
/freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/
H A DFunction.cpp560 Type *function_type = GetType(); in GetCompilerType() local
561 if (function_type) in GetCompilerType()
562 return function_type->GetFullCompilerType(); in GetCompilerType()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.cpp1813 Type *function_type = function->GetType(); in AddOneFunction() local
1879 if (!function_type) { in AddOneFunction()
1884 function_clang_type = function_type->GetFullCompilerType(); in AddOneFunction()
1899 function_type->GetName(), function_type->GetID()); in AddOneFunction()
1908 function_type->GetName(), function_type->GetID()); in AddOneFunction()
/freebsd-14.2/contrib/googletest/googlemock/include/gmock/
H A Dgmock-actions.h2105 using function_type = R(Args...);
2130 /*function_type=*/function_type, /*return_type=*/R,
2212 template <typename function_type, typename return_type, \
2229 template <typename function_type, typename return_type, typename args_type, \
2251 template <typename function_type, typename return_type, \
2258 template <typename function_type, typename return_type, typename args_type, \
H A Dgmock-more-actions.h544 template <typename function_type, typename return_type, \
571 template <typename function_type, typename return_type, typename args_type, \
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp1591 CompilerType function_type = sc.function->GetCompilerType(); in DoGuessValueAt() local
1592 if (!function_type.IsFunctionType()) { in DoGuessValueAt()
1595 CompilerType return_type = function_type.GetFunctionReturnType(); in DoGuessValueAt()
H A DThread.cpp1478 Type *function_type = sc.function->GetType(); in ReturnFromFrame() local
1479 if (function_type) { in ReturnFromFrame()
/freebsd-14.2/contrib/googletest/googlemock/test/
H A Dgmock-more-actions_test.cc1049 StaticAssertTypeEq<int(bool), function_type>(); in ACTION()
1050 function_type* fp = &Dummy; in ACTION()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp2135 const clang::FunctionProtoType *function_type = in GetDeclarationName() local
2137 if (function_type == nullptr) in GetDeclarationName()
2141 const unsigned int num_params = function_type->getNumParams(); in GetDeclarationName()
2275 TypeSystemClang::CreateBlockPointerType(const CompilerType &function_type) { in CreateBlockPointerType() argument
2277 clang::QualType::getFromOpaquePtr(function_type.GetOpaqueQualType())); in CreateBlockPointerType()
7575 const clang::FunctionType *function_type = in AddMethodToCXXRecordType() local
7578 if (function_type == nullptr) in AddMethodToCXXRecordType()
7582 llvm::dyn_cast<clang::FunctionProtoType>(function_type)); in AddMethodToCXXRecordType()
7656 function_type->getReturnType()))); in AddMethodToCXXRecordType()
H A DTypeSystemClang.h491 CompilerType CreateBlockPointerType(const CompilerType &function_type);
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp700 DWARFDIE function_type = in ParseTypeModifier() local
705 sc, function_type, &function_type_is_new_pointer); in ParseTypeModifier()
/freebsd-14.2/contrib/googletest/docs/
H A Dgmock_cook_book.md3942 `function_type` | The type of the mock function
3961 `function_type` | the type `int(bool, int*)`