Home
last modified time | relevance | path

Searched refs:nextTextBox (Results 1 – 13 of 13) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderText.cpp224 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) in removeAndDestroyTextBoxes()
251 for (InlineTextBox* curr = box; curr; curr = curr->nextTextBox()) in extractTextBox()
267 for (InlineTextBox* curr = box; curr; curr = curr->nextTextBox()) { in attachTextBox()
281 m_firstTextBox = box->nextTextBox(); in removeTextBox()
284 if (box->nextTextBox()) in removeTextBox()
285 box->nextTextBox()->setPreviousTextBox(box->prevTextBox()); in removeTextBox()
287 box->prevTextBox()->setNextTextBox(box->nextTextBox()); in removeTextBox()
297 next = curr->nextTextBox(); in deleteTextBoxes()
317 for (InlineTextBox* textBox = firstTextBox(); textBox; textBox = textBox->nextTextBox()) { in plainText()
320 …if (textBox->nextTextBox() && textBox->nextTextBox()->start() > textBox->end() && text.length() &&… in plainText()
[all …]
DAbstractInlineTextBox.cpp81 return getOrCreate(m_renderText, m_inlineTextBox->nextTextBox()); in nextInlineTextBox()
164 …if (m_inlineTextBox->nextTextBox() && m_inlineTextBox->nextTextBox()->start() > m_inlineTextBox->e… in text()
DInlineTextBox.h58 InlineTextBox* nextTextBox() const { return m_nextTextBox; } in nextTextBox() function
DRenderInline.cpp624 …neTextBox* childText = currText->firstTextBox(); childText; childText = childText->nextTextBox()) { in generateCulledLineBoxRects()
1262 …lineTextBox* childText = currText->firstTextBox(); childText; childText = childText->nextTextBox()) in dirtyLineBoxes()
DRenderTreeAsText.cpp473 for (InlineTextBox* box = text.firstTextBox(); box; box = box->nextTextBox()) { in write()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DPosition.cpp464 for (InlineTextBox *box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) { in renderedOffset()
605 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) { in upstream()
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()
1094 for (box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) { in getInlineBoxAndOffset()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DRenderSVGInlineText.cpp132 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) in floatLinesBoundingBox()
178 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) { in positionForPoint()
DSVGInlineTextBox.cpp74 InlineTextBox* nextBox = nextTextBox(); in dirtyLineBoxes()
672 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/editing/
DTextIterator.cpp664 …or (InlineTextBox* textBox = renderer->firstTextBox(); textBox; textBox = textBox->nextTextBox()) { in handleTextNode()
709 InlineTextBox* nextTextBox = 0; in handleTextBox() local
712 nextTextBox = m_sortedTextBoxes[m_sortedTextBoxesPosition + 1]; in handleTextBox()
714 nextTextBox = m_textBox->nextTextBox(); in handleTextBox()
716 ASSERT(!nextTextBox || nextTextBox->renderer() == renderer); in handleTextBox()
740 unsigned nextRunStart = nextTextBox ? nextTextBox->start() : str.length(); in handleTextBox()
743 m_textBox = nextTextBox; in handleTextBox()
749 m_textBox = nextTextBox; in handleTextBox()
DVisibleUnits.cpp132 const InlineTextBox* nextTextBox(const RootInlineBox*, const InlineTextBox*);
167 const InlineTextBox* CachedLogicallyOrderedLeafBoxes::nextTextBox(const RootInlineBox* root, const … in nextTextBox() function in blink::CachedLogicallyOrderedLeafBoxes
253 const InlineTextBox* nextBox = leafBoxes.nextTextBox(&startBox->root(), textBox); in logicallyNextBox()
257 nextBox = leafBoxes.nextTextBox(startBox->root().nextRootBox(), 0); in logicallyNextBox()
275 nextBox = leafBoxes.nextTextBox(nextRoot, 0); in logicallyNextBox()
DCompositeEditCommand.cpp739 … (InlineTextBox* textBox = textRenderer->firstTextBox(); textBox; textBox = textBox->nextTextBox()) in deleteInsignificantText()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorCSSAgent.cpp751 for (InlineTextBox* box = renderer->firstTextBox(); box; box = box->nextTextBox()) { in collectPlatformFontsForRenderer()