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

/external/googletest/googlemock/include/gmock/
H A Dgmock-more-matchers.h48 MATCHER(IsEmpty, negation ? "isn't empty" : "is empty") { function in namespace:testing
H A Dgmock-generated-matchers.h1166 // The MATCHER* family of macros can be used in a namespace scope to
1174 // MATCHER(name, description_string) { statements; }
1183 // MATCHER() is usually defined in a header file shared by multiple
1191 // MATCHER(IsEven, "") { return (arg % 2) == 0; }
1261 // The last argument to MATCHER*() is a string-typed expression. The
1362 // approaches require more work than the MATCHER* macros, but also
1369 // MATCHER*() can only be used in a namespace scope. The reason is
1372 // Once that's done, we'll consider supporting using MATCHER*() inside
1378 // To learn more about using these macros, please search for 'MATCHER'
1381 #define MATCHER(nam macro
[all...]
/external/v8/testing/gmock/include/gmock/
H A Dgmock-more-matchers.h48 MATCHER(IsEmpty, negation ? "isn't empty" : "is empty") { function in namespace:testing
H A Dgmock-generated-matchers.h1166 // The MATCHER* family of macros can be used in a namespace scope to
1174 // MATCHER(name, description_string) { statements; }
1183 // MATCHER() is usually defined in a header file shared by multiple
1191 // MATCHER(IsEven, "") { return (arg % 2) == 0; }
1261 // The last argument to MATCHER*() is a string-typed expression. The
1362 // approaches require more work than the MATCHER* macros, but also
1369 // MATCHER*() can only be used in a namespace scope. The reason is
1372 // Once that's done, we'll consider supporting using MATCHER*() inside
1378 // To learn more about using these macros, please search for 'MATCHER'
1381 #define MATCHER(nam macro
[all...]
/external/v8/testing/
H A Dgmock-support.h85 MATCHER(IsNaN, std::string(negation ? "isn't" : "is") + " not a number") { function in namespace:testing
/external/google-breakpad/src/testing/test/
H A Dgmock-generated-matchers_test.cc141 // The MATCHER*() macros trigger warning C4100 (unreferenced formal
151 MATCHER(SumIsZero, "") { function in namespace:__anon7035
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:__anon7035
608 MATCHER(IsEven2, negation ? "is odd" : "is even") { function in namespace:__anon7035
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:__anon7035
669 MATCHER(IsEmptyStringByRef, "") { function in namespace:__anon7035
685 MATCHER(IsOdd, "") { return (arg % 2) != 0; } function in namespace:__anon7035::matcher_test
695 MATCHER(IsPositiveOdd, "") { function in namespace:__anon7035
826 MATCHER(EqualsSumOf, "") { return arg == 0; } function in namespace:__anon7035
1117 MATCHER(M, "") { return true; } function in namespace:__anon7035::adl_test
[all...]
/external/googletest/googlemock/test/
H A Dgmock-generated-matchers_test.cc142 // The MATCHER*() macros trigger warning C4100 (unreferenced formal
152 MATCHER(SumIsZero, "") { function in namespace:__anon7123
721 // Tests for the MATCHER*() macro family.
723 // Tests that a simple MATCHER() definition works.
725 MATCHER(IsEven, "") { return (arg % 2) == 0; } function in namespace:__anon7123
739 MATCHER(IsEven2, negation ? "is odd" : "is even") { function in namespace:__anon7123
742 // supplied by the MATCHER macro implicitly.
781 // Tests explaining match result in a MATCHER* macro.
792 // Tests that the body of MATCHER() can reference the type of the
795 MATCHER(IsEmptyStrin function in namespace:__anon7123
800 MATCHER(IsEmptyStringByRef, "") { function in namespace:__anon7123
816 MATCHER(IsOdd, "") { return (arg % 2) != 0; } function in namespace:__anon7123::matcher_test
826 MATCHER(IsPositiveOdd, "") { function in namespace:__anon7123
957 MATCHER(EqualsSumOf, "") { return arg == 0; } function in namespace:__anon7123
1262 MATCHER(M, "") { return true; } function in namespace:__anon7123::adl_test
[all...]
/external/v8/testing/gmock/test/
H A Dgmock-generated-matchers_test.cc143 // The MATCHER*() macros trigger warning C4100 (unreferenced formal
153 MATCHER(SumIsZero, "") { function in namespace:__anon23540
722 // Tests for the MATCHER*() macro family.
724 // Tests that a simple MATCHER() definition works.
726 MATCHER(IsEven, "") { return (arg % 2) == 0; } function in namespace:__anon23540
740 MATCHER(IsEven2, negation ? "is odd" : "is even") { function in namespace:__anon23540
743 // supplied by the MATCHER macro implicitly.
782 // Tests explaining match result in a MATCHER* macro.
793 // Tests that the body of MATCHER() can reference the type of the
796 MATCHER(IsEmptyStrin function in namespace:__anon23540
801 MATCHER(IsEmptyStringByRef, "") { function in namespace:__anon23540
817 MATCHER(IsOdd, "") { return (arg % 2) != 0; } function in namespace:__anon23540::matcher_test
827 MATCHER(IsPositiveOdd, "") { function in namespace:__anon23540
958 MATCHER(EqualsSumOf, "") { return arg == 0; } function in namespace:__anon23540
1262 MATCHER(M, "") { return true; } function in namespace:__anon23540::adl_test
[all...]
/external/libchrome/base/trace_event/
H A Dmemory_dump_manager_unittest.cc44 MATCHER(IsDetailedDump, "") { function in namespace:base::trace_event
48 MATCHER(IsLightDump, "") { function in namespace:base::trace_event
52 MATCHER(IsBackgroundDump, "") { function in namespace:base::trace_event
/external/googletest/googlemock/
H A DREADME.md305 Matchers defined using `MATCHER()` or `MATCHER_P*()` aren't affected.
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-generated-matchers.h1197 // The MATCHER* family of macros can be used in a namespace scope to
1205 // MATCHER(name, description_string) { statements; }
1214 // MATCHER() is usually defined in a header file shared by multiple
1222 // MATCHER(IsEven, "") { return (arg % 2) == 0; }
1292 // The last argument to MATCHER*() is a string-typed expression. The
1393 // approaches require more work than the MATCHER* macros, but also
1400 // MATCHER*() can only be used in a namespace scope. The reason is
1403 // Once that's done, we'll consider supporting using MATCHER*() inside
1409 // To learn more about using these macros, please search for 'MATCHER'
1412 #define MATCHER(nam macro
[all...]
/external/fmtlib/test/gmock/
H A Dgmock.h7957 // Returns the description for a matcher defined using the MATCHER*()
12874 // The MATCHER* family of macros can be used in a namespace scope to
12882 // MATCHER(name, description_string) { statements; }
12891 // MATCHER() is usually defined in a header file shared by multiple
12899 // MATCHER(IsEven, "") { return (arg % 2) == 0; }
12969 // The last argument to MATCHER*() is a string-typed expression. The
13070 // approaches require more work than the MATCHER* macros, but also
13077 // MATCHER*() can only be used in a namespace scope. The reason is
13080 // Once that's done, we'll consider supporting using MATCHER*() inside
13086 // To learn more about using these macros, please search for 'MATCHER'
13089 #define MATCHER macro
[all...]
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.core.resources_3.10.0.v20150423-0755.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/dagger2/lib/
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...

Completed in 529 milliseconds