Searched refs:MATCHER (Results 1 - 6 of 6) sorted by relevance

/external/chromium/testing/gmock/test/
H A Dgmock-generated-matchers_test.cc141 // The MATCHER*() macros trigger warning C4100 (unreferenced formal
151 MATCHER(SumIsZero, "") { function in namespace:__anon2409
590 // Tests for the MATCHER*() macro family.
592 // Tests that a simple MATCHER() definition works.
594 MATCHER(IsEven, "") { return (arg % 2) == 0; } function in namespace:__anon2409
608 MATCHER(IsEven2, negation ? "is odd" : "is even") { function in namespace:__anon2409
611 // supplied by the MATCHER macro implicitly.
650 // Tests explaining match result in a MATCHER* macro.
661 // Tests that the body of MATCHER() can reference the type of the
664 MATCHER(IsEmptyStrin function in namespace:__anon2409
669 MATCHER(IsEmptyStringByRef, "") { function in namespace:__anon2409
685 MATCHER(IsOdd, "") { return (arg % 2) != 0; } function in namespace:__anon2409::matcher_test
695 MATCHER(IsPositiveOdd, "") { function in namespace:__anon2409
826 MATCHER(EqualsSumOf, "") { return arg == 0; } function in namespace:__anon2409
1103 MATCHER(M, "") { return true; } function in namespace:__anon2409::adl_test
[all...]
/external/chromium/chrome/browser/profiles/
H A Dprofile_manager_unittest.cc176 MATCHER(SameNotNull, "The same non-NULL value for all cals.") { function
/external/chromium/chrome/browser/password_manager/
H A Dpassword_store_default_unittest.cc147 MATCHER(EmptyWDResult, "") { function
H A Dpassword_store_win_unittest.cc145 MATCHER(EmptyWDResult, "") { function
H A Dpassword_store_x_unittest.cc328 MATCHER(EmptyWDResult, "") { function
/external/chromium/testing/gmock/include/gmock/
H A Dgmock-generated-matchers.h1041 // The MATCHER* family of macros can be used in a namespace scope to
1049 // MATCHER(name, description_string) { statements; }
1058 // MATCHER() is usually defined in a header file shared by multiple
1066 // MATCHER(IsEven, "") { return (arg % 2) == 0; }
1136 // The last argument to MATCHER*() is a string-typed expression. The
1237 // approaches require more work than the MATCHER* macros, but also
1244 // MATCHER*() can only be used in a namespace scope. The reason is
1247 // Once that's done, we'll consider supporting using MATCHER*() inside
1253 // To learn more about using these macros, please search for 'MATCHER'
1256 #define MATCHER(nam macro
[all...]

Completed in 259 milliseconds