HomeSort by relevance Sort by last modified time
    Searched refs:Perform (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium/testing/gmock/test/
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...]
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-more-actions_test.cc 235 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_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3")
    [all...]
  /external/chromium/testing/gmock/include/gmock/
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-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-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...]
gmock-spec-builders.h     [all...]
  /external/v8/test/mjsunit/
megamorphic-callbacks.js 58 // Perform the load checks.
62 // Perform the store checks.
68 // Perform the call checks.
object-literal-gc.js 50 // Perform GC.
debug-multiple-breakpoints.js 75 // Perform the same test using function g (this time removing the break points
  /external/v8/test/mjsunit/compiler/
inline-param.js 66 // Perform the same tests again, but this time with non-trivial
  /external/clang/include/clang/Sema/
Initialization.h 561 /// \brief Perform a derived-to-base cast, producing an rvalue.
563 /// \brief Perform a derived-to-base cast, producing an xvalue.
565 /// \brief Perform a derived-to-base cast, producing an lvalue.
575 /// \brief Perform a user-defined conversion, either via a conversion
578 /// \brief Perform a qualification conversion, producing an rvalue.
580 /// \brief Perform a qualification conversion, producing an xvalue.
582 /// \brief Perform a qualification conversion, producing an lvalue.
584 /// \brief Perform an implicit conversion sequence.
586 /// \brief Perform list-initialization without a constructor
588 /// \brief Perform list-initialization with a constructor
    [all...]
  /external/clang/lib/Sema/
SemaExprCXX.cpp 46 // Determine where to perform name lookup.
143 // Perform lookup into the current scope (only).
    [all...]
SemaDeclCXX.cpp 249 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Arg);
    [all...]
SemaInit.cpp 323 = InitSeq.Perform(SemaRef, MemberEntity, Kind, MultiExprArg());
348 /// with expressions that perform value-initialization of the
432 = InitSeq.Perform(SemaRef, ElementEntity, Kind, MultiExprArg());
    [all...]
SemaCast.cpp     [all...]
  /external/v8/benchmarks/spinning-balls/
splay-tree.js 189 * Perform the splay operation for the given key. Moves the node with
v.js 322 // Perform perspective projection.
  /external/v8/tools/gcmole/
gcmole.lua 40 -- Perform dead variable analysis (generates many false positives).
  /external/v8/tools/
splaytree.js 215 * Perform the splay operation for the given key. Moves the node with
  /cts/suite/pts/hostTests/browser/browserlauncher/assets/octane/
splay.js 284 * Perform the splay operation for the given key. Moves the node with
  /external/v8/benchmarks/
splay.js 284 * Perform the splay operation for the given key. Moves the node with
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-splay.js 263 * Perform the splay operation for the given key. Moves the node with
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
v8-splay.js 263 * Perform the splay operation for the given key. Moves the node with
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
v8-splay.js 279 * Perform the splay operation for the given key. Moves the node with

Completed in 575 milliseconds

1 2