Home | History | Annotate | Download | only in test

Lines Matching refs:IsEven

2142 bool IsEven(int n) {
2148 bool operator()(int n) { return IsEven(n); }
2154 if (IsEven(n)) {
2166 if (IsEven(n))
2176 if (IsEven(n))
2192 return IsEven(n1 + n2);
2199 return IsEven(n1 + n2 + n3);
2209 if (IsEven(sum)) {
2227 if (IsEven(sum)) {
2247 ASSERT_PRED1(IsEven, 4);
2251 EXPECT_PRED1(IsEven, 5) << "This failure is expected.";
2278 EXPECT_PRED1(IsEven, n++);