Home
last modified time | relevance | path

Searched refs:MakePolymorphicMatcher (Results 1 – 15 of 15) sorted by relevance

/external/google-breakpad/src/testing/include/gmock/
Dgmock-matchers.h383 inline PolymorphicMatcher<Impl> MakePolymorphicMatcher(const Impl& impl) { in MakePolymorphicMatcher() function
2759 return MakePolymorphicMatcher(internal::IsNullMatcher());
2766 return MakePolymorphicMatcher(internal::NotNullMatcher());
2816 return MakePolymorphicMatcher(
2833 return MakePolymorphicMatcher(
2874 return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::string>(
2881 return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::string>(
2888 return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::string>(
2895 return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::string>(
2903 return MakePolymorphicMatcher(internal::HasSubstrMatcher<internal::string>(
[all …]
Dgmock-generated-matchers.h.pump605 // MatcherInterface or using MakePolymorphicMatcher(). These
/external/googletest/googlemock/include/gmock/
Dgmock-matchers.h3609 return MakePolymorphicMatcher(internal::IsNullMatcher());
3616 return MakePolymorphicMatcher(internal::NotNullMatcher());
3700 return MakePolymorphicMatcher(
3713 return MakePolymorphicMatcher(
3728 return MakePolymorphicMatcher(internal::FieldMatcher<Class, FieldType>(
3741 return MakePolymorphicMatcher(
3759 return MakePolymorphicMatcher(
3771 return MakePolymorphicMatcher(
3784 return MakePolymorphicMatcher(
3811 return MakePolymorphicMatcher(
[all …]
Dgmock-generated-matchers.h.pump247 // MatcherInterface or using MakePolymorphicMatcher(). These
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/
Dgmock-matchers.h496 inline PolymorphicMatcher<Impl> MakePolymorphicMatcher(const Impl& impl) { in MakePolymorphicMatcher() function
3812 return MakePolymorphicMatcher(internal::IsNullMatcher());
3819 return MakePolymorphicMatcher(internal::NotNullMatcher());
3902 return MakePolymorphicMatcher(
3914 return MakePolymorphicMatcher(
3931 return MakePolymorphicMatcher(
3972 return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::string>(
3979 return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::string>(
3986 return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::string>(
3993 return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::string>(
[all …]
/external/googletest/googlemock/docs/
DFrequentlyAskedQuestions.md20 by implementing `MatcherInterface` or using `MakePolymorphicMatcher()`,
112 If your matcher is defined using `MakePolymorphicMatcher()`:
116 using ::testing::MakePolymorphicMatcher;
127 ... MakePolymorphicMatcher(MyGreatMatcher()) ...
135 using ::testing::MakePolymorphicMatcher;
148 ... MakePolymorphicMatcher(MyGreatMatcher()) ...
156 using ::testing::MakePolymorphicMatcher;
174 ... MakePolymorphicMatcher(MyGreatMatcher()) ...
181 using ::testing::MakePolymorphicMatcher;
195 ... MakePolymorphicMatcher(MyGreatMatcher()) ...
DCookBook.md3042 `MatcherInterface` or using `MakePolymorphicMatcher()` instead (see
3167 easily with the help of `MakePolymorphicMatcher()`. Here's how you can
3171 using ::testing::MakePolymorphicMatcher;
3200 // to MakePolymorphicMatcher(). Note the return type.
3202 return MakePolymorphicMatcher(NotNullMatcher());
/external/tensorflow/tensorflow/compiler/xla/service/
Dpattern_matcher_gmock.h85 return ::testing::MakePolymorphicMatcher( in GmockMatch()
/external/tensorflow/tensorflow/core/profiler/internal/cpu/
Dhost_tracer_test.cc71 return ::testing::MakePolymorphicMatcher(NodeStatsMatcher(expected)); in EqualsNodeStats()
/external/googletest/googletest/include/gtest/
Dgtest-matchers.h577 inline PolymorphicMatcher<Impl> MakePolymorphicMatcher(const Impl& impl) { in MakePolymorphicMatcher() function
737 return MakePolymorphicMatcher(internal::MatchesRegexMatcher(regex, true)); in MatchesRegex()
748 return MakePolymorphicMatcher(internal::MatchesRegexMatcher(regex, false)); in ContainsRegex()
/external/google-breakpad/src/testing/
DCHANGES49 * Custom matchers defined using MatcherInterface or MakePolymorphicMatcher()
DREADME303 MakePolymorphicMatcher(), you'll need to update their definitions to
/external/google-breakpad/src/testing/test/
Dgmock-matchers_test.cc96 using testing::MakePolymorphicMatcher;
395 return MakePolymorphicMatcher(ReferencesBarOrIsZeroImpl()); in ReferencesBarOrIsZero()
438 return MakePolymorphicMatcher(PolymorphicIsEvenImpl()); in PolymorphicIsEven()
3525 return MakePolymorphicMatcher(DivisibleByImpl(n)); in DivisibleBy()
4103 return MakePolymorphicMatcher(IsHalfOfMatcher()); in IsHalfOf()
/external/googletest/googlemock/
DREADME.md283 `MakePolymorphicMatcher()`, you'll need to update their definitions to
/external/googletest/googlemock/test/
Dgmock-matchers_test.cc499 return MakePolymorphicMatcher(ReferencesBarOrIsZeroImpl()); in ReferencesBarOrIsZero()
542 return MakePolymorphicMatcher(PolymorphicIsEvenImpl()); in PolymorphicIsEven()
4632 return MakePolymorphicMatcher(DivisibleByImpl(n)); in DivisibleBy()
6403 return MakePolymorphicMatcher(IsHalfOfMatcher()); in IsHalfOf()