Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-matchers.h259 class MatcherBase {
295 MatcherBase() {} in MatcherBase() function
301 explicit MatcherBase(
307 MatcherBase(const MatcherBase&) = default;
308 MatcherBase& operator=(const MatcherBase&) = default;
309 MatcherBase(MatcherBase&&) = default;
310 MatcherBase& operator=(MatcherBase&&) = default;
312 virtual ~MatcherBase() {} in ~MatcherBase()
325 class Matcher : public internal::MatcherBase<T> {
334 : internal::MatcherBase<T>(impl) {} in Matcher()
[all …]
/llvm-project-15.0.7/libc/utils/UnitTest/
H A DLibcTest.h50 struct MatcherBase { struct
51 virtual ~MatcherBase() {} in ~MatcherBase() argument
57 template <typename T> struct Matcher : public MatcherBase { bool match(T &t); }; argument
115 bool testMatch(bool MatchResult, MatcherBase &Matcher, const char *LHSStr,
H A DLibcTest.cpp295 bool Test::testMatch(bool MatchResult, MatcherBase &Matcher, const char *LHSStr, in testMatch()