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

tools/clang/tools/extra/clangd/unittests/TypeHierarchyTests.cpp
   54 MATCHER(ParentsNotResolved, "") { return !arg.parents; }

References

tools/clang/tools/extra/clangd/unittests/TypeHierarchyTests.cpp
   54 MATCHER(ParentsNotResolved, "") { return !arg.parents; }
utils/unittest/googlemock/include/gmock/gmock-generated-matchers.h
  308   typedef M1 type;
  314       typename AllOfResult1<M1>::type,
  331       typename AllOfResult2<M3, M4>::type
 1003 inline typename internal::AllOfResult2<M1, M2>::type
 1004 AllOf(M1 m1, M2 m2) {
 1019 inline typename internal::AllOfResult4<M1, M2, M3, M4>::type
 1020 AllOf(M1 m1, M2 m2, M3 m3, M4 m4) {
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) {
 1642   BothOfMatcher(Matcher1 matcher1, Matcher2 matcher2)
 1655   Matcher1 matcher1_;
 4381 inline internal::AllOfMatcher<Args...> AllOf(const Args&... matchers) {
 4381 inline internal::AllOfMatcher<Args...> AllOf(const Args&... matchers) {
utils/unittest/googletest/include/gtest/internal/gtest-internal.h
  830 struct AddReference { typedef T& type; };  // NOLINT
  863   static typename AddReference<From>::type MakeFrom();