Home
last modified time | relevance | path

Searched refs:firstTextBox (Results 1 – 15 of 15) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderText.cpp211 if (firstTextBox()) { in removeAndDestroyTextBoxes()
213 RootInlineBox* next = firstTextBox()->root()->nextRootBox(); in removeAndDestroyTextBoxes()
217 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) in removeAndDestroyTextBoxes()
287 if (firstTextBox()) { in deleteTextBoxes()
289 for (InlineTextBox* curr = firstTextBox(); curr; curr = next) { in deleteTextBoxes()
310 for (InlineTextBox* textBox = firstTextBox(); textBox; textBox = textBox->nextTextBox()) { in plainText()
321 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) in absoluteRects()
358 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) { in absoluteRectsForRange()
408 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) { in absoluteQuads()
441 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) { in absoluteQuadsForRange()
[all …]
DRenderText.h120 InlineTextBox* firstTextBox() const { return m_firstTextBox; } in firstTextBox() function
DRenderNamedFlowThread.cpp668 … for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) { in getRanges()
697 … for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) { in getRanges()
DRenderInline.cpp595 …for (InlineTextBox* childText = currText->firstTextBox(); childText; childText = childText->nextTe… in generateCulledLineBoxRects()
899 if (currText->firstTextBox()) in culledInlineFirstLineBox()
900 return currText->firstTextBox(); in culledInlineFirstLineBox()
1261 …for (InlineTextBox* childText = currText->firstTextBox(); childText; childText = childText->nextTe… in dirtyLineBoxes()
DRenderTreeAsText.cpp196 if (adjustForTableCells && !text.firstTextBox()) in writeRenderObject()
472 for (InlineTextBox* box = text.firstTextBox(); box; box = box->nextTextBox()) { in write()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DSVGRootInlineBox.cpp280 SVGInlineTextBox* firstTextBox = toSVGInlineTextBox(*first); in reverseInlineBoxRangeAndValueListsIfNeeded() local
284 if (firstTextBox->len() == 1 && firstTextBox->len() == lastTextBox->len()) { in reverseInlineBoxRangeAndValueListsIfNeeded()
285 RenderSVGInlineText* firstContext = toRenderSVGInlineText(firstTextBox->textRenderer()); in reverseInlineBoxRangeAndValueListsIfNeeded()
291 …swapItemsInLayoutAttributes(firstAttributes, lastAttributes, firstTextBox->start(), lastTextBox->s… in reverseInlineBoxRangeAndValueListsIfNeeded()
DRenderSVGInlineText.cpp131 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) in floatLinesBoundingBox()
159 if (!firstTextBox() || !textLength()) in positionForPoint()
177 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) { in positionForPoint()
DSVGInlineFlowBox.cpp104 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) { in computeTextMatchMarkerRectForRenderer()
DSVGRenderTreeAsText.cpp436 for (InlineTextBox* box = text.firstTextBox(); box; box = box->nextTextBox()) { in writeSVGInlineTextBoxes()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DPosition.cpp63 …x(renderer)->inlineBoxWrapper()) || (renderer->isText() && toRenderText(renderer)->firstTextBox())) in nextRenderedEditable()
77 …x(renderer)->inlineBoxWrapper()) || (renderer->isText() && toRenderText(renderer)->firstTextBox())) in previousRenderedEditable()
466 for (InlineTextBox *box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) { in renderedOffset()
645 if (renderer->isText() && toRenderText(renderer)->firstTextBox()) { in upstream()
658 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) { in upstream()
773 if (renderer->isText() && toRenderText(renderer)->firstTextBox()) { in downstream()
782 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) { in downstream()
923 for (InlineTextBox *box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) { in inRenderedText()
948 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) { in isRenderedCharacter()
1115 … for (InlineTextBox* box = toRenderText(next)->firstTextBox(); box; box = box->nextTextBox()) { in searchAheadForBetterMatch()
[all …]
DContainerNode.cpp701 …(p->node() && p->node() == this && o->isText() && !o->isBR() && !toRenderText(o)->firstTextBox()) { in getUpperLeftCorner()
705 if (o->isText() && toRenderText(o)->firstTextBox()) { in getUpperLeftCorner()
706 …point.move(toRenderText(o)->linesBoundingBox().x(), toRenderText(o)->firstTextBox()->root()->lineT… in getUpperLeftCorner()
/external/chromium_org/third_party/WebKit/Source/core/editing/
DTextIterator.cpp582 if (renderer->firstTextBox()) in handleTextNode()
583 m_textBox = renderer->firstTextBox(); in handleTextNode()
589 if (!renderer->firstTextBox() && str.length() > 0 && !shouldHandleFirstLetter) { in handleTextNode()
602 …for (InlineTextBox* textBox = renderer->firstTextBox(); textBox; textBox = textBox->nextTextBox())… in handleTextNode()
629 …neTextBox* firstTextBox = renderer->containsReversedText() ? (m_sortedTextBoxes.isEmpty() ? 0 : m_… in handleTextBox() local
631 || (m_textBox == firstTextBox && textBoxStart == runStart && runStart > 0); in handleTextBox()
722 m_textBox = firstLetter->firstTextBox(); in handleTextNodeFirstLetter()
1315 if (!renderer->firstTextBox() && text.length() > 0) in handleTextNode()
DCompositeEditCommand.cpp757 …for (InlineTextBox* textBox = textRenderer->firstTextBox(); textBox; textBox = textBox->nextTextBo… in deleteInsignificantText()
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
DAXRenderObject.cpp638 if (m_renderer->isBR() || !renderText->firstTextBox()) in computeAccessibilityIsIgnored()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorCSSAgent.cpp1027 for (InlineTextBox* box = renderer->firstTextBox(); box; box = box->nextTextBox()) { in collectPlatformFontsForRenderer()