Lines Matching refs:bot
608 auto advanceIter = [](Iter& iter, int& iterTop, int& iterBot, int bot) {
609 if (bot == iterBot) {
626 int top, bot;
632 bot = botA;
634 bot = topA = topB;
641 bot = botB;
643 bot = topB = topA;
647 bot = topA = topB = std::min(botA, botB);
656 if (bot > fBounds.fBottom) {
657 bot = fBounds.fBottom;
659 SkASSERT(top < bot);
662 this->addRun(fBounds.fLeft, bot - 1, 0, fBounds.width());
664 SkASSERT(bot <= fBounds.fBottom);
667 this->operateX(bot - 1, rowIterA, rowIterB, proc);
670 advanceIter(iterA, topA, botA, bot);
671 advanceIter(iterB, topB, botB, bot);
1349 int bot = r.fBottom - offsetY;
1350 SkASSERT(bot >= prevBot);
1351 if (bot > prevBot) {
1366 currY->fY = bot - 1;
1369 prevBot = bot;