/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/chromium_org/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/ |
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/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/macho/tests/nasm64/ |
machotest64.asm | 24 ; [18] Perform a 64 Bit relocation in the text section
|
/external/chromium_org/v8/test/mjsunit/compiler/ |
inline-param.js | 66 // Perform the same tests again, but this time with non-trivial
|
/external/v8/test/mjsunit/compiler/ |
inline-param.js | 66 // Perform the same tests again, but this time with non-trivial
|
/external/chromium_org/chrome/browser/resources/image_loader/ |
request.js | 314 // Perform a xhr request. 380 // Perform processing if the url is not a data url, or if there are some
|
/external/chromium_org/chrome_frame/test/ |
mock_ie_event_sink_actions.h | 205 return action.Perform(typename testing::Action<R(HWND)>::ArgumentTuple(hwnd));
|
/external/chromium_org/tools/grit/grit/ |
tclib_unittest.py | 142 'indexing of a database. The \'Perform the initial index of a \r\n'
|
/external/clang/lib/Sema/ |
SemaExprCXX.cpp | 84 // Determine where to perform name lookup. 181 // Perform lookup into the current scope (only). [all...] |
/external/clang/include/clang/Sema/ |
Initialization.h | 624 /// \brief Perform a derived-to-base cast, producing an rvalue. 626 /// \brief Perform a derived-to-base cast, producing an xvalue. 628 /// \brief Perform a derived-to-base cast, producing an lvalue. 638 /// \brief Perform a user-defined conversion, either via a conversion 641 /// \brief Perform a qualification conversion, producing an rvalue. 643 /// \brief Perform a qualification conversion, producing an xvalue. 645 /// \brief Perform a qualification conversion, producing an lvalue. 647 /// \brief Perform a load from a glvalue, producing an rvalue. 649 /// \brief Perform an implicit conversion sequence. 651 /// \brief Perform list-initialization without a constructo [all...] |
/external/chromium_org/chrome/browser/resources/help/ |
help.js | 49 * Perform initial setup.
|
/external/chromium_org/v8/benchmarks/spinning-balls/ |
splay-tree.js | 189 * Perform the splay operation for the given key. Moves the node with
|
/external/chromium_org/v8/tools/gcmole/ |
gcmole.lua | 40 -- Perform dead variable analysis (generates many false positives).
|
/external/chromium_org/v8/tools/ |
splaytree.js | 215 * Perform the splay operation for the given key. Moves the node with
|