Home
last modified time | relevance | path

Searched refs:PolymorphicMatcher (Results 1 – 12 of 12) sorted by relevance

/external/google-breakpad/src/testing/include/gmock/
Dgmock-matchers.h317 class PolymorphicMatcher {
319 explicit PolymorphicMatcher(const Impl& an_impl) : impl_(an_impl) {} in PolymorphicMatcher() function
360 GTEST_DISALLOW_ASSIGN_(PolymorphicMatcher);
383 inline PolymorphicMatcher<Impl> MakePolymorphicMatcher(const Impl& impl) { in MakePolymorphicMatcher()
384 return PolymorphicMatcher<Impl>(impl); in MakePolymorphicMatcher()
2758 inline PolymorphicMatcher<internal::IsNullMatcher > IsNull() {
2765 inline PolymorphicMatcher<internal::NotNullMatcher > NotNull() {
2813 inline PolymorphicMatcher<
2830 inline PolymorphicMatcher<
2872 inline PolymorphicMatcher<internal::StrEqualityMatcher<internal::string> >
[all …]
/external/googletest/googletest/include/gtest/
Dgtest-matchers.h518 class PolymorphicMatcher {
520 explicit PolymorphicMatcher(const Impl& an_impl) : impl_(an_impl) {} in PolymorphicMatcher() function
577 inline PolymorphicMatcher<Impl> MakePolymorphicMatcher(const Impl& impl) { in MakePolymorphicMatcher()
578 return PolymorphicMatcher<Impl>(impl); in MakePolymorphicMatcher()
735 inline PolymorphicMatcher<internal::MatchesRegexMatcher> MatchesRegex( in MatchesRegex()
739 inline PolymorphicMatcher<internal::MatchesRegexMatcher> MatchesRegex( in MatchesRegex()
746 inline PolymorphicMatcher<internal::MatchesRegexMatcher> ContainsRegex( in ContainsRegex()
750 inline PolymorphicMatcher<internal::MatchesRegexMatcher> ContainsRegex( in ContainsRegex()
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/
Dgmock-matchers.h430 class PolymorphicMatcher {
432 explicit PolymorphicMatcher(const Impl& an_impl) : impl_(an_impl) {} in PolymorphicMatcher() function
473 GTEST_DISALLOW_ASSIGN_(PolymorphicMatcher);
496 inline PolymorphicMatcher<Impl> MakePolymorphicMatcher(const Impl& impl) { in MakePolymorphicMatcher()
497 return PolymorphicMatcher<Impl>(impl); in MakePolymorphicMatcher()
3811 inline PolymorphicMatcher<internal::IsNullMatcher > IsNull() {
3818 inline PolymorphicMatcher<internal::NotNullMatcher > NotNull() {
3900 inline PolymorphicMatcher<internal::WhenDynamicCastToMatcher<To> >
3911 inline PolymorphicMatcher<
3928 inline PolymorphicMatcher<
[all …]
/external/googletest/googlemock/include/gmock/
Dgmock-matchers.h3608 inline PolymorphicMatcher<internal::IsNullMatcher > IsNull() {
3615 inline PolymorphicMatcher<internal::NotNullMatcher > NotNull() {
3698 inline PolymorphicMatcher<internal::WhenDynamicCastToMatcher<To> >
3710 inline PolymorphicMatcher<
3725 inline PolymorphicMatcher<internal::FieldMatcher<Class, FieldType> > Field(
3737 inline PolymorphicMatcher<internal::PropertyMatcher<
3754 inline PolymorphicMatcher<internal::PropertyMatcher<
3767 inline PolymorphicMatcher<internal::PropertyMatcher<
3779 inline PolymorphicMatcher<internal::PropertyMatcher<
3809 inline PolymorphicMatcher<internal::StrEqualityMatcher<std::string> > StrEq(
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/
Dpattern_matcher_gmock.h82 ::testing::PolymorphicMatcher<
/external/tensorflow/tensorflow/core/profiler/internal/cpu/
Dhost_tracer_test.cc69 inline ::testing::PolymorphicMatcher<NodeStatsMatcher> EqualsNodeStats( in EqualsNodeStats()
/external/clang/include/clang/ASTMatchers/Dynamic/
DVariantValue.h145 PolymorphicMatcher(std::vector<DynTypedMatcher> Matchers);
/external/clang/lib/ASTMatchers/Dynamic/
DVariantValue.cpp223 VariantMatcher::PolymorphicMatcher(std::vector<DynTypedMatcher> Matchers) { in PolymorphicMatcher() function in clang::ast_matchers::dynamic::VariantMatcher
DMarshallers.h261 VariantMatcher Out = VariantMatcher::PolymorphicMatcher(std::move(Matchers));
/external/google-breakpad/src/testing/test/
Dgmock-matchers_test.cc111 using testing::PolymorphicMatcher;
394 PolymorphicMatcher<ReferencesBarOrIsZeroImpl> ReferencesBarOrIsZero() { in ReferencesBarOrIsZero()
437 PolymorphicMatcher<PolymorphicIsEvenImpl> PolymorphicIsEven() { in PolymorphicIsEven()
3524 PolymorphicMatcher<DivisibleByImpl> DivisibleBy(int n) { in DivisibleBy()
3953 PolymorphicMatcher<DivisibleByImpl> m(DivisibleByImpl(42)); in TEST()
3963 const PolymorphicMatcher<DivisibleByImpl> m(DivisibleByImpl(42)); in TEST()
4102 PolymorphicMatcher<IsHalfOfMatcher> IsHalfOf() { in IsHalfOf()
/external/googletest/googlemock/test/
Dgmock-matchers_test.cc498 PolymorphicMatcher<ReferencesBarOrIsZeroImpl> ReferencesBarOrIsZero() { in ReferencesBarOrIsZero()
541 PolymorphicMatcher<PolymorphicIsEvenImpl> PolymorphicIsEven() { in PolymorphicIsEven()
4631 PolymorphicMatcher<DivisibleByImpl> DivisibleBy(int n) { in DivisibleBy()
6244 PolymorphicMatcher<DivisibleByImpl> m(DivisibleByImpl(42)); in TEST()
6254 const PolymorphicMatcher<DivisibleByImpl> m(DivisibleByImpl(42)); in TEST()
6402 PolymorphicMatcher<IsHalfOfMatcher> IsHalfOf() { in IsHalfOf()
/external/googletest/googlemock/docs/
DCookBook.md3174 using ::testing::PolymorphicMatcher;
3201 inline PolymorphicMatcher<NotNullMatcher> NotNull() {