Home
last modified time | relevance | path

Searched refs:IsInterested (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/googletest/googlemock/src/
H A Dgmock-matchers.cc383 if (matrix.LhsSize() != 0 && listener->IsInterested()) { in VerifyMatchMatrix()
408 if (listener->IsInterested()) { in VerifyMatchMatrix()
426 if (listener->IsInterested()) { in VerifyMatchMatrix()
444 if (listener->IsInterested()) { in FindPairing()
455 if (listener->IsInterested()) { in FindPairing()
466 if (listener->IsInterested()) { in FindPairing()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Testing/Support/
H A DError.h44 if (result || !listener->IsInterested()) in MatchAndExplain()
/freebsd-14.2/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h590 if (!listener->IsInterested()) { in MatchPrintAndExplain()
1705 if (listener->IsInterested()) {
2543 if (!listener->IsInterested()) {
2656 if (listener->IsInterested()) {
2745 if (listener->IsInterested()) {
3087 if (!listener->IsInterested()) {
3309 if (!listener->IsInterested()) {
3425 const bool listener_interested = listener->IsInterested();
3665 if (listener->IsInterested()) {
3950 if (!listener->IsInterested()) {
[all …]
/freebsd-14.2/contrib/googletest/googlemock/test/
H A Dgmock-matchers-comparisons_test.cc83 EXPECT_TRUE(StringMatchResultListener().IsInterested()); in TEST()
84 EXPECT_TRUE(StreamMatchResultListener(&std::cout).IsInterested()); in TEST()
86 EXPECT_FALSE(DummyMatchResultListener().IsInterested()); in TEST()
87 EXPECT_FALSE(StreamMatchResultListener(nullptr).IsInterested()); in TEST()
H A Dgmock-matchers-containers_test.cc2512 return !listener->IsInterested(); in MatchAndExplain()
2522 return listener->IsInterested(); in MatchAndExplain()
/freebsd-14.2/contrib/googletest/googletest/include/gtest/
H A Dgtest-matchers.h101 bool IsInterested() const { return stream_ != nullptr; } in IsInterested() function