Lines Matching +refs:Sign +refs:File
268 class File : public FileInterface {
1775 EXPECT_CALL(log, Log(WARNING, _, "File too large.")) // #1
1784 as soon as either #2 or #3 is matched, #1 will retire. If a warning `"File too
1794 EXPECT_CALL(log, Log(WARNING, _, "File too large.")); // #2
1797 says that there will be exactly one warning with the message `"File too
1808 EXPECT_CALL(log, Log(WARNING, _, "File too large.")) // #2
1813 `"File too large."`, the first will match #2 and the second will match #1 -
2146 ON_CALL(foo, Sign(_))
2148 ON_CALL(foo, Sign(0))
2150 ON_CALL(foo, Sign(Gt(0)))
2153 EXPECT_CALL(foo, Sign(_))
2156 foo.Sign(5); // This should return 1.
2157 foo.Sign(-9); // This should return -1.
2158 foo.Sign(0); // This should return 0.
2891 // File mock_foo.h.
2908 // File mock_foo.h.
2925 // File mock_foo.cc.