Searched refs:MakeAction (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Driver/ |
H A D | Driver.cpp | 2507 Inputs.push_back(C.MakeAction<BindArchAction>(Act, Archs[i])); in BuildUniversalActions() 2514 Actions.push_back(C.MakeAction<LipoJobAction>(Inputs, Act->getType())); in BuildUniversalActions() 2532 C.MakeAction<DsymutilJobAction>(Inputs, types::TY_dSYM)); in BuildUniversalActions() 2539 Actions.push_back(C.MakeAction<VerifyDebugInfoJobAction>( in BuildUniversalActions() 3059 C.MakeAction<InputAction>(IA->getInputArg(), Ty, IA->getId())); in addDeviceDependences() 3107 AL.push_back(C.MakeAction<OffloadAction>(Dep, A->getType())); in appendTopLevelActions() 3355 C.MakeAction<OffloadAction>(DDep, A->getType())); in getDeviceDependences() 3362 C.MakeAction<LinkJobAction>(DeviceActions, types::TY_CUDA_FATBIN); in getDeviceDependences() 3506 C.MakeAction<LinkJobAction>(AL, types::TY_Image); in getDeviceDependences() 3519 C.MakeAction<BackendJobActio in getDeviceDependences() [all...] |
/freebsd/contrib/llvm-project/clang/lib/Testing/ |
H A D | TestAST.cpp | 124 In.MakeAction ? In.MakeAction() : std::make_unique<SyntaxOnlyAction>(); in TestAST()
|
/freebsd/contrib/llvm-project/clang/include/clang/Testing/ |
H A D | TestAST.h | 66 std::function<std::unique_ptr<FrontendAction>()> MakeAction; member
|
/freebsd/contrib/llvm-project/clang/include/clang/Driver/ |
H A D | Compilation.h | 211 template <typename T, typename... Args> T *MakeAction(Args &&... Arg) { in MakeAction() function
|
/freebsd/contrib/googletest/googlemock/include/gmock/ |
H A D | gmock-actions.h | 900 Action<F> MakeAction(ActionInterface<F>* impl) { 2166 ::testing::Action<F> MakeAction() { 2172 ::testing::Action<F> MakeAction(std::shared_ptr<Impl> impl) { 2228 return ::testing::internal::MakeAction<F>(impl_); \ 2269 return ::testing::internal::MakeAction<F, gmock_Impl>(); \
|
H A D | gmock-more-actions.h | 536 (::testing::internal::MakeAction<F, gmock_Impl>()), \ 537 (::testing::internal::MakeAction<F>(impl_))); \
|
/freebsd/contrib/googletest/googlemock/test/ |
H A D | gmock-actions_test.cc | 529 TEST(ActionInterfaceTest, MakeAction) { in TEST() argument 530 Action<MyGlobalFunction> action = MakeAction(new MyActionImpl); in TEST() 1522 WithArgs<2, 1>(MakeAction(new SubtractAction)); in TEST()
|
/freebsd/contrib/googletest/docs/ |
H A D | gmock_faq.md | 291 [`MakeAction()`](#NewMonoActions) or
|
H A D | gmock_cook_book.md | 4210 using ::testing::MakeAction; 4223 return MakeAction(new IncrementArgumentAction);
|