Home
last modified time | relevance | path

Searched refs:MatchAnyOf (Results 1 – 3 of 3) sorted by relevance

/external/catch2/include/internal/
Dcatch_matchers.h21 template<typename ArgT> struct MatchAnyOf;
56 MatchAnyOf<T> operator || ( MatcherBase const& other ) const;
93 struct MatchAnyOf : MatcherBase<ArgT> { struct
118 MatchAnyOf<ArgT>& operator || ( MatcherBase<ArgT> const& other ) { argument
146 MatchAnyOf<T> MatcherBase<T>::operator || ( MatcherBase const& other ) const { argument
147 return MatchAnyOf<T>() || *this || other;
/external/clang/unittests/ASTMatchers/
DASTMatchersNarrowingTest.cpp292 TEST(DeclarationMatcher, MatchAnyOf) { in TEST() argument
/external/catch2/single_include/catch2/
Dcatch.hpp2894 template<typename ArgT> struct MatchAnyOf;
2928 MatchAnyOf<T> operator || ( MatcherBase const& other ) const;
2965 struct MatchAnyOf : MatcherBase<ArgT> { struct
2990 MatchAnyOf<ArgT>& operator || ( MatcherBase<ArgT> const& other ) { in operator ||() argument
3018 MatchAnyOf<T> MatcherBase<T>::operator || ( MatcherBase const& other ) const { in operator ||()
3019 return MatchAnyOf<T>() || *this || other; in operator ||()