Home
last modified time | relevance | path

Searched refs:MakeAction (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp2507 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 DTestAST.cpp124 In.MakeAction ? In.MakeAction() : std::make_unique<SyntaxOnlyAction>(); in TestAST()
/freebsd/contrib/llvm-project/clang/include/clang/Testing/
H A DTestAST.h66 std::function<std::unique_ptr<FrontendAction>()> MakeAction; member
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DCompilation.h211 template <typename T, typename... Args> T *MakeAction(Args &&... Arg) { in MakeAction() function
/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-actions.h900 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 Dgmock-more-actions.h536 (::testing::internal::MakeAction<F, gmock_Impl>()), \
537 (::testing::internal::MakeAction<F>(impl_))); \
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-actions_test.cc529 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 Dgmock_faq.md291 [`MakeAction()`](#NewMonoActions) or
H A Dgmock_cook_book.md4210 using ::testing::MakeAction;
4223 return MakeAction(new IncrementArgumentAction);