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.h122 InlineTextBox* firstTextBox() const { return m_firstTextBox; } in firstTextBox() function
DRenderInline.cpp624 …for (InlineTextBox* childText = currText->firstTextBox(); childText; childText = childText->nextTe… in generateCulledLineBoxRects()
932 if (currText->firstTextBox()) in culledInlineFirstLineBox()
933 return currText->firstTextBox(); in culledInlineFirstLineBox()
1262 …for (InlineTextBox* childText = currText->firstTextBox(); childText; childText = childText->nextTe… in dirtyLineBoxes()
DRenderTreeAsText.cpp200 if (adjustForTableCells && !text.firstTextBox()) in writeRenderObject()
473 for (InlineTextBox* box = text.firstTextBox(); box; box = box->nextTextBox()) { in write()
/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->renderer()); in reverseInlineBoxRangeAndValueListsIfNeeded()
268 …swapItemsInLayoutAttributes(firstAttributes, lastAttributes, firstTextBox->start(), lastTextBox->s… in reverseInlineBoxRangeAndValueListsIfNeeded()
DRenderSVGInlineText.cpp132 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) in floatLinesBoundingBox()
160 if (!firstTextBox() || !textLength()) in positionForPoint()
178 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) { in positionForPoint()
DSVGInlineTextBox.cpp672 for (InlineTextBox* box = textRenderer.firstTextBox(); box; box = box->nextTextBox()) { in paintTextMatchMarker()
DSVGRenderTreeAsText.cpp458 for (InlineTextBox* box = text.firstTextBox(); box; box = box->nextTextBox()) { in writeSVGInlineTextBoxes()
/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()
592 if (renderer->isText() && toRenderText(renderer)->firstTextBox()) { in upstream()
605 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) { in upstream()
720 if (renderer->isText() && toRenderText(renderer)->firstTextBox()) { in downstream()
729 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) { in downstream()
876 for (InlineTextBox *box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) { in inRenderedText()
901 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) { in isRenderedCharacter()
1028 … for (InlineTextBox* box = toRenderText(next)->firstTextBox(); box; box = box->nextTextBox()) { in searchAheadForBetterMatch()
[all …]
DContainerNode.cpp900 …(p->node() && p->node() == this && o->isText() && !o->isBR() && !toRenderText(o)->firstTextBox()) { in getUpperLeftCorner()
904 if (o->isText() && toRenderText(o)->firstTextBox()) { in getUpperLeftCorner()
905 …point.move(toRenderText(o)->linesBoundingBox().x(), toRenderText(o)->firstTextBox()->root().lineTo… in getUpperLeftCorner()
/external/chromium_org/third_party/WebKit/Source/core/editing/
DTextIterator.cpp644 if (renderer->firstTextBox()) in handleTextNode()
645 m_textBox = renderer->firstTextBox(); in handleTextNode()
651 if (!renderer->firstTextBox() && str.length() > 0 && !shouldHandleFirstLetter) { in handleTextNode()
664 …for (InlineTextBox* textBox = renderer->firstTextBox(); textBox; textBox = textBox->nextTextBox())… in handleTextNode()
691 …neTextBox* firstTextBox = renderer->containsReversedText() ? (m_sortedTextBoxes.isEmpty() ? 0 : m_… in handleTextBox() local
693 || (m_textBox == firstTextBox && textBoxStart == runStart && runStart > 0); in handleTextBox()
784 m_textBox = firstLetter->firstTextBox(); in handleTextNodeFirstLetter()
1480 if (!renderer->firstTextBox() && text.length() > 0) in handleTextNode()
DCompositeEditCommand.cpp739 …for (InlineTextBox* textBox = textRenderer->firstTextBox(); textBox; textBox = textBox->nextTextBo… in deleteInsignificantText()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorCSSAgent.cpp751 for (InlineTextBox* box = renderer->firstTextBox(); box; box = box->nextTextBox()) { in collectPlatformFontsForRenderer()
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
DAXRenderObject.cpp639 if (m_renderer->isBR() || !renderText->firstTextBox()) in computeAccessibilityIsIgnored()