Home
last modified time | relevance | path

Searched refs:PolymorphicMatcher (Results 1 – 5 of 5) 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/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.h240 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()