• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/WebCore-7537.78.1/rendering/

Lines Matching refs:curr

89     for (InlineFlowBox* curr = box; curr; curr = curr->nextLineBox())
90 curr->setExtracted();
105 for (InlineFlowBox* curr = box; curr; curr = curr->nextLineBox()) {
106 curr->setExtracted(false);
107 last = curr;
134 for (InlineFlowBox* curr = m_firstLineBox; curr; curr = next) {
135 next = curr->nextLineBox();
136 curr->destroy(arena);
145 for (InlineFlowBox* curr = firstLineBox(); curr; curr = curr->nextLineBox())
146 curr->dirtyLineBoxes();
232 for (InlineFlowBox* curr = firstLineBox(); curr; curr = curr->nextLineBox()) {
237 RootInlineBox* root = curr->root();
238 LayoutUnit topForPaginationCheck = curr->logicalTopVisualOverflow(root->lineTop());
239 LayoutUnit bottomForPaginationCheck = curr->logicalLeftVisualOverflow();
240 if (!curr->parent()) {
247 if (RootInlineBox* nextRootBox = curr->root()->nextRootBox())
260 if (lineIntersectsDirtyRect(renderer, curr, info, paintOffset)) {
261 RootInlineBox* root = curr->root();
262 curr->paint(info, paintOffset, root->lineTop(), root->lineBottom());
298 for (InlineFlowBox* curr = lastLineBox(); curr; curr = curr->prevLineBox()) {
299 RootInlineBox* root = curr->root();
300 if (rangeIntersectsRect(renderer, curr->logicalTopVisualOverflow(root->lineTop()), curr->logicalBottomVisualOverflow(root->lineBottom()), rect, accumulatedOffset)) {
301 bool inside = curr->nodeAtPoint(request, result, locationInContainer, accumulatedOffset, root->lineTop(), root->lineBottom());
335 RenderObject* curr = 0;
336 for (curr = child->previousSibling(); curr; curr = curr->previousSibling()) {
337 if (curr->isFloatingOrOutOfFlowPositioned())
340 if (curr->isReplaced()) {
341 InlineBox* wrapper = toRenderBox(curr)->inlineBoxWrapper();
344 } else if (curr->isText()) {
345 InlineTextBox* textBox = toRenderText(curr)->lastTextBox();
348 } else if (curr->isRenderInline()) {
349 InlineBox* lastSiblingBox = toRenderInline(curr)->lastLineBoxIncludingCulling();
393 if (adjacentBox && (adjacentBox->lineBreakObj() == child || child->isBR() || (curr && curr->isBR()) || insertedAfterLeadingSpace))