Lines Matching refs:predCount
287 int predCount = 0; in test() local
289 auto pred = [&](int l, int r) { ++predCount; return l == r; }; in test()
293 assert(predCount == 0); in test()
299 int predCount = 0; in test() local
301 auto pred = [&](int l, int r) { ++predCount; return l == r; }; in test()
305 assert(predCount == 0); in test()
314 int predCount = 0; in test() local
316 auto pred = [&](int l, int r) { ++predCount; return l == r; }; in test()
320 assert(predCount <= 4); in test()
326 int predCount = 0; in test() local
328 auto pred = [&](int l, int r) { ++predCount; return l == r; }; in test()
334 assert(predCount <= 4); in test()
343 int predCount = 0; in test() local
345 auto pred = [&](int l, int r) { ++predCount; return l == r; }; in test()
349 assert(predCount == 3); in test()
355 int predCount = 0; in test() local
357 auto pred = [&](int l, int r) { ++predCount; return l == r; }; in test()
361 assert(predCount == 3); in test()