Searched defs:Matcher (Results 1 - 2 of 2) sorted by relevance

/xsrc/external/mit/MesaLib/dist/src/gtest/src/
H A Dgtest-matchers.cc45 Matcher<const std::string&>::Matcher(const std::string& s) { *this = Eq(s); } function in class:testing::Matcher::string
49 Matcher<const std::string&>::Matcher(const char* s) { function in class:testing::Matcher::string
55 Matcher<std::string>::Matcher(const std::string& s) { *this = Eq(s); } function in class:testing::Matcher::string
59 Matcher<std::string>::Matcher(const char* s) { *this = Eq(std::string(s)); } function in class:testing::Matcher::string
64 Matcher<const absl::string_view&>::Matcher(cons function in class:testing::Matcher::string_view
70 Matcher<const absl::string_view&>::Matcher(const char* s) { function in class:testing::Matcher::string_view
76 Matcher<const absl::string_view&>::Matcher(absl::string_view s) { function in class:testing::Matcher::string_view
82 Matcher<absl::string_view>::Matcher(const std::string& s) { *this = Eq(s); } function in class:testing::Matcher::string_view
86 Matcher<absl::string_view>::Matcher(const char* s) { function in class:testing::Matcher::string_view
92 Matcher<absl::string_view>::Matcher(absl::string_view s) { function in class:testing::Matcher::string_view
[all...]
/xsrc/external/mit/MesaLib/dist/src/gtest/include/gtest/
H A Dgtest-matchers.h325 class Matcher : public internal::MatcherBase<T> { class in namespace:testing
330 explicit Matcher() {} // NOLINT function in class:testing::Matcher
333 explicit Matcher(const MatcherInterface<const T&>* impl) function in class:testing::Matcher
352 class GTEST_API_ Matcher<const std::string&> class in namespace:testing
355 Matcher() {} function in class:testing::Matcher
357 explicit Matcher(const MatcherInterface<const std::string&>* impl) function in class:testing::Matcher
369 class GTEST_API_ Matcher<std::string> class in namespace:testing
372 Matcher() {} function in class:testing::Matcher
374 explicit Matcher(const MatcherInterface<const std::string&>* impl) function in class:testing::Matcher
376 explicit Matcher(const MatcherInterface<std::string>* impl) function in class:testing::Matcher
392 class GTEST_API_ Matcher<const absl::string_view&> class in namespace:testing
395 Matcher() {} function in class:testing::Matcher
397 explicit Matcher(const MatcherInterface<const absl::string_view&>* impl) function in class:testing::Matcher
412 class GTEST_API_ Matcher<absl::string_view> class in namespace:testing
415 Matcher() {} function in class:testing::Matcher
417 explicit Matcher(const MatcherInterface<const absl::string_view&>* impl) function in class:testing::Matcher
419 explicit Matcher(const MatcherInterface<absl::string_view>* impl) function in class:testing::Matcher
700 Matcher<T>::Matcher(T value) { *this = Eq(value); } function in class:testing::Matcher
[all...]

Completed in 4 milliseconds