googletest/googletest/include/gtest/gtest-matchers.h
Go to the documentation of this file.
1 // Copyright 2007, Google Inc.
2 // All rights reserved.
3 //
4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are
6 // met:
7 //
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above
11 // copyright notice, this list of conditions and the following disclaimer
12 // in the documentation and/or other materials provided with the
13 // distribution.
14 // * Neither the name of Google Inc. nor the names of its
15 // contributors may be used to endorse or promote products derived from
16 // this software without specific prior written permission.
17 //
18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 
30 // The Google C++ Testing and Mocking Framework (Google Test)
31 //
32 // This file implements just enough of the matcher interface to allow
33 // EXPECT_DEATH and friends to accept a matcher argument.
34 
35 // IWYU pragma: private, include "gtest/gtest.h"
36 // IWYU pragma: friend gtest/.*
37 // IWYU pragma: friend gmock/.*
38 
39 #ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_MATCHERS_H_
40 #define GOOGLETEST_INCLUDE_GTEST_GTEST_MATCHERS_H_
41 
42 #include <atomic>
43 #include <memory>
44 #include <ostream>
45 #include <string>
46 #include <type_traits>
47 
48 #include "gtest/gtest-printers.h"
49 #include "gtest/internal/gtest-internal.h"
50 #include "gtest/internal/gtest-port.h"
51 
52 // MSVC warning C5046 is new as of VS2017 version 15.8.
53 #if defined(_MSC_VER) && _MSC_VER >= 1915
54 #define GTEST_MAYBE_5046_ 5046
55 #else
56 #define GTEST_MAYBE_5046_
57 #endif
58 
60  4251 GTEST_MAYBE_5046_ /* class A needs to have dll-interface to be used by
61  clients of class B */
62  /* Symbol involving type with internal linkage not defined */)
63 
64 namespace testing {
65 
66 // To implement a matcher Foo for type T, define:
67 // 1. a class FooMatcherMatcher that implements the matcher interface:
68 // using is_gtest_matcher = void;
69 // bool MatchAndExplain(const T&, std::ostream*);
70 // (MatchResultListener* can also be used instead of std::ostream*)
71 // void DescribeTo(std::ostream*);
72 // void DescribeNegationTo(std::ostream*);
73 //
74 // 2. a factory function that creates a Matcher<T> object from a
75 // FooMatcherMatcher.
76 
77 class MatchResultListener {
78  public:
79  // Creates a listener object with the given underlying ostream. The
80  // listener does not own the ostream, and does not dereference it
81  // in the constructor or destructor.
82  explicit MatchResultListener(::std::ostream* os) : stream_(os) {}
83  virtual ~MatchResultListener() = 0; // Makes this class abstract.
84 
85  // Streams x to the underlying ostream; does nothing if the ostream
86  // is NULL.
87  template <typename T>
89  if (stream_ != nullptr) *stream_ << x;
90  return *this;
91  }
92 
93  // Returns the underlying ostream.
94  ::std::ostream* stream() { return stream_; }
95 
96  // Returns true if and only if the listener is interested in an explanation
97  // of the match result. A matcher's MatchAndExplain() method can use
98  // this information to avoid generating the explanation when no one
99  // intends to hear it.
100  bool IsInterested() const { return stream_ != nullptr; }
101 
102  private:
103  ::std::ostream* const stream_;
104 
106 };
107 
109 }
110 
111 // An instance of a subclass of this knows how to describe itself as a
112 // matcher.
113 class GTEST_API_ MatcherDescriberInterface {
114  public:
115  virtual ~MatcherDescriberInterface() {}
116 
117  // Describes this matcher to an ostream. The function should print
118  // a verb phrase that describes the property a value matching this
119  // matcher should have. The subject of the verb phrase is the value
120  // being matched. For example, the DescribeTo() method of the Gt(7)
121  // matcher prints "is greater than 7".
122  virtual void DescribeTo(::std::ostream* os) const = 0;
123 
124  // Describes the negation of this matcher to an ostream. For
125  // example, if the description of this matcher is "is greater than
126  // 7", the negated description could be "is not greater than 7".
127  // You are not required to override this when implementing
128  // MatcherInterface, but it is highly advised so that your matcher
129  // can produce good error messages.
130  virtual void DescribeNegationTo(::std::ostream* os) const {
131  *os << "not (";
132  DescribeTo(os);
133  *os << ")";
134  }
135 };
136 
137 // The implementation of a matcher.
138 template <typename T>
139 class MatcherInterface : public MatcherDescriberInterface {
140  public:
141  // Returns true if and only if the matcher matches x; also explains the
142  // match result to 'listener' if necessary (see the next paragraph), in
143  // the form of a non-restrictive relative clause ("which ...",
144  // "whose ...", etc) that describes x. For example, the
145  // MatchAndExplain() method of the Pointee(...) matcher should
146  // generate an explanation like "which points to ...".
147  //
148  // Implementations of MatchAndExplain() should add an explanation of
149  // the match result *if and only if* they can provide additional
150  // information that's not already present (or not obvious) in the
151  // print-out of x and the matcher's description. Whether the match
152  // succeeds is not a factor in deciding whether an explanation is
153  // needed, as sometimes the caller needs to print a failure message
154  // when the match succeeds (e.g. when the matcher is used inside
155  // Not()).
156  //
157  // For example, a "has at least 10 elements" matcher should explain
158  // what the actual element count is, regardless of the match result,
159  // as it is useful information to the reader; on the other hand, an
160  // "is empty" matcher probably only needs to explain what the actual
161  // size is when the match fails, as it's redundant to say that the
162  // size is 0 when the value is already known to be empty.
163  //
164  // You should override this method when defining a new matcher.
165  //
166  // It's the responsibility of the caller (Google Test) to guarantee
167  // that 'listener' is not NULL. This helps to simplify a matcher's
168  // implementation when it doesn't care about the performance, as it
169  // can talk to 'listener' without checking its validity first.
170  // However, in order to implement dummy listeners efficiently,
171  // listener->stream() may be NULL.
172  virtual bool MatchAndExplain(T x, MatchResultListener* listener) const = 0;
173 
174  // Inherits these methods from MatcherDescriberInterface:
175  // virtual void DescribeTo(::std::ostream* os) const = 0;
176  // virtual void DescribeNegationTo(::std::ostream* os) const;
177 };
178 
179 namespace internal {
180 
181 struct AnyEq {
182  template <typename A, typename B>
183  bool operator()(const A& a, const B& b) const { return a == b; }
184 };
185 struct AnyNe {
186  template <typename A, typename B>
187  bool operator()(const A& a, const B& b) const { return a != b; }
188 };
189 struct AnyLt {
190  template <typename A, typename B>
191  bool operator()(const A& a, const B& b) const { return a < b; }
192 };
193 struct AnyGt {
194  template <typename A, typename B>
195  bool operator()(const A& a, const B& b) const { return a > b; }
196 };
197 struct AnyLe {
198  template <typename A, typename B>
199  bool operator()(const A& a, const B& b) const { return a <= b; }
200 };
201 struct AnyGe {
202  template <typename A, typename B>
203  bool operator()(const A& a, const B& b) const { return a >= b; }
204 };
205 
206 // A match result listener that ignores the explanation.
207 class DummyMatchResultListener : public MatchResultListener {
208  public:
210 
211  private:
213 };
214 
215 // A match result listener that forwards the explanation to a given
216 // ostream. The difference between this and MatchResultListener is
217 // that the former is concrete.
218 class StreamMatchResultListener : public MatchResultListener {
219  public:
220  explicit StreamMatchResultListener(::std::ostream* os)
221  : MatchResultListener(os) {}
222 
223  private:
225 };
226 
227 struct SharedPayloadBase {
228  std::atomic<int> ref{1};
229  void Ref() { ref.fetch_add(1, std::memory_order_relaxed); }
230  bool Unref() { return ref.fetch_sub(1, std::memory_order_acq_rel) == 1; }
231 };
232 
233 template <typename T>
234 struct SharedPayload : SharedPayloadBase {
235  explicit SharedPayload(const T& v) : value(v) {}
236  explicit SharedPayload(T&& v) : value(std::move(v)) {}
237 
238  static void Destroy(SharedPayloadBase* shared) {
239  delete static_cast<SharedPayload*>(shared);
240  }
241 
242  T value;
243 };
244 
245 // An internal class for implementing Matcher<T>, which will derive
246 // from it. We put functionalities common to all Matcher<T>
247 // specializations here to avoid code duplication.
248 template <typename T>
249 class MatcherBase : private MatcherDescriberInterface {
250  public:
251  // Returns true if and only if the matcher matches x; also explains the
252  // match result to 'listener'.
253  bool MatchAndExplain(const T& x, MatchResultListener* listener) const {
254  GTEST_CHECK_(vtable_ != nullptr);
255  return vtable_->match_and_explain(*this, x, listener);
256  }
257 
258  // Returns true if and only if this matcher matches x.
259  bool Matches(const T& x) const {
260  DummyMatchResultListener dummy;
261  return MatchAndExplain(x, &dummy);
262  }
263 
264  // Describes this matcher to an ostream.
265  void DescribeTo(::std::ostream* os) const final {
266  GTEST_CHECK_(vtable_ != nullptr);
267  vtable_->describe(*this, os, false);
268  }
269 
270  // Describes the negation of this matcher to an ostream.
271  void DescribeNegationTo(::std::ostream* os) const final {
272  GTEST_CHECK_(vtable_ != nullptr);
273  vtable_->describe(*this, os, true);
274  }
275 
276  // Explains why x matches, or doesn't match, the matcher.
277  void ExplainMatchResultTo(const T& x, ::std::ostream* os) const {
278  StreamMatchResultListener listener(os);
279  MatchAndExplain(x, &listener);
280  }
281 
282  // Returns the describer for this matcher object; retains ownership
283  // of the describer, which is only guaranteed to be alive when
284  // this matcher object is alive.
285  const MatcherDescriberInterface* GetDescriber() const {
286  if (vtable_ == nullptr) return nullptr;
287  return vtable_->get_describer(*this);
288  }
289 
290  protected:
291  MatcherBase() : vtable_(nullptr) {}
292 
293  // Constructs a matcher from its implementation.
294  template <typename U>
295  explicit MatcherBase(const MatcherInterface<U>* impl) {
296  Init(impl);
297  }
298 
299  template <typename M, typename = typename std::remove_reference<
300  M>::type::is_gtest_matcher>
301  MatcherBase(M&& m) { // NOLINT
302  Init(std::forward<M>(m));
303  }
304 
305  MatcherBase(const MatcherBase& other)
306  : vtable_(other.vtable_), buffer_(other.buffer_) {
307  if (IsShared()) buffer_.shared->Ref();
308  }
309 
310  MatcherBase& operator=(const MatcherBase& other) {
311  if (this == &other) return *this;
312  Destroy();
313  vtable_ = other.vtable_;
314  buffer_ = other.buffer_;
315  if (IsShared()) buffer_.shared->Ref();
316  return *this;
317  }
318 
319  MatcherBase(MatcherBase&& other)
320  : vtable_(other.vtable_), buffer_(other.buffer_) {
321  other.vtable_ = nullptr;
322  }
323 
324  MatcherBase& operator=(MatcherBase&& other) {
325  if (this == &other) return *this;
326  Destroy();
327  vtable_ = other.vtable_;
328  buffer_ = other.buffer_;
329  other.vtable_ = nullptr;
330  return *this;
331  }
332 
333  ~MatcherBase() override { Destroy(); }
334 
335  private:
336  struct VTable {
337  bool (*match_and_explain)(const MatcherBase&, const T&,
338  MatchResultListener*);
339  void (*describe)(const MatcherBase&, std::ostream*, bool negation);
340  // Returns the captured object if it implements the interface, otherwise
341  // returns the MatcherBase itself.
342  const MatcherDescriberInterface* (*get_describer)(const MatcherBase&);
343  // Called on shared instances when the reference count reaches 0.
344  void (*shared_destroy)(SharedPayloadBase*);
345  };
346 
347  bool IsShared() const {
348  return vtable_ != nullptr && vtable_->shared_destroy != nullptr;
349  }
350 
351  // If the implementation uses a listener, call that.
352  template <typename P>
353  static auto MatchAndExplainImpl(const MatcherBase& m, const T& value,
354  MatchResultListener* listener)
355  -> decltype(P::Get(m).MatchAndExplain(value, listener->stream())) {
356  return P::Get(m).MatchAndExplain(value, listener->stream());
357  }
358 
359  template <typename P>
360  static auto MatchAndExplainImpl(const MatcherBase& m, const T& value,
361  MatchResultListener* listener)
362  -> decltype(P::Get(m).MatchAndExplain(value, listener)) {
363  return P::Get(m).MatchAndExplain(value, listener);
364  }
365 
366  template <typename P>
367  static void DescribeImpl(const MatcherBase& m, std::ostream* os,
368  bool negation) {
369  if (negation) {
370  P::Get(m).DescribeNegationTo(os);
371  } else {
372  P::Get(m).DescribeTo(os);
373  }
374  }
375 
376  template <typename P>
377  static const MatcherDescriberInterface* GetDescriberImpl(
378  const MatcherBase& m) {
379  // If the impl is a MatcherDescriberInterface, then return it.
380  // Otherwise use MatcherBase itself.
381  // This allows us to implement the GetDescriber() function without support
382  // from the impl, but some users really want to get their impl back when
383  // they call GetDescriber().
384  // We use std::get on a tuple as a workaround of not having `if constexpr`.
385  return std::get<(
386  std::is_convertible<decltype(&P::Get(m)),
387  const MatcherDescriberInterface*>::value
388  ? 1
389  : 0)>(std::make_tuple(&m, &P::Get(m)));
390  }
391 
392  template <typename P>
393  const VTable* GetVTable() {
394  static constexpr VTable kVTable = {&MatchAndExplainImpl<P>,
395  &DescribeImpl<P>, &GetDescriberImpl<P>,
396  P::shared_destroy};
397  return &kVTable;
398  }
399 
400  union Buffer {
401  // Add some types to give Buffer some common alignment/size use cases.
402  void* ptr;
403  double d;
404  int64_t i;
405  // And add one for the out-of-line cases.
406  SharedPayloadBase* shared;
407  };
408 
409  void Destroy() {
410  if (IsShared() && buffer_.shared->Unref()) {
411  vtable_->shared_destroy(buffer_.shared);
412  }
413  }
414 
415  template <typename M>
416  static constexpr bool IsInlined() {
417  return sizeof(M) <= sizeof(Buffer) && alignof(M) <= alignof(Buffer) &&
420  }
421 
422  template <typename M, bool = MatcherBase::IsInlined<M>()>
423  struct ValuePolicy {
424  static const M& Get(const MatcherBase& m) {
425  // When inlined along with Init, need to be explicit to avoid violating
426  // strict aliasing rules.
427  const M *ptr = static_cast<const M*>(
428  static_cast<const void*>(&m.buffer_));
429  return *ptr;
430  }
431  static void Init(MatcherBase& m, M impl) {
432  ::new (static_cast<void*>(&m.buffer_)) M(impl);
433  }
434  static constexpr auto shared_destroy = nullptr;
435  };
436 
437  template <typename M>
438  struct ValuePolicy<M, false> {
439  using Shared = SharedPayload<M>;
440  static const M& Get(const MatcherBase& m) {
441  return static_cast<Shared*>(m.buffer_.shared)->value;
442  }
443  template <typename Arg>
444  static void Init(MatcherBase& m, Arg&& arg) {
445  m.buffer_.shared = new Shared(std::forward<Arg>(arg));
446  }
447  static constexpr auto shared_destroy = &Shared::Destroy;
448  };
449 
450  template <typename U, bool B>
451  struct ValuePolicy<const MatcherInterface<U>*, B> {
452  using M = const MatcherInterface<U>;
453  using Shared = SharedPayload<std::unique_ptr<M>>;
454  static const M& Get(const MatcherBase& m) {
455  return *static_cast<Shared*>(m.buffer_.shared)->value;
456  }
457  static void Init(MatcherBase& m, M* impl) {
458  m.buffer_.shared = new Shared(std::unique_ptr<M>(impl));
459  }
460 
461  static constexpr auto shared_destroy = &Shared::Destroy;
462  };
463 
464  template <typename M>
465  void Init(M&& m) {
466  using MM = typename std::decay<M>::type;
467  using Policy = ValuePolicy<MM>;
468  vtable_ = GetVTable<Policy>();
469  Policy::Init(*this, std::forward<M>(m));
470  }
471 
472  const VTable* vtable_;
473  Buffer buffer_;
474 };
475 
476 } // namespace internal
477 
478 // A Matcher<T> is a copyable and IMMUTABLE (except by assignment)
479 // object that can check whether a value of type T matches. The
480 // implementation of Matcher<T> is just a std::shared_ptr to const
481 // MatcherInterface<T>. Don't inherit from Matcher!
482 template <typename T>
483 class Matcher : public internal::MatcherBase<T> {
484  public:
485  // Constructs a null matcher. Needed for storing Matcher objects in STL
486  // containers. A default-constructed matcher is not yet initialized. You
487  // cannot use it until a valid value has been assigned to it.
488  explicit Matcher() {} // NOLINT
489 
490  // Constructs a matcher from its implementation.
491  explicit Matcher(const MatcherInterface<const T&>* impl)
492  : internal::MatcherBase<T>(impl) {}
493 
494  template <typename U>
495  explicit Matcher(
496  const MatcherInterface<U>* impl,
497  typename std::enable_if<!std::is_same<U, const U&>::value>::type* =
498  nullptr)
499  : internal::MatcherBase<T>(impl) {}
500 
501  template <typename M, typename = typename std::remove_reference<
502  M>::type::is_gtest_matcher>
503  Matcher(M&& m) : internal::MatcherBase<T>(std::forward<M>(m)) {} // NOLINT
504 
505  // Implicit constructor here allows people to write
506  // EXPECT_CALL(foo, Bar(5)) instead of EXPECT_CALL(foo, Bar(Eq(5))) sometimes
507  Matcher(T value); // NOLINT
508 };
509 
510 // The following two specializations allow the user to write str
511 // instead of Eq(str) and "foo" instead of Eq("foo") when a std::string
512 // matcher is expected.
513 template <>
514 class GTEST_API_ Matcher<const std::string&>
515  : public internal::MatcherBase<const std::string&> {
516  public:
517  Matcher() {}
518 
519  explicit Matcher(const MatcherInterface<const std::string&>* impl)
520  : internal::MatcherBase<const std::string&>(impl) {}
521 
522  template <typename M, typename = typename std::remove_reference<
523  M>::type::is_gtest_matcher>
524  Matcher(M&& m) // NOLINT
525  : internal::MatcherBase<const std::string&>(std::forward<M>(m)) {}
526 
527  // Allows the user to write str instead of Eq(str) sometimes, where
528  // str is a std::string object.
529  Matcher(const std::string& s); // NOLINT
530 
531  // Allows the user to write "foo" instead of Eq("foo") sometimes.
532  Matcher(const char* s); // NOLINT
533 };
534 
535 template <>
536 class GTEST_API_ Matcher<std::string>
537  : public internal::MatcherBase<std::string> {
538  public:
539  Matcher() {}
540 
541  explicit Matcher(const MatcherInterface<const std::string&>* impl)
542  : internal::MatcherBase<std::string>(impl) {}
543  explicit Matcher(const MatcherInterface<std::string>* impl)
544  : internal::MatcherBase<std::string>(impl) {}
545 
546  template <typename M, typename = typename std::remove_reference<
547  M>::type::is_gtest_matcher>
548  Matcher(M&& m) // NOLINT
549  : internal::MatcherBase<std::string>(std::forward<M>(m)) {}
550 
551  // Allows the user to write str instead of Eq(str) sometimes, where
552  // str is a string object.
553  Matcher(const std::string& s); // NOLINT
554 
555  // Allows the user to write "foo" instead of Eq("foo") sometimes.
556  Matcher(const char* s); // NOLINT
557 };
558 
559 #if GTEST_INTERNAL_HAS_STRING_VIEW
560 // The following two specializations allow the user to write str
561 // instead of Eq(str) and "foo" instead of Eq("foo") when a absl::string_view
562 // matcher is expected.
563 template <>
564 class GTEST_API_ Matcher<const internal::StringView&>
565  : public internal::MatcherBase<const internal::StringView&> {
566  public:
567  Matcher() {}
568 
569  explicit Matcher(const MatcherInterface<const internal::StringView&>* impl)
570  : internal::MatcherBase<const internal::StringView&>(impl) {}
571 
572  template <typename M, typename = typename std::remove_reference<
573  M>::type::is_gtest_matcher>
574  Matcher(M&& m) // NOLINT
575  : internal::MatcherBase<const internal::StringView&>(std::forward<M>(m)) {
576  }
577 
578  // Allows the user to write str instead of Eq(str) sometimes, where
579  // str is a std::string object.
580  Matcher(const std::string& s); // NOLINT
581 
582  // Allows the user to write "foo" instead of Eq("foo") sometimes.
583  Matcher(const char* s); // NOLINT
584 
585  // Allows the user to pass absl::string_views or std::string_views directly.
586  Matcher(internal::StringView s); // NOLINT
587 };
588 
589 template <>
590 class GTEST_API_ Matcher<internal::StringView>
591  : public internal::MatcherBase<internal::StringView> {
592  public:
593  Matcher() {}
594 
595  explicit Matcher(const MatcherInterface<const internal::StringView&>* impl)
596  : internal::MatcherBase<internal::StringView>(impl) {}
597  explicit Matcher(const MatcherInterface<internal::StringView>* impl)
598  : internal::MatcherBase<internal::StringView>(impl) {}
599 
600  template <typename M, typename = typename std::remove_reference<
601  M>::type::is_gtest_matcher>
602  Matcher(M&& m) // NOLINT
603  : internal::MatcherBase<internal::StringView>(std::forward<M>(m)) {}
604 
605  // Allows the user to write str instead of Eq(str) sometimes, where
606  // str is a std::string object.
607  Matcher(const std::string& s); // NOLINT
608 
609  // Allows the user to write "foo" instead of Eq("foo") sometimes.
610  Matcher(const char* s); // NOLINT
611 
612  // Allows the user to pass absl::string_views or std::string_views directly.
613  Matcher(internal::StringView s); // NOLINT
614 };
615 #endif // GTEST_INTERNAL_HAS_STRING_VIEW
616 
617 // Prints a matcher in a human-readable format.
618 template <typename T>
619 std::ostream& operator<<(std::ostream& os, const Matcher<T>& matcher) {
620  matcher.DescribeTo(&os);
621  return os;
622 }
623 
624 // The PolymorphicMatcher class template makes it easy to implement a
625 // polymorphic matcher (i.e. a matcher that can match values of more
626 // than one type, e.g. Eq(n) and NotNull()).
627 //
628 // To define a polymorphic matcher, a user should provide an Impl
629 // class that has a DescribeTo() method and a DescribeNegationTo()
630 // method, and define a member function (or member function template)
631 //
632 // bool MatchAndExplain(const Value& value,
633 // MatchResultListener* listener) const;
634 //
635 // See the definition of NotNull() for a complete example.
636 template <class Impl>
637 class PolymorphicMatcher {
638  public:
639  explicit PolymorphicMatcher(const Impl& an_impl) : impl_(an_impl) {}
640 
641  // Returns a mutable reference to the underlying matcher
642  // implementation object.
643  Impl& mutable_impl() { return impl_; }
644 
645  // Returns an immutable reference to the underlying matcher
646  // implementation object.
647  const Impl& impl() const { return impl_; }
648 
649  template <typename T>
650  operator Matcher<T>() const {
651  return Matcher<T>(new MonomorphicImpl<const T&>(impl_));
652  }
653 
654  private:
655  template <typename T>
656  class MonomorphicImpl : public MatcherInterface<T> {
657  public:
658  explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {}
659 
660  void DescribeTo(::std::ostream* os) const override { impl_.DescribeTo(os); }
661 
662  void DescribeNegationTo(::std::ostream* os) const override {
663  impl_.DescribeNegationTo(os);
664  }
665 
666  bool MatchAndExplain(T x, MatchResultListener* listener) const override {
667  return impl_.MatchAndExplain(x, listener);
668  }
669 
670  private:
671  const Impl impl_;
672  };
673 
674  Impl impl_;
675 };
676 
677 // Creates a matcher from its implementation.
678 // DEPRECATED: Especially in the generic code, prefer:
679 // Matcher<T>(new MyMatcherImpl<const T&>(...));
680 //
681 // MakeMatcher may create a Matcher that accepts its argument by value, which
682 // leads to unnecessary copies & lack of support for non-copyable types.
683 template <typename T>
684 inline Matcher<T> MakeMatcher(const MatcherInterface<T>* impl) {
685  return Matcher<T>(impl);
686 }
687 
688 // Creates a polymorphic matcher from its implementation. This is
689 // easier to use than the PolymorphicMatcher<Impl> constructor as it
690 // doesn't require you to explicitly write the template argument, e.g.
691 //
692 // MakePolymorphicMatcher(foo);
693 // vs
694 // PolymorphicMatcher<TypeOfFoo>(foo);
695 template <class Impl>
696 inline PolymorphicMatcher<Impl> MakePolymorphicMatcher(const Impl& impl) {
697  return PolymorphicMatcher<Impl>(impl);
698 }
699 
700 namespace internal {
701 // Implements a matcher that compares a given value with a
702 // pre-supplied value using one of the ==, <=, <, etc, operators. The
703 // two values being compared don't have to have the same type.
704 //
705 // The matcher defined here is polymorphic (for example, Eq(5) can be
706 // used to match an int, a short, a double, etc). Therefore we use
707 // a template type conversion operator in the implementation.
708 //
709 // The following template definition assumes that the Rhs parameter is
710 // a "bare" type (i.e. neither 'const T' nor 'T&').
711 template <typename D, typename Rhs, typename Op>
712 class ComparisonBase {
713  public:
714  explicit ComparisonBase(const Rhs& rhs) : rhs_(rhs) {}
715 
716  using is_gtest_matcher = void;
717 
718  template <typename Lhs>
719  bool MatchAndExplain(const Lhs& lhs, std::ostream*) const {
720  return Op()(lhs, Unwrap(rhs_));
721  }
722  void DescribeTo(std::ostream* os) const {
723  *os << D::Desc() << " ";
724  UniversalPrint(Unwrap(rhs_), os);
725  }
726  void DescribeNegationTo(std::ostream* os) const {
727  *os << D::NegatedDesc() << " ";
728  UniversalPrint(Unwrap(rhs_), os);
729  }
730 
731  private:
732  template <typename T>
733  static const T& Unwrap(const T& v) {
734  return v;
735  }
736  template <typename T>
737  static const T& Unwrap(std::reference_wrapper<T> v) {
738  return v;
739  }
740 
741  Rhs rhs_;
742 };
743 
744 template <typename Rhs>
745 class EqMatcher : public ComparisonBase<EqMatcher<Rhs>, Rhs, AnyEq> {
746  public:
747  explicit EqMatcher(const Rhs& rhs)
748  : ComparisonBase<EqMatcher<Rhs>, Rhs, AnyEq>(rhs) { }
749  static const char* Desc() { return "is equal to"; }
750  static const char* NegatedDesc() { return "isn't equal to"; }
751 };
752 template <typename Rhs>
753 class NeMatcher : public ComparisonBase<NeMatcher<Rhs>, Rhs, AnyNe> {
754  public:
755  explicit NeMatcher(const Rhs& rhs)
756  : ComparisonBase<NeMatcher<Rhs>, Rhs, AnyNe>(rhs) { }
757  static const char* Desc() { return "isn't equal to"; }
758  static const char* NegatedDesc() { return "is equal to"; }
759 };
760 template <typename Rhs>
761 class LtMatcher : public ComparisonBase<LtMatcher<Rhs>, Rhs, AnyLt> {
762  public:
763  explicit LtMatcher(const Rhs& rhs)
764  : ComparisonBase<LtMatcher<Rhs>, Rhs, AnyLt>(rhs) { }
765  static const char* Desc() { return "is <"; }
766  static const char* NegatedDesc() { return "isn't <"; }
767 };
768 template <typename Rhs>
769 class GtMatcher : public ComparisonBase<GtMatcher<Rhs>, Rhs, AnyGt> {
770  public:
771  explicit GtMatcher(const Rhs& rhs)
772  : ComparisonBase<GtMatcher<Rhs>, Rhs, AnyGt>(rhs) { }
773  static const char* Desc() { return "is >"; }
774  static const char* NegatedDesc() { return "isn't >"; }
775 };
776 template <typename Rhs>
777 class LeMatcher : public ComparisonBase<LeMatcher<Rhs>, Rhs, AnyLe> {
778  public:
779  explicit LeMatcher(const Rhs& rhs)
780  : ComparisonBase<LeMatcher<Rhs>, Rhs, AnyLe>(rhs) { }
781  static const char* Desc() { return "is <="; }
782  static const char* NegatedDesc() { return "isn't <="; }
783 };
784 template <typename Rhs>
785 class GeMatcher : public ComparisonBase<GeMatcher<Rhs>, Rhs, AnyGe> {
786  public:
787  explicit GeMatcher(const Rhs& rhs)
788  : ComparisonBase<GeMatcher<Rhs>, Rhs, AnyGe>(rhs) { }
789  static const char* Desc() { return "is >="; }
790  static const char* NegatedDesc() { return "isn't >="; }
791 };
792 
793 template <typename T, typename = typename std::enable_if<
795 using StringLike = T;
796 
797 // Implements polymorphic matchers MatchesRegex(regex) and
798 // ContainsRegex(regex), which can be used as a Matcher<T> as long as
799 // T can be converted to a string.
800 class MatchesRegexMatcher {
801  public:
802  MatchesRegexMatcher(const RE* regex, bool full_match)
803  : regex_(regex), full_match_(full_match) {}
804 
805 #if GTEST_INTERNAL_HAS_STRING_VIEW
806  bool MatchAndExplain(const internal::StringView& s,
807  MatchResultListener* listener) const {
808  return MatchAndExplain(std::string(s), listener);
809  }
810 #endif // GTEST_INTERNAL_HAS_STRING_VIEW
811 
812  // Accepts pointer types, particularly:
813  // const char*
814  // char*
815  // const wchar_t*
816  // wchar_t*
817  template <typename CharType>
818  bool MatchAndExplain(CharType* s, MatchResultListener* listener) const {
819  return s != nullptr && MatchAndExplain(std::string(s), listener);
820  }
821 
822  // Matches anything that can convert to std::string.
823  //
824  // This is a template, not just a plain function with const std::string&,
825  // because absl::string_view has some interfering non-explicit constructors.
826  template <class MatcheeStringType>
827  bool MatchAndExplain(const MatcheeStringType& s,
828  MatchResultListener* /* listener */) const {
829  const std::string& s2(s);
830  return full_match_ ? RE::FullMatch(s2, *regex_)
831  : RE::PartialMatch(s2, *regex_);
832  }
833 
834  void DescribeTo(::std::ostream* os) const {
835  *os << (full_match_ ? "matches" : "contains") << " regular expression ";
837  }
838 
839  void DescribeNegationTo(::std::ostream* os) const {
840  *os << "doesn't " << (full_match_ ? "match" : "contain")
841  << " regular expression ";
843  }
844 
845  private:
846  const std::shared_ptr<const RE> regex_;
847  const bool full_match_;
848 };
849 } // namespace internal
850 
851 // Matches a string that fully matches regular expression 'regex'.
852 // The matcher takes ownership of 'regex'.
853 inline PolymorphicMatcher<internal::MatchesRegexMatcher> MatchesRegex(
854  const internal::RE* regex) {
855  return MakePolymorphicMatcher(internal::MatchesRegexMatcher(regex, true));
856 }
857 template <typename T = std::string>
858 PolymorphicMatcher<internal::MatchesRegexMatcher> MatchesRegex(
859  const internal::StringLike<T>& regex) {
860  return MatchesRegex(new internal::RE(std::string(regex)));
861 }
862 
863 // Matches a string that contains regular expression 'regex'.
864 // The matcher takes ownership of 'regex'.
865 inline PolymorphicMatcher<internal::MatchesRegexMatcher> ContainsRegex(
866  const internal::RE* regex) {
867  return MakePolymorphicMatcher(internal::MatchesRegexMatcher(regex, false));
868 }
869 template <typename T = std::string>
870 PolymorphicMatcher<internal::MatchesRegexMatcher> ContainsRegex(
871  const internal::StringLike<T>& regex) {
872  return ContainsRegex(new internal::RE(std::string(regex)));
873 }
874 
875 // Creates a polymorphic matcher that matches anything equal to x.
876 // Note: if the parameter of Eq() were declared as const T&, Eq("foo")
877 // wouldn't compile.
878 template <typename T>
879 inline internal::EqMatcher<T> Eq(T x) { return internal::EqMatcher<T>(x); }
880 
881 // Constructs a Matcher<T> from a 'value' of type T. The constructed
882 // matcher matches any value that's equal to 'value'.
883 template <typename T>
884 Matcher<T>::Matcher(T value) { *this = Eq(value); }
885 
886 // Creates a monomorphic matcher that matches anything with type Lhs
887 // and equal to rhs. A user may need to use this instead of Eq(...)
888 // in order to resolve an overloading ambiguity.
889 //
890 // TypedEq<T>(x) is just a convenient short-hand for Matcher<T>(Eq(x))
891 // or Matcher<T>(x), but more readable than the latter.
892 //
893 // We could define similar monomorphic matchers for other comparison
894 // operations (e.g. TypedLt, TypedGe, and etc), but decided not to do
895 // it yet as those are used much less than Eq() in practice. A user
896 // can always write Matcher<T>(Lt(5)) to be explicit about the type,
897 // for example.
898 template <typename Lhs, typename Rhs>
899 inline Matcher<Lhs> TypedEq(const Rhs& rhs) { return Eq(rhs); }
900 
901 // Creates a polymorphic matcher that matches anything >= x.
902 template <typename Rhs>
903 inline internal::GeMatcher<Rhs> Ge(Rhs x) {
904  return internal::GeMatcher<Rhs>(x);
905 }
906 
907 // Creates a polymorphic matcher that matches anything > x.
908 template <typename Rhs>
909 inline internal::GtMatcher<Rhs> Gt(Rhs x) {
910  return internal::GtMatcher<Rhs>(x);
911 }
912 
913 // Creates a polymorphic matcher that matches anything <= x.
914 template <typename Rhs>
915 inline internal::LeMatcher<Rhs> Le(Rhs x) {
916  return internal::LeMatcher<Rhs>(x);
917 }
918 
919 // Creates a polymorphic matcher that matches anything < x.
920 template <typename Rhs>
921 inline internal::LtMatcher<Rhs> Lt(Rhs x) {
922  return internal::LtMatcher<Rhs>(x);
923 }
924 
925 // Creates a polymorphic matcher that matches anything != x.
926 template <typename Rhs>
927 inline internal::NeMatcher<Rhs> Ne(Rhs x) {
928  return internal::NeMatcher<Rhs>(x);
929 }
930 } // namespace testing
931 
932 GTEST_DISABLE_MSC_WARNINGS_POP_() // 4251 5046
933 
934 #endif // GOOGLETEST_INCLUDE_GTEST_GTEST_MATCHERS_H_
ptr
char * ptr
Definition: abseil-cpp/absl/base/internal/low_level_alloc_test.cc:45
testing::PolymorphicMatcher::MonomorphicImpl::DescribeTo
virtual void DescribeTo(::std::ostream *os) const
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5272
testing
Definition: aws_request_signer_test.cc:25
testing::ContainsRegex
PolymorphicMatcher< internal::MatchesRegexMatcher > ContainsRegex(const internal::RE *regex)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:8835
testing::internal::StreamMatchResultListener::StreamMatchResultListener
StreamMatchResultListener(::std::ostream *os)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5060
testing::Gt
internal::GtMatcher< Rhs > Gt(Rhs x)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:8591
testing::internal::GeMatcher::NegatedDesc
static const char * NegatedDesc()
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5791
get
absl::string_view get(const Cont &c)
Definition: abseil-cpp/absl/strings/str_replace_test.cc:185
testing::Lt
internal::LtMatcher< Rhs > Lt(Rhs x)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:8603
const
#define const
Definition: bloaty/third_party/zlib/zconf.h:230
bool
bool
Definition: setup_once.h:312
testing::PolymorphicMatcher::impl_
Impl impl_
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5290
testing::internal::MatchesRegexMatcher::DescribeNegationTo
void DescribeNegationTo(::std::ostream *os) const
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:6178
testing::internal::MatcherBase::~MatcherBase
virtual ~MatcherBase()
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5113
GTEST_API_
#define GTEST_API_
Definition: bloaty/third_party/googletest/googletest/include/gtest/internal/gtest-port.h:754
testing::PolymorphicMatcher::MonomorphicImpl::MonomorphicImpl
MonomorphicImpl(const Impl &impl)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5270
testing::Matcher::Matcher
Matcher()
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5143
false
#define false
Definition: setup_once.h:323
testing::MatchResultListener::operator<<
MatchResultListener & operator<<(const T &x)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:4910
std::tr1::make_tuple
tuple make_tuple()
Definition: cares/cares/test/gmock-1.8.0/gtest/gtest.h:1619
testing::Ne
internal::NeMatcher< Rhs > Ne(Rhs x)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:8609
testing::internal::string
::std::string string
Definition: bloaty/third_party/protobuf/third_party/googletest/googletest/include/gtest/internal/gtest-port.h:881
testing::internal::AnyEq::operator()
bool operator()(const A &a, const B &b) const
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5023
testing::internal::EqMatcher::EqMatcher
EqMatcher(const Rhs &rhs)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5748
google::protobuf::python::cmessage::Init
static int Init(CMessage *self, PyObject *args, PyObject *kwargs)
Definition: bloaty/third_party/protobuf/python/google/protobuf/pyext/message.cc:1287
a
int a
Definition: abseil-cpp/absl/container/internal/hash_policy_traits_test.cc:88
testing::Ge
internal::GeMatcher< Rhs > Ge(Rhs x)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:8585
env.new
def new
Definition: env.py:51
Arg
Arg(64) -> Arg(128) ->Arg(256) ->Arg(512) ->Arg(1024) ->Arg(1536) ->Arg(2048) ->Arg(3072) ->Arg(4096) ->Arg(5120) ->Arg(6144) ->Arg(7168)
T
#define T(upbtypeconst, upbtype, ctype, default_value)
testing::MatchesRegex
PolymorphicMatcher< internal::MatchesRegexMatcher > MatchesRegex(const internal::RE *regex)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:8824
testing::internal::StreamMatchResultListener::GTEST_DISALLOW_COPY_AND_ASSIGN_
GTEST_DISALLOW_COPY_AND_ASSIGN_(StreamMatchResultListener)
testing::MatchResultListener::IsInterested
bool IsInterested() const
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:4923
testing::internal::MatcherBase::DescribeNegationTo
void DescribeNegationTo(::std::ostream *os) const
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5089
testing::PolymorphicMatcher::PolymorphicMatcher
PolymorphicMatcher(const Impl &an_impl)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5251
testing::operator<<
std::ostream & operator<<(std::ostream &os, const Message &sb)
Definition: bloaty/third_party/googletest/googletest/include/gtest/gtest-message.h:198
absl::synchronization_internal::Get
static GraphId Get(const IdMap &id, int num)
Definition: abseil-cpp/absl/synchronization/internal/graphcycles_test.cc:44
testing::internal::MatchesRegexMatcher::MatchAndExplain
bool MatchAndExplain(CharType *s, MatchResultListener *listener) const
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:6156
testing::internal::LeMatcher::NegatedDesc
static const char * NegatedDesc()
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5783
testing::internal::ComparisonBase::rhs_
Rhs rhs_
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5741
testing::internal::LtMatcher::LtMatcher
LtMatcher(const Rhs &rhs)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5764
buffer_
static uint8 buffer_[kBufferSize]
Definition: bloaty/third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc:136
testing::internal::MatcherBase::ExplainMatchResultTo
void ExplainMatchResultTo(T x, ::std::ostream *os) const
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5094
testing::internal::ComparisonBase::ComparisonBase
ComparisonBase(const Rhs &rhs)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5714
testing::internal::MatchesRegexMatcher::regex_
const internal::linked_ptr< const RE > regex_
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:6185
testing::internal::AnyLe::operator()
bool operator()(const A &a, const B &b) const
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5039
absl::move
constexpr absl::remove_reference_t< T > && move(T &&t) noexcept
Definition: abseil-cpp/absl/utility/utility.h:221
int64_t
signed __int64 int64_t
Definition: stdint-msvc2008.h:89
testing::internal::AnyLt::operator()
bool operator()(const A &a, const B &b) const
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5031
testing::MakePolymorphicMatcher
PolymorphicMatcher< Impl > MakePolymorphicMatcher(const Impl &impl)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5315
testing::internal::GtMatcher::Desc
static const char * Desc()
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5774
testing::internal::NeMatcher::Desc
static const char * Desc()
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5758
setup.v
v
Definition: third_party/bloaty/third_party/capstone/bindings/python/setup.py:42
testing::internal::MatchesRegexMatcher::full_match_
const bool full_match_
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:6186
testing::internal::MatcherBase::Matches
bool Matches(T x) const
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5080
testing::internal::GeMatcher::GeMatcher
GeMatcher(const Rhs &rhs)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5788
testing::internal::NeMatcher::NeMatcher
NeMatcher(const Rhs &rhs)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5756
testing::Eq
internal::EqMatcher< T > Eq(T x)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:8561
testing::MatcherInterface::MatchAndExplain
virtual bool MatchAndExplain(T x, MatchResultListener *listener) const =0
testing::internal::MatcherBase::DescribeTo
void DescribeTo(::std::ostream *os) const
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5086
testing::MatchResultListener::GTEST_DISALLOW_COPY_AND_ASSIGN_
GTEST_DISALLOW_COPY_AND_ASSIGN_(MatchResultListener)
arg
Definition: cmdline.cc:40
ref
unsigned ref
Definition: cxa_demangle.cpp:4909
testing::MatchResultListener::~MatchResultListener
virtual ~MatchResultListener()=0
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:4931
x
int x
Definition: bloaty/third_party/googletest/googlemock/test/gmock-matchers_test.cc:3610
testing::internal::MatchesRegexMatcher::DescribeTo
void DescribeTo(::std::ostream *os) const
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:6172
testing::internal::DummyMatchResultListener::DummyMatchResultListener
DummyMatchResultListener()
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5049
testing::MatchResultListener::MatchResultListener
MatchResultListener(::std::ostream *os)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:4904
b
uint64_t b
Definition: abseil-cpp/absl/container/internal/layout_test.cc:53
testing::internal::AnyGe::operator()
bool operator()(const A &a, const B &b) const
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5043
testing::internal::GtMatcher::NegatedDesc
static const char * NegatedDesc()
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5775
testing::internal::RE::PartialMatch
static bool PartialMatch(const ::std::string &str, const RE &re)
Definition: bloaty/third_party/googletest/googletest/include/gtest/internal/gtest-port.h:904
testing::internal::LeMatcher::Desc
static const char * Desc()
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5782
value
const char * value
Definition: hpack_parser_table.cc:165
testing::MakeMatcher
Matcher< T > MakeMatcher(const MatcherInterface< T > *impl)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5303
testing::internal::GtMatcher::GtMatcher
GtMatcher(const Rhs &rhs)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5772
testing::internal::DummyMatchResultListener::GTEST_DISALLOW_COPY_AND_ASSIGN_
GTEST_DISALLOW_COPY_AND_ASSIGN_(DummyMatchResultListener)
testing::internal::MatcherBase::GetDescriber
const MatcherDescriberInterface * GetDescriber() const
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5102
phony_transport::Destroy
void Destroy(grpc_transport *)
Definition: bm_call_create.cc:443
GTEST_CHECK_
#define GTEST_CHECK_(condition)
Definition: bloaty/third_party/googletest/googletest/include/gtest/internal/gtest-port.h:999
testing::PolymorphicMatcher::mutable_impl
Impl & mutable_impl()
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5255
testing::internal::MatcherBase::MatchAndExplain
bool MatchAndExplain(T x, MatchResultListener *listener) const
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5075
GTEST_MAYBE_5046_
#define GTEST_MAYBE_5046_
Definition: googletest/googletest/include/gtest/gtest-matchers.h:56
testing::internal::UniversalPrinter::Print
static void Print(const T &value, ::std::ostream *os)
Definition: bloaty/third_party/googletest/googletest/include/gtest/gtest-printers.h:670
testing::Le
internal::LeMatcher< Rhs > Le(Rhs x)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:8597
testing::TypedEq
Matcher< Lhs > TypedEq(const Rhs &rhs)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:8581
testing::internal::LeMatcher::LeMatcher
LeMatcher(const Rhs &rhs)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5780
testing::MatchResultListener::stream
::std::ostream * stream()
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:4917
std
Definition: grpcpp/impl/codegen/async_unary_call.h:407
A
Definition: miscompile_with_no_unique_address_test.cc:23
testing::internal::LtMatcher::Desc
static const char * Desc()
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5766
testing::internal::EqMatcher::NegatedDesc
static const char * NegatedDesc()
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5751
absl::ABSL_NAMESPACE_BEGIN::dummy
int dummy
Definition: function_type_benchmark.cc:28
GTEST_DISABLE_MSC_WARNINGS_POP_
#define GTEST_DISABLE_MSC_WARNINGS_POP_()
Definition: bloaty/third_party/googletest/googletest/include/gtest/internal/gtest-port.h:309
testing::internal::EqMatcher::Desc
static const char * Desc()
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5750
testing::internal::LtMatcher::NegatedDesc
static const char * NegatedDesc()
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5767
testing::PolymorphicMatcher::impl
const Impl & impl() const
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5259
testing::internal::MatcherBase::MatcherBase
MatcherBase()
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5107
internal
Definition: benchmark/test/output_test_helper.cc:20
testing::MatchResultListener::stream_
::std::ostream *const stream_
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:4926
testing::internal::NeMatcher::NegatedDesc
static const char * NegatedDesc()
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5759
testing::PolymorphicMatcher::MonomorphicImpl::MatchAndExplain
virtual bool MatchAndExplain(T x, MatchResultListener *listener) const
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5280
asyncio_get_stats.type
type
Definition: asyncio_get_stats.py:37
testing::internal::UniversalPrint
void UniversalPrint(const T &value, ::std::ostream *os)
Definition: bloaty/third_party/googletest/googletest/include/gtest/gtest-printers.h:865
testing::Ref
internal::RefMatcher< T & > Ref(T &x)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:8628
regress.m
m
Definition: regress/regress.py:25
testing::PolymorphicMatcher::MonomorphicImpl::impl_
const Impl impl_
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5285
GTEST_DISABLE_MSC_WARNINGS_PUSH_
GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 GTEST_MAYBE_5046_) namespace testing
Definition: googletest/googletest/include/gtest/gtest-matchers.h:59
testing::internal::AnyNe::operator()
bool operator()(const A &a, const B &b) const
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5027
testing::PolymorphicMatcher::MonomorphicImpl::DescribeNegationTo
virtual void DescribeNegationTo(::std::ostream *os) const
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5276
testing::internal::RE::FullMatch
static bool FullMatch(const ::std::string &str, const RE &re)
Definition: bloaty/third_party/googletest/googletest/include/gtest/internal/gtest-port.h:901
testing::internal::AnyGt::operator()
bool operator()(const A &a, const B &b) const
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5035
testing::internal::MatchesRegexMatcher::MatchesRegexMatcher
MatchesRegexMatcher(const RE *regex, bool full_match)
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:6147
i
uint64_t i
Definition: abseil-cpp/absl/container/btree_benchmark.cc:230
testing::internal::GeMatcher::Desc
static const char * Desc()
Definition: cares/cares/test/gmock-1.8.0/gmock/gmock.h:5790


grpc
Author(s):
autogenerated on Fri May 16 2025 02:58:46