Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderText.cpp218 if (firstTextBox()) { in removeAndDestroyTextBoxes()
220 RootInlineBox* next = firstTextBox()->root().nextRootBox(); in removeAndDestroyTextBoxes()
224 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) in removeAndDestroyTextBoxes()
294 if (firstTextBox()) { in deleteTextBoxes()
296 for (InlineTextBox* curr = firstTextBox(); curr; curr = next) { in deleteTextBoxes()
317 for (InlineTextBox* textBox = firstTextBox(); textBox; textBox = textBox->nextTextBox()) { in plainText()
328 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) in absoluteRects()
365 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) { in absoluteRectsForRange()
415 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) { in absoluteQuads()
448 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) { in absoluteQuadsForRange()
[all …]
DRenderText.h123 InlineTextBox* firstTextBox() const { return m_firstTextBox; } in firstTextBox() function
DRenderTreeAsText.cpp195 if (adjustForTableCells && !text.firstTextBox()) in writeRenderObject()
471 for (InlineTextBox* box = text.firstTextBox(); box; box = box->nextTextBox()) { in write()
DRenderInline.cpp606 …for (InlineTextBox* childText = currText->firstTextBox(); childText; childText = childText->nextTe… in generateCulledLineBoxRects()
908 if (currText->firstTextBox()) in culledInlineFirstLineBox()
909 return currText->firstTextBox(); in culledInlineFirstLineBox()
1270 …for (InlineTextBox* childText = currText->firstTextBox(); childText; childText = childText->nextTe… in dirtyLineBoxes()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DSVGRootInlineBox.cpp257 SVGInlineTextBox* firstTextBox = toSVGInlineTextBox(*first); in reverseInlineBoxRangeAndValueListsIfNeeded() local
261 if (firstTextBox->len() == 1 && firstTextBox->len() == lastTextBox->len()) { in reverseInlineBoxRangeAndValueListsIfNeeded()
262 RenderSVGInlineText& firstContext = toRenderSVGInlineText(firstTextBox->textRenderer()); in reverseInlineBoxRangeAndValueListsIfNeeded()
268 …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()
DSVGRenderTreeAsText.cpp457 for (InlineTextBox* box = text.firstTextBox(); box; box = box->nextTextBox()) { in writeSVGInlineTextBoxes()
DSVGInlineTextBox.cpp725 for (InlineTextBox* box = textRenderer.firstTextBox(); box; box = box->nextTextBox()) { in paintTextMatchMarker()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DPosition.cpp62 …x(renderer)->inlineBoxWrapper()) || (renderer->isText() && toRenderText(renderer)->firstTextBox())) in nextRenderedEditable()
76 …x(renderer)->inlineBoxWrapper()) || (renderer->isText() && toRenderText(renderer)->firstTextBox())) in previousRenderedEditable()
464 for (InlineTextBox *box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) { in renderedOffset()
620 if (renderer->isText() && toRenderText(renderer)->firstTextBox()) { in upstream()
633 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) { in upstream()
748 if (renderer->isText() && toRenderText(renderer)->firstTextBox()) { in downstream()
757 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) { in downstream()
904 for (InlineTextBox *box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) { in inRenderedText()
929 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) { in isRenderedCharacter()
1096 … for (InlineTextBox* box = toRenderText(next)->firstTextBox(); box; box = box->nextTextBox()) { in searchAheadForBetterMatch()
[all …]
DContainerNode.cpp813 …(p->node() && p->node() == this && o->isText() && !o->isBR() && !toRenderText(o)->firstTextBox()) { in getUpperLeftCorner()
817 if (o->isText() && toRenderText(o)->firstTextBox()) { in getUpperLeftCorner()
818 …point.move(toRenderText(o)->linesBoundingBox().x(), toRenderText(o)->firstTextBox()->root().lineTo… in getUpperLeftCorner()
/external/chromium_org/third_party/WebKit/Source/core/editing/
DTextIterator.cpp629 if (renderer->firstTextBox()) in handleTextNode()
630 m_textBox = renderer->firstTextBox(); in handleTextNode()
636 if (!renderer->firstTextBox() && str.length() > 0 && !shouldHandleFirstLetter) { in handleTextNode()
649 …for (InlineTextBox* textBox = renderer->firstTextBox(); textBox; textBox = textBox->nextTextBox())… in handleTextNode()
676 …neTextBox* firstTextBox = renderer->containsReversedText() ? (m_sortedTextBoxes.isEmpty() ? 0 : m_… in handleTextBox() local
678 || (m_textBox == firstTextBox && textBoxStart == runStart && runStart > 0); in handleTextBox()
769 m_textBox = firstLetter->firstTextBox(); in handleTextNodeFirstLetter()
1371 if (!renderer->firstTextBox() && text.length() > 0) in handleTextNode()
DCompositeEditCommand.cpp728 …for (InlineTextBox* textBox = textRenderer->firstTextBox(); textBox; textBox = textBox->nextTextBo… in deleteInsignificantText()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorCSSAgent.cpp709 for (InlineTextBox* box = renderer->firstTextBox(); box; box = box->nextTextBox()) { in collectPlatformFontsForRenderer()
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
DAXRenderObject.cpp630 if (m_renderer->isBR() || !renderText->firstTextBox()) in computeAccessibilityIsIgnored()