Home | History | Annotate | Download | only in testing

Lines Matching refs:capture

13 class Capture {
15 Capture() : value_(), has_value_(false) {}
37 explicit CaptureEqMatcher(Capture<T>* capture) : capture_(capture) {}
57 Capture<T>* capture_;
63 // CaptureEq(capture) captures the value passed in during matching as long as it
66 Matcher<T> CaptureEq(Capture<T>* capture) {
67 return MakeMatcher(new internal::CaptureEqMatcher<T>(capture));