HomeSort by relevance Sort by last modified time
    Searched defs:Perform (Results 1 - 6 of 6) sorted by null

  /external/chromium/testing/gmock/include/gmock/
gmock-more-actions.h 60 Result Perform(const ArgumentTuple& args) {
78 Result Perform(const ArgumentTuple& args) const {
113 // non-empty argument list to perform inner_action, which takes no
gmock-actions.h 262 virtual Result Perform(const ArgumentTuple& args) = 0;
310 Result Perform(const ArgumentTuple& args) const {
318 return impl_->Perform(args);
333 // implementation class that has a Perform() method template:
338 // Result Perform(const ArgumentTuple& args) const {
368 virtual Result Perform(const ArgumentTuple& args) {
369 return impl_.template Perform<Result>(args);
414 virtual Result Perform(const ArgumentTuple& args) {
415 return impl_->Perform(args);
493 virtual Result Perform(const ArgumentTuple&) { return value_;
    [all...]
gmock-generated-actions.h 605 virtual Result Perform(const ArgumentTuple& args) {
606 return action_.Perform(SelectArgs<Result, ArgumentTuple, k1, k2, k3, k4,
642 static Result Perform(Impl* impl, const ::std::tr1::tuple<>& args) {
651 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0>& args) {
660 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1>& args) {
669 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2>& args) {
678 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2,
688 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2, A3,
699 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2, A3, A4,
710 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0, A1, A2, A3, A4
    [all...]
  /external/chromium/testing/gmock/test/
gmock-actions_test.cc 324 // Perform method.
330 virtual int Perform(const tuple<bool, int>& args) {
343 // When exercising the Perform() method of Action<F>, we must pass
345 // types. For example, if F is int(), then Perform() takes a
346 // 0-tuple; if F is void(bool, int), then Perform() takes a
348 EXPECT_EQ(5, action.Perform(make_tuple(true, 5)));
361 EXPECT_EQ(5, action.Perform(make_tuple(true, 5)));
362 EXPECT_EQ(0, action.Perform(make_tuple(false, 1)));
371 EXPECT_EQ(5, a1.Perform(make_tuple(true, 5)));
372 EXPECT_EQ(0, a1.Perform(make_tuple(false, 1)))
    [all...]
gmock-generated-actions_test.cc 172 EXPECT_EQ(1, a.Perform(make_tuple(2, &Nullary)));
178 EXPECT_EQ(1, a.Perform(make_tuple(UnaryFunctor())));
185 EXPECT_EQ(12345, a.Perform(make_tuple(&SumOf5)));
192 EXPECT_EQ(12345, a.Perform(make_tuple(SumOf5Functor())));
199 EXPECT_EQ(123456, a.Perform(make_tuple(&SumOf6)));
206 EXPECT_EQ(123456, a.Perform(make_tuple(SumOf6Functor())));
215 EXPECT_EQ("1234567", a.Perform(make_tuple(&Concat7)));
224 EXPECT_EQ("12345678", a.Perform(make_tuple(&Concat8)));
233 EXPECT_EQ("123456789", a.Perform(make_tuple(&Concat9)));
243 EXPECT_EQ("1234567890", a.Perform(make_tuple(&Concat10)))
    [all...]
  /external/clang/lib/Sema/
SemaInit.cpp 324 = InitSeq.Perform(SemaRef, MemberEntity, Kind, MultiExprArg());
349 /// with expressions that perform value-initialization of the
433 = InitSeq.Perform(SemaRef, ElementEntity, Kind, MultiExprArg());
    [all...]

Completed in 178 milliseconds