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

  /external/webkit/Source/WebCore/rendering/
RenderText.h 107 InlineTextBox* firstTextBox() const { return m_firstTextBox; }
  /external/webkit/Source/WebCore/rendering/svg/
SVGRootInlineBox.cpp 287 SVGInlineTextBox* firstTextBox = static_cast<SVGInlineTextBox*>(*first);
291 if (firstTextBox->len() == 1 && firstTextBox->len() == lastTextBox->len()) {
292 RenderSVGInlineText* firstContext = toRenderSVGInlineText(firstTextBox->textRenderer());
299 unsigned firstBoxPosition = firstTextBox->start();
300 unsigned firstBoxEnd = firstTextBox->end();
  /external/webkit/Source/WebCore/editing/
TextIterator.cpp 525 if (!renderer->firstTextBox() && str.length() > 0) {
542 for (InlineTextBox* textBox = renderer->firstTextBox(); textBox; textBox = textBox->nextTextBox()) {
549 m_textBox = renderer->containsReversedText() ? (m_sortedTextBoxes.isEmpty() ? 0 : m_sortedTextBoxes[0]) : renderer->firstTextBox();
571 InlineTextBox* firstTextBox = renderer->containsReversedText() ? (m_sortedTextBoxes.isEmpty() ? 0 : m_sortedTextBoxes[0]) : renderer->firstTextBox();
573 || (m_textBox == firstTextBox && textBoxStart == runStart && runStart > 0);
650 m_textBox = firstLetter->firstTextBox();
    [all...]

Completed in 128 milliseconds