Home | History | Annotate | Download | only in test

Lines Matching full:iseven

1572 bool IsEven(int n) {
1578 bool operator()(int n) { return IsEven(n); }
1584 if (IsEven(n)) {
1603 return IsEven(n1 + n2);
1610 return IsEven(n1 + n2 + n3);
1620 if (IsEven(sum)) {
1638 if (IsEven(sum)) {
1658 ASSERT_PRED1(IsEven, 4);
1662 EXPECT_PRED1(IsEven, 5) << "This failure is expected.";
1689 EXPECT_PRED1(IsEven, n++);