Home
last modified time | relevance | path

Searched refs:GetBar (Results 1 – 4 of 4) sorted by relevance

/external/v8/tools/clang/rewrite_to_chrome_style/tests/
Dfunctions-expected.cc14 static Bar* GetBar() { in GetBar() function
Dmethods-expected.cc188 const Bar& GetBar() const { return bar_; } in GetBar() function in blink::BitVector
/external/googletest/googlemock/docs/
DFrequentlyAskedQuestions.md123 return value.GetBar() < 42;
144 return value.GetBar() < 42;
163 return value.GetBar() < 42;
172 *os << "the Bar property is " << value.GetBar();
190 *listener << "the Bar property is " << value.GetBar();
191 return value.GetBar() < 42;
DCookBook.md66 virtual Bar& GetBar();
67 virtual const Bar& GetBar() const;
75 MOCK_METHOD0(GetBar, Bar&());
76 MOCK_CONST_METHOD0(GetBar, const Bar&());
752 MOCK_METHOD0(GetBar, Bar&());
753 MOCK_CONST_METHOD0(GetBar, const Bar&());
759 EXPECT_CALL(foo, GetBar()) // The non-const GetBar().
761 EXPECT_CALL(Const(foo), GetBar()) // The const GetBar().
1509 MOCK_METHOD0(GetBar, Bar&());
1515 EXPECT_CALL(foo, GetBar())