Searched refs:function_type (Results 1 – 12 of 12) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBFunction.cpp | 211 Type *function_type = m_opaque_ptr->GetType(); in GetType() local 212 if (function_type) in GetType() 213 sb_type.ref().SetType(function_type->shared_from_this()); in GetType()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangExpressionDeclMap.cpp | 1808 Type *function_type = function->GetType(); in AddOneFunction() local 1874 if (!function_type) { in AddOneFunction() 1879 function_clang_type = function_type->GetFullCompilerType(); in AddOneFunction() 1894 function_type->GetName(), function_type->GetID()); in AddOneFunction() 1903 function_type->GetName(), function_type->GetID()); in AddOneFunction()
|
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | Function.cpp | 561 Type *function_type = GetType(); in GetCompilerType() local 562 if (function_type) in GetCompilerType() 563 return function_type->GetFullCompilerType(); in GetCompilerType()
|
/freebsd/contrib/googletest/googlemock/include/gmock/ |
H A D | gmock-actions.h | 2129 using function_type = R(Args...); 2154 /*function_type=*/function_type, /*return_type=*/R, 2236 template <typename function_type, typename return_type, \ 2253 template <typename function_type, typename return_type, typename args_type, \ 2275 template <typename function_type, typename return_type, \ 2282 template <typename function_type, typename return_type, typename args_type, \
|
H A D | gmock-more-actions.h | 544 template <typename function_type, typename return_type, \ 571 template <typename function_type, typename return_type, typename args_type, \
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | StackFrame.cpp | 1584 CompilerType function_type = sc.function->GetCompilerType(); in DoGuessValueAt() local 1585 if (!function_type.IsFunctionType()) { in DoGuessValueAt() 1588 CompilerType return_type = function_type.GetFunctionReturnType(); in DoGuessValueAt()
|
H A D | Thread.cpp | 1491 Type *function_type = sc.function->GetType(); in ReturnFromFrame() local 1492 if (function_type) { in ReturnFromFrame()
|
/freebsd/contrib/googletest/googlemock/test/ |
H A D | gmock-more-actions_test.cc | 1087 StaticAssertTypeEq<int(bool), function_type>(); in ACTION() 1088 function_type* fp = &Dummy; in ACTION()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
H A D | TypeSystemClang.cpp | 2087 const clang::FunctionProtoType *function_type = in GetDeclarationName() local 2089 if (function_type == nullptr) in GetDeclarationName() 2093 const unsigned int num_params = function_type->getNumParams(); in GetDeclarationName() 2227 TypeSystemClang::CreateBlockPointerType(const CompilerType &function_type) { in CreateBlockPointerType() argument 2229 clang::QualType::getFromOpaquePtr(function_type.GetOpaqueQualType())); in CreateBlockPointerType() 7734 const clang::FunctionType *function_type = in AddMethodToCXXRecordType() local 7737 if (function_type == nullptr) in AddMethodToCXXRecordType() 7741 llvm::dyn_cast<clang::FunctionProtoType>(function_type)); in AddMethodToCXXRecordType() 7816 function_type->getReturnType()))); in AddMethodToCXXRecordType()
|
H A D | TypeSystemClang.h | 496 CompilerType CreateBlockPointerType(const CompilerType &function_type);
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | DWARFASTParserClang.cpp | 727 DWARFDIE function_type = in ParseTypeModifier() local 732 sc, function_type, &function_type_is_new_pointer); in ParseTypeModifier()
|
/freebsd/contrib/googletest/docs/ |
H A D | gmock_cook_book.md | 3977 `function_type` | The type of the mock function 3996 `function_type` | the type `int(bool, int*)`
|