reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Overrides

utils/unittest/googlemock/include/gmock/gmock-matchers.h
  128   virtual void DescribeTo(::std::ostream* os) const = 0;
  136   virtual void DescribeNegationTo(::std::ostream* os) const {
  178   virtual bool MatchAndExplain(T x, MatchResultListener* listener) const = 0;

Declarations

include/llvm/Testing/Support/Error.h
  144 MATCHER(Failed, "") { return !arg.Success(); }

References

include/llvm/Testing/Support/Error.h
  144 MATCHER(Failed, "") { return !arg.Success(); }
usr/include/c++/7.4.0/bits/move.h
   98     move(_Tp&& __t) noexcept
usr/include/c++/7.4.0/type_traits
 1633     { typedef _Tp   type; };
utils/unittest/googlemock/include/gmock/gmock-matchers.h
  519   static Matcher<T> Cast(const M& polymorphic_matcher_or_value) {
  536             internal::ImplicitlyConvertible<M, Matcher<T> >::value>());
  540   static Matcher<T> CastImpl(const M& value, BooleanConstant<false>) {
  547   static Matcher<T> CastImpl(const M& polymorphic_matcher_or_value,
  629   static inline Matcher<T> Cast(const M& polymorphic_matcher_or_value) {
  630     return internal::MatcherCastImpl<T, M>::Cast(polymorphic_matcher_or_value);
  667 inline Matcher<T> SafeMatcherCast(const M& polymorphic_matcher) {
 1838   explicit PredicateFormatterFromMatcher(M m) : matcher_(internal::move(m)) {}
 1870   const M matcher_;
 1880 inline PredicateFormatterFromMatcher<M>
 1881 MakePredicateFormatterFromMatcher(M matcher) {
utils/unittest/googletest/include/gtest/internal/gtest-internal.h
  830 struct AddReference { typedef T& type; };  // NOLINT
  863   static typename AddReference<From>::type MakeFrom();