Lines Matching defs:const

114   MOCK_METHOD1(ByRefFunc, void(const Incomplete& x));
118 void PrintTo(const Incomplete& x, ::std::ostream* os);
132 void PrintTo(const Incomplete& /* x */, ::std::ostream* os) {
643 const std::string output = GetCapturedStdout();
685 const std::string output = GetCapturedStdout();
880 const std::string output1 = GetCapturedStdout();
886 const std::string output2 = GetCapturedStdout();
906 const std::string output = GetCapturedStdout();
1087 const ::testing::TestPartResult& r = failures.GetTestPartResult(0);
1464 const Expectation e2;
1469 ExpectationSet es5 = e2; // Ctor from const Expectation.
1470 ExpectationSet es6(e2); // Ctor from const Expectation; alternative syntax.
1563 // The following also verifies that const Expectation objects work
1564 // too. Do not remove the const modifiers.
1565 const Expectation e1 = EXPECT_CALL(a, DoA(1));
1566 const Expectation e2 = EXPECT_CALL(b, DoB())
1633 const ExpectationSet es = EXPECT_CALL(a, DoA(2));
1653 const ExpectationSet es = EXPECT_CALL(a, DoA(2));
1767 MockB* const b1 = new MockB;
1768 MockA* const a = new MockA;
1769 MockB* const b2 = new MockB;
1795 MockB* const b1 = new MockB;
1796 MockA* const a = new MockA;
1797 MockB* const b2 = new MockB;
1833 MockA* const a = new MockA;
1839 MockA* const a = new MockA;
1847 MockB* const b1 = new MockB;
1848 MockA* const a = new MockA;
1849 MockB* const b2 = new MockB;
1873 MockB* const b1 = new MockB;
1874 MockA* const a = new MockA;
1875 MockB* const b2 = new MockB;
1899 virtual bool IsSatisfiedByCallCount(int call_count) const {
1904 virtual bool IsSaturatedByCallCount(int /* call_count */) const {
1909 virtual void DescribeTo(::std::ostream* os) const {
1944 inline void operator<<(::std::ostream& os, const Printable&) {
1958 const Printable& x, Unprintable y));
1973 const string saved_verbose_flag_;
1989 const std::string output = GetCapturedStdout();
2003 const std::string output = GetCapturedStdout();
2020 const std::string output2 = GetCapturedStdout();
2034 const std::string output1 = GetCapturedStdout();
2046 const std::string output2 = GetCapturedStdout();
2064 void VerifyOutput(const std::string& output, bool should_print,
2065 const string& expected_substring,
2066 const string& function_name) {
2116 const string note =
2487 // expectations are set on a const mock object.