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/IndexActionTests.cpp
   35 MATCHER(HasSameURI, "") {

References

tools/clang/tools/extra/clangd/unittests/IndexActionTests.cpp
   36   llvm::StringRef URI = ::testing::get<0>(arg);
   37   const std::string &Path = ::testing::get<1>(arg);
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) {
 3572   BoundSecondMatcher(const Tuple2Matcher& tm, const Second& second)
 3598     Impl(const Tuple2Matcher& tm, const Second& second)
 3621   const Tuple2Matcher tuple2_matcher_;
 3630 BoundSecondMatcher<Tuple2Matcher, Second> MatcherBindSecond(
 3631     const Tuple2Matcher& tm, const Second& second) {
 4239         Tuple2Matcher, typename internal::StlContainerView<GTEST_REMOVE_CONST_(
 4241 UnorderedPointwise(const Tuple2Matcher& tuple2_matcher,
 4257   ::std::vector<internal::BoundSecondMatcher<Tuple2Matcher, Second> > matchers;
utils/unittest/googletest/include/gtest/internal/gtest-internal.h
  830 struct AddReference { typedef T& type; };  // NOLINT
  863   static typename AddReference<From>::type MakeFrom();