Lines Matching full:capture
17 class Capture {
19 Capture() : value_(), has_value_(false) {}
41 explicit CaptureEqMatcher(Capture<T>* capture) : capture_(capture) {}
61 Capture<T>* capture_;
76 // CaptureEq(capture) captures the value passed in during matching as long as it
79 inline Matcher<T> CaptureEq(Capture<T>* capture) {
80 return MakeMatcher(new internal::CaptureEqMatcher<T>(capture));