HomeSort by relevance Sort by last modified time
    Searched refs:nextTextBox (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
AbstractInlineTextBox.cpp 81 return getOrCreate(m_renderText, m_inlineTextBox->nextTextBox());
164 if (m_inlineTextBox->nextTextBox() && m_inlineTextBox->nextTextBox()->start() > m_inlineTextBox->end() && result.length() && !result.right(1).containsOnlyWhitespace())
RenderText.cpp 224 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
251 for (InlineTextBox* curr = box; curr; curr = curr->nextTextBox())
267 for (InlineTextBox* curr = box; curr; curr = curr->nextTextBox()) {
281 m_firstTextBox = box->nextTextBox();
284 if (box->nextTextBox())
285 box->nextTextBox()->setPreviousTextBox(box->prevTextBox());
287 box->prevTextBox()->setNextTextBox(box->nextTextBox());
297 next = curr->nextTextBox();
317 for (InlineTextBox* textBox = firstTextBox(); textBox; textBox = textBox->nextTextBox()) {
320 if (textBox->nextTextBox() && textBox->nextTextBox()->start() > textBox->end() && text.length() && !text.right(1).containsO (…)
    [all...]
InlineTextBox.h 58 InlineTextBox* nextTextBox() const { return m_nextTextBox; }
RenderInline.cpp 624 for (InlineTextBox* childText = currText->firstTextBox(); childText; childText = childText->nextTextBox()) {
    [all...]
RenderTreeAsText.cpp 473 for (InlineTextBox* box = text.firstTextBox(); box; box = box->nextTextBox()) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGInlineText.cpp 132 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
178 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) {
SVGInlineTextBox.cpp 74 InlineTextBox* nextBox = nextTextBox();
672 for (InlineTextBox* box = textRenderer.firstTextBox(); box; box = box->nextTextBox()) {
SVGRenderTreeAsText.cpp 458 for (InlineTextBox* box = text.firstTextBox(); box; box = box->nextTextBox()) {
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.cpp 464 for (InlineTextBox *box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
605 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
729 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.cpp 664 for (InlineTextBox* textBox = renderer->firstTextBox(); textBox; textBox = textBox->nextTextBox()) {
709 InlineTextBox* nextTextBox = 0;
712 nextTextBox = m_sortedTextBoxes[m_sortedTextBoxesPosition + 1];
714 nextTextBox = m_textBox->nextTextBox();
716 ASSERT(!nextTextBox || nextTextBox->renderer() == renderer);
740 unsigned nextRunStart = nextTextBox ? nextTextBox->start() : str.length();
743 m_textBox = nextTextBox;
    [all...]
VisibleUnits.cpp 132 const InlineTextBox* nextTextBox(const RootInlineBox*, const InlineTextBox*);
167 const InlineTextBox* CachedLogicallyOrderedLeafBoxes::nextTextBox(const RootInlineBox* root, const InlineTextBox* box)
253 const InlineTextBox* nextBox = leafBoxes.nextTextBox(&startBox->root(), textBox);
257 nextBox = leafBoxes.nextTextBox(startBox->root().nextRootBox(), 0);
275 nextBox = leafBoxes.nextTextBox(nextRoot, 0);
    [all...]
CompositeEditCommand.cpp 739 for (InlineTextBox* textBox = textRenderer->firstTextBox(); textBox; textBox = textBox->nextTextBox())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCSSAgent.cpp 751 for (InlineTextBox* box = renderer->firstTextBox(); box; box = box->nextTextBox()) {
    [all...]

Completed in 742 milliseconds