HomeSort by: relevance | last modified time | path
    Searched refs:ValueMatcher (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Testing/Support/
SupportHelpers.h 63 explicit ValueIsMatcher(InnerMatcher ValueMatcher)
64 : ValueMatcher(ValueMatcher) {}
69 new Impl<T>(::testing::SafeMatcherCast<T>(ValueMatcher)));
75 explicit Impl(const ::testing::Matcher<T> &ValueMatcher)
76 : ValueMatcher(ValueMatcher) {}
80 return Input && ValueMatcher.MatchAndExplain(Input.getValue(), L);
85 ValueMatcher.DescribeTo(OS);
89 ValueMatcher.DescribeTo(OS)
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/
gmock-matchers.h 3262 template <typename ValueMatcher>
3265 explicit OptionalMatcher(const ValueMatcher& value_matcher)
3278 explicit Impl(const ValueMatcher& value_matcher)
3312 const ValueMatcher value_matcher_;
4550 template <typename ValueMatcher>
4551 inline internal::OptionalMatcher<ValueMatcher> Optional(
4552 const ValueMatcher& value_matcher) {
4553 return internal::OptionalMatcher<ValueMatcher>(value_matcher);

Completed in 62 milliseconds