Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBFunction.cpp211 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 DClangExpressionDeclMap.cpp1808 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 DFunction.cpp561 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 Dgmock-actions.h2129 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 Dgmock-more-actions.h544 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 DStackFrame.cpp1584 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 DThread.cpp1491 Type *function_type = sc.function->GetType(); in ReturnFromFrame() local
1492 if (function_type) { in ReturnFromFrame()
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-more-actions_test.cc1087 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 DTypeSystemClang.cpp2087 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 DTypeSystemClang.h496 CompilerType CreateBlockPointerType(const CompilerType &function_type);
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp727 DWARFDIE function_type = in ParseTypeModifier() local
732 sc, function_type, &function_type_is_new_pointer); in ParseTypeModifier()
/freebsd/contrib/googletest/docs/
H A Dgmock_cook_book.md3977 `function_type` | The type of the mock function
3996 `function_type` | the type `int(bool, int*)`