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 485 if (!renderer->firstTextBox() && str.length() > 0) {
502 for (InlineTextBox* textBox = renderer->firstTextBox(); textBox; textBox = textBox->nextTextBox()) {
509 m_textBox = renderer->containsReversedText() ? (m_sortedTextBoxes.isEmpty() ? 0 : m_sortedTextBoxes[0]) : renderer->firstTextBox();
531 InlineTextBox* firstTextBox = renderer->containsReversedText() ? (m_sortedTextBoxes.isEmpty() ? 0 : m_sortedTextBoxes[0]) : renderer->firstTextBox();
533 || (m_textBox == firstTextBox && textBoxStart == runStart && runStart > 0);
610 m_textBox = firstLetter->firstTextBox();
    [all...]

Completed in 980 milliseconds