Searched refs:Perform (Results 1 - 21 of 21) sorted by relevance

/freebsd-13-stable/contrib/googletest/googlemock/test/
H A Dgmock-generated-actions_test.cc171 EXPECT_EQ(1, a.Perform(make_tuple(2, &Nullary)));
177 EXPECT_EQ(1, a.Perform(make_tuple(UnaryFunctor())));
184 EXPECT_EQ(12345, a.Perform(make_tuple(&SumOf5)));
191 EXPECT_EQ(12345, a.Perform(make_tuple(SumOf5Functor())));
198 EXPECT_EQ(123456, a.Perform(make_tuple(&SumOf6)));
205 EXPECT_EQ(123456, a.Perform(make_tuple(SumOf6Functor())));
214 EXPECT_EQ("1234567", a.Perform(make_tuple(&Concat7)));
223 EXPECT_EQ("12345678", a.Perform(make_tuple(&Concat8)));
232 EXPECT_EQ("123456789", a.Perform(make_tuple(&Concat9)));
241 EXPECT_EQ("1234567890", a.Perform(make_tupl
370 virtual int Perform(const tuple<int, int>& args) { function in class:testing::gmock_generated_actions_test::SubstractAction
[all...]
H A Dgmock-actions_test.cc379 // Perform method.
385 virtual int Perform(const tuple<bool, int>& args) { function in class:__anon794::MyActionImpl
398 // When exercising the Perform() method of Action<F>, we must pass
400 // types. For example, if F is int(), then Perform() takes a
401 // 0-tuple; if F is void(bool, int), then Perform() takes a
403 EXPECT_EQ(5, action.Perform(make_tuple(true, 5)));
416 EXPECT_EQ(5, action.Perform(make_tuple(true, 5)));
417 EXPECT_EQ(0, action.Perform(make_tuple(false, 1)));
426 EXPECT_EQ(5, a1.Perform(make_tuple(true, 5)));
427 EXPECT_EQ(0, a1.Perform(make_tupl
449 virtual bool Perform(const tuple<int>& arg) { function in class:__anon794::IsNotZero
478 Result Perform(const ArgumentTuple& args) { return get<1>(args); } function in class:__anon794::ReturnSecondArgumentAction
493 Result Perform(const tuple<>&) const { return 0; } function in class:__anon794::ReturnZeroFromNullaryFunctionAction
[all...]
H A Dgmock-more-actions_test.cc235 EXPECT_EQ(1, a.Perform(make_tuple()));
241 EXPECT_FALSE(a.Perform(make_tuple(1)));
242 EXPECT_TRUE(a.Perform(make_tuple(-1)));
249 EXPECT_EQ(p + 2, a.Perform(make_tuple(p, Short(2))));
255 EXPECT_EQ(6, a.Perform(make_tuple(1, '\2', Short(3))));
261 EXPECT_EQ(1234, a.Perform(make_tuple(1000, 200, 30, 4)));
267 EXPECT_EQ(12345, a.Perform(make_tuple(10000, 2000, 300, 40, 5)));
273 EXPECT_EQ(123456, a.Perform(make_tuple(100000, 20000, 3000, 400, 50, 6)));
286 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"),
297 a.Perform(make_tupl
[all...]
/freebsd-13-stable/contrib/googletest/googlemock/include/gmock/
H A Dgmock-actions.h341 virtual Result Perform(const ArgumentTuple& args) = 0;
401 Result Perform(ArgumentTuple args) const { function in class:testing::Action
410 return impl_->Perform(args);
437 // implementation class that has a Perform() method template:
442 // Result Perform(const ArgumentTuple& args) const {
472 virtual Result Perform(const ArgumentTuple& args) { function in class:testing::PolymorphicAction::MonomorphicImpl
473 return impl_.template Perform<Result>(args);
518 virtual Result Perform(const ArgumentTuple& args) { function in class:testing::internal::ActionAdaptor
519 return impl_->Perform(args);
609 virtual Result Perform(cons function in class:testing::internal::ReturnAction::Impl
633 virtual Result Perform(const ArgumentTuple&) { function in class:testing::internal::ReturnAction::Impl
659 static Result Perform(const ArgumentTuple&) { function in class:testing::internal::ReturnNullAction
675 static void Perform(const ArgumentTuple&) { function in class:testing::internal::ReturnVoidAction
712 virtual Result Perform(const ArgumentTuple&) { function in class:testing::internal::ReturnRefAction::Impl
761 virtual Result Perform(const ArgumentTuple&) { function in class:testing::internal::ReturnRefOfCopyAction::Impl
793 void Perform(const ArgumentTuple& /* args */) const { function in class:testing::internal::AssignAction
815 Result Perform(const ArgumentTuple& /* args */) const { function in class:testing::internal::SetErrnoAndReturnAction
841 void Perform(const ArgumentTuple& args) const { function in class:testing::internal::SetArgumentPointeeAction
864 void Perform(const ArgumentTuple& args) const { function in class:testing::internal::SetArgumentPointeeAction
891 Result Perform(const ArgumentTuple&) { return function_impl_(); } function in class:testing::internal::InvokeWithoutArgsAction
907 Result Perform(const ArgumentTuple&) const { function in class:testing::internal::InvokeMethodWithoutArgsAction
932 Result Perform(const ArgumentTuple&) const { return callback_->Run(); } function in class:testing::internal::InvokeCallbackWithoutArgsAction
973 virtual void Perform(const ArgumentTuple& args) { function in class:testing::internal::IgnoreResultAction::Impl
1048 virtual Result Perform(const ArgumentTuple& args) { function in class:testing::internal::DoBothAction::Impl
[all...]
H A Dgmock-more-actions.h61 Result Perform(const ArgumentTuple& args) { function in class:testing::internal::InvokeAction
79 Result Perform(const ArgumentTuple& args) const { function in class:testing::internal::InvokeMethodAction
H A Dgmock-generated-actions.h338 Result Perform(const ArgumentTuple& args) const { function in class:testing::internal::InvokeCallbackAction
553 virtual Result Perform(const ArgumentTuple& args) { function in class:testing::internal::WithArgsAction::Impl
554 return action_.Perform(SelectArgs<Result, ArgumentTuple, k1, k2, k3, k4,
590 static Result Perform(Impl* impl, const ::testing::tuple<>& args) { function in class:testing::internal::ActionHelper
598 static Result Perform(Impl* impl, const ::testing::tuple<A0>& args) { function in class:testing::internal::ActionHelper
606 static Result Perform(Impl* impl, const ::testing::tuple<A0, A1>& args) { function in class:testing::internal::ActionHelper
614 static Result Perform(Impl* impl, const ::testing::tuple<A0, A1, A2>& args) { function in class:testing::internal::ActionHelper
622 static Result Perform(Impl* impl, const ::testing::tuple<A0, A1, A2, function in class:testing::internal::ActionHelper
631 static Result Perform(Impl* impl, const ::testing::tuple<A0, A1, A2, A3, function in class:testing::internal::ActionHelper
641 static Result Perform(Imp function in class:testing::internal::ActionHelper
651 static Result Perform(Impl* impl, const ::testing::tuple<A0, A1, A2, A3, A4, function in class:testing::internal::ActionHelper
661 static Result Perform(Impl* impl, const ::testing::tuple<A0, A1, A2, A3, A4, function in class:testing::internal::ActionHelper
671 static Result Perform(Impl* impl, const ::testing::tuple<A0, A1, A2, A3, A4, function in class:testing::internal::ActionHelper
681 static Result Perform(Impl* impl, const ::testing::tuple<A0, A1, A2, A3, A4, function in class:testing::internal::ActionHelper
[all...]
H A Dgmock-spec-builders.h1416 Wrapper(action.Perform(internal::move(args))));
1456 action.Perform(internal::move(args));
1517 return spec->GetAction().Perform(internal::move(args));
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_malloc_mac.inc391 // Perform any sanitizer specific initialization.
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DInitialization.h787 /// Perform a derived-to-base cast, producing an rvalue.
790 /// Perform a derived-to-base cast, producing an xvalue.
793 /// Perform a derived-to-base cast, producing an lvalue.
811 /// Perform a user-defined conversion, either via a conversion
815 /// Perform a qualification conversion, producing an rvalue.
818 /// Perform a qualification conversion, producing an xvalue.
821 /// Perform a qualification conversion, producing an lvalue.
824 /// Perform a conversion adding _Atomic to a type.
827 /// Perform an implicit conversion sequence.
830 /// Perform a
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaLambda.cpp826 // Perform initialization analysis and ensure any implicit conversions
843 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Args, &DclT);
1537 return InitSeq.Perform(*this, Entity, InitKind, InitExpr);
H A DSemaExprCXX.cpp1479 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Exprs);
2270 ExprResult FullInit = InitSeq.Perform(*this, Entity, Kind,
2677 // Perform template argument deduction to try to match the
3374 // Perform lvalue-to-rvalue cast, if needed.
3924 /// PerformImplicitConversion - Perform an implicit conversion of the
4026 /// PerformImplicitConversion - Perform an implicit conversion of the
4092 // Perform the first implicit conversion.
4127 // Perform the second implicit conversion
4296 // Perform half-to-boolean conversion via float.
5134 // Perform th
[all...]
H A DSemaDeclCXX.cpp275 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Arg);
1244 E = Seq.Perform(S, Entity, Kind, Init);
2898 // we're going to produce a diagnostic. Perform the derived-to-base
3950 Init = Seq.Perform(*this, Entity, Kind, InitExpr);
4315 ExprResult MemberInit = InitSeq.Perform(*this, MemberEntity, Kind, Args,
4368 ExprResult DelegationInit = InitSeq.Perform(*this, DelegationEntity, Kind,
4502 ExprResult BaseInit = InitSeq.Perform(*this, BaseEntity, Kind, Args, nullptr);
4572 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, None);
4610 BaseInit = InitSeq.Perform(SemaRef, InitEntity, InitKind, CopyCtorArg);
4707 InitSeq.Perform(SemaRe
[all...]
H A DSemaCoroutine.cpp569 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, CtorArgExprs);
H A DSemaInit.cpp592 : InitSeq.Perform(SemaRef, Entity, Kind, SubInit);
1376 ExprResult Result = Seq.Perform(SemaRef, TmpEntity, Kind, expr);
2402 : Seq.Perform(SemaRef, Entity, Kind, Init);
3983 // Perform overload resolution and return the result.
4579 // Perform overload resolution. If it fails, return the failed result.
4752 // Perform a (possibly multi-level) qualification conversion.
5240 // Perform overload resolution. If it fails, return the failed result.
5966 // Perform initialization
6158 // Perform overload resolution using the class's constructors. Per
6307 // Perform overloa
[all...]
H A DSemaCast.cpp1744 ExprResult Result = InitSeq.Perform(Self, Entity, InitKind, SrcExprRaw);
H A DSemaStmt.cpp1854 // Perform normal l-value conversion.
2682 // In OpenMP loop region loop control variable must be private. Perform
3141 Res = Seq.Perform(S, Entity, Kind, Value);
3145 /// Perform the initialization of a potentially-movable value, which
H A DSemaExprObjC.cpp408 return Seq.Perform(S, Entity, Kind, Element);
413 // Perform lvalue-to-rvalue conversion.
781 // Perform lvalue-to-rvalue conversion on the base.
H A DSemaExpr.cpp2362 // Perform the required lookup.
2633 /// inside an ObjC method. Perform some additional checks and determine if we
2772 /// inside an ObjC method. Perform some additional checks and determine if we
3673 // Perform literal operator lookup to determine if we're building a raw
4700 return InitSeq.Perform(*this, Entity, Kind, E);
4866 // Perform default conversions.
5382 // Perform default conversions.
6779 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, LiteralExpr,
13697 ExprResult Init = InitSeq.Perform(*this, Entity, Kind, RHSExpr);
15625 // Perform arra
[all...]
H A DSemaTemplateInstantiateDecl.cpp1204 // has been explicitly set by the user. Perform substitution on it before
2858 // Perform the actual substitution of template parameters within a new,
4313 Result = InitSeq.Perform(*this, Entity, Kind, ResultE);
H A DSemaDecl.cpp345 // Perform "qualified" name lookup into the declaration context we
361 // Perform unqualified name lookup.
887 // Perform lookup for Objective-C instance variables (including automatically
951 // Perform typo correction to determine if there is another name that is
1973 // Perform typo correction at the given location, but only if we
6133 /// ActOnTypedefNameDecl - Perform semantic checking for a declaration which
8020 /// Perform semantic checking on a newly-created variable
9349 // Perform semantic checking on the function declaration.
9500 // Perform semantic checking on the function declaration.
10553 /// Perform semanti
[all...]
H A DSemaOpenMP.cpp14099 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Init);
14612 // Perform ADL.
17267 // Perform argument dependent lookup.

Completed in 522 milliseconds