Home | History | Annotate | Download | only in rendering

Lines Matching refs:nextBox

556             const InlineBox* nextBox = box;
558 rightmostBox = nextBox;
559 nextBox = rightmostBox->nextLeafChildIgnoringLineBreak();
560 } while (nextBox && nextBox->bidiLevel() >= box->bidiLevel());
568 const InlineBox* nextBox = box->nextLeafChildIgnoringLineBreak();
569 if ((nextBox && nextBox->bidiLevel() == box->bidiLevel())
574 if (nextBox && nextBox->bidiLevel() > box->bidiLevel()) {
578 rightmostBox = nextBox;
579 nextBox = rightmostBox->nextLeafChildIgnoringLineBreak();
580 } while (nextBox && nextBox->bidiLevel() > box->bidiLevel());
584 if (!nextBox || nextBox->bidiLevel() < box->bidiLevel()) {