HomeSort by relevance Sort by last modified time
    Searched defs:lastTextBox (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebCore/rendering/
RenderText.h 108 InlineTextBox* lastTextBox() const { return m_lastTextBox; }
  /external/webkit/Source/WebCore/rendering/svg/
SVGRootInlineBox.cpp 288 SVGInlineTextBox* lastTextBox = static_cast<SVGInlineTextBox*>(*last);
291 if (firstTextBox->len() == 1 && firstTextBox->len() == lastTextBox->len()) {
293 RenderSVGInlineText* lastContext = toRenderSVGInlineText(lastTextBox->textRenderer());
302 unsigned lastBoxPosition = lastTextBox->start();
303 unsigned lastBoxEnd = lastTextBox->end();
  /external/webkit/Source/WebCore/dom/
Position.cpp 591 InlineTextBox* lastTextBox = textRenderer->lastTextBox();
599 if (box == lastTextBox || textOffset != box->start() + box->len() + 1)
611 if (otherBox == lastTextBox || (otherBox->renderer() == textRenderer && static_cast<InlineTextBox*>(otherBox)->start() > textOffset))
620 if (otherBox == lastTextBox || (otherBox->renderer() == textRenderer && static_cast<InlineTextBox*>(otherBox)->start() > textOffset))
714 InlineTextBox* lastTextBox = textRenderer->lastTextBox();
722 if (box == lastTextBox || textOffset != box->start() + box->len())
734 if (otherBox == lastTextBox || (otherBox->renderer() == textRenderer && static_cast<InlineTextBox*>(otherBox)->start() >= textOffset))
743 if (otherBox == lastTextBox || (otherBox->renderer() == textRenderer && static_cast<InlineTextBox*>(otherBox)->start() >= text (…)
    [all...]

Completed in 65 milliseconds