Home | History | Annotate | Download | only in gmock

Lines Matching defs:predicate_

1432   explicit TrulyMatcher(Predicate pred) : predicate_(pred) {}
1444 // We cannot write 'return !!predicate_(x);' as that doesn't work
1445 // when predicate_(x) returns a class convertible to bool but
1447 if (predicate_(x))
1461 Predicate predicate_;