Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBFunction.cpp210 Type *function_type = m_opaque_ptr->GetType(); in GetType() local
211 if (function_type) in GetType()
212 sb_type.ref().SetType(function_type->shared_from_this()); in GetType()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DFunction.cpp572 Type *function_type = GetType(); in GetCompilerType() local
573 if (function_type) in GetCompilerType()
574 return function_type->GetFullCompilerType(); in GetCompilerType()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.cpp1807 Type *function_type = function->GetType(); in AddOneFunction() local
1873 if (!function_type) { in AddOneFunction()
1878 function_clang_type = function_type->GetFullCompilerType(); in AddOneFunction()
1893 function_type->GetName(), function_type->GetID()); in AddOneFunction()
1902 function_type->GetName(), function_type->GetID()); in AddOneFunction()
/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-actions.h2212 using function_type = R(Args...);
2237 /*function_type=*/function_type, /*return_type=*/R,
2319 template <typename function_type, typename return_type, \
2336 template <typename function_type, typename return_type, typename args_type, \
2358 template <typename function_type, typename return_type, \
2365 template <typename function_type, typename return_type, typename args_type, \
H A Dgmock-more-actions.h543 template <typename function_type, typename return_type, \
570 template <typename function_type, typename return_type, typename args_type, \
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp1730 CompilerType function_type = sc.function->GetCompilerType(); in DoGuessValueAt() local
1731 if (!function_type.IsFunctionType()) { in DoGuessValueAt()
1734 CompilerType return_type = function_type.GetFunctionReturnType(); in DoGuessValueAt()
H A DThread.cpp1524 Type *function_type = sc.function->GetType(); in ReturnFromFrame() local
1525 if (function_type) { in ReturnFromFrame()
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-more-actions_test.cc1116 StaticAssertTypeEq<int(bool), function_type>(); in ACTION()
1117 function_type* fp = &Dummy; in ACTION()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp2106 const clang::FunctionProtoType *function_type = in GetDeclarationName() local
2108 if (function_type == nullptr) in GetDeclarationName()
2112 const unsigned int num_params = function_type->getNumParams(); in GetDeclarationName()
2237 TypeSystemClang::CreateBlockPointerType(const CompilerType &function_type) { in CreateBlockPointerType() argument
2239 clang::QualType::getFromOpaquePtr(function_type.GetOpaqueQualType())); in CreateBlockPointerType()
7684 const clang::FunctionType *function_type = in AddMethodToCXXRecordType() local
7687 if (function_type == nullptr) in AddMethodToCXXRecordType()
7691 llvm::dyn_cast<clang::FunctionProtoType>(function_type)); in AddMethodToCXXRecordType()
7766 function_type->getReturnType()))); in AddMethodToCXXRecordType()
H A DTypeSystemClang.h494 CompilerType CreateBlockPointerType(const CompilerType &function_type);
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp821 DWARFDIE function_type = in ParseTypeModifier() local
826 sc, function_type, &function_type_is_new_pointer); in ParseTypeModifier()
/freebsd/contrib/llvm-project/clang/include/clang/CIR/Dialect/IR/
H A DCIROps.td1938 TypeAttrOf<CIR_FuncType>:$function_type,
/freebsd/contrib/googletest/docs/
H A Dgmock_cook_book.md4010 `function_type` | The type of the mock function
4029 `function_type` | the type `int(bool, int*)`