Home | History | Annotate | Download | only in test

Lines Matching refs:IsEven

2104 bool IsEven(int n) {
2110 bool operator()(int n) { return IsEven(n); }
2116 if (IsEven(n)) {
2128 if (IsEven(n))
2138 if (IsEven(n))
2154 return IsEven(n1 + n2);
2161 return IsEven(n1 + n2 + n3);
2171 if (IsEven(sum)) {
2189 if (IsEven(sum)) {
2209 ASSERT_PRED1(IsEven, 4);
2213 EXPECT_PRED1(IsEven, 5) << "This failure is expected.";
2240 EXPECT_PRED1(IsEven, n++);