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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderText.h 118 InlineTextBox* firstTextBox() const { return m_firstTextBox; }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRootInlineBox.cpp 280 SVGInlineTextBox* firstTextBox = toSVGInlineTextBox(*first);
284 if (firstTextBox->len() == 1 && firstTextBox->len() == lastTextBox->len()) {
285 RenderSVGInlineText* firstContext = toRenderSVGInlineText(firstTextBox->textRenderer());
291 swapItemsInLayoutAttributes(firstAttributes, lastAttributes, firstTextBox->start(), lastTextBox->start());
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.cpp 508 if (renderer->firstTextBox())
509 m_textBox = renderer->firstTextBox();
515 if (!renderer->firstTextBox() && str.length() > 0 && !shouldHandleFirstLetter) {
528 for (InlineTextBox* textBox = renderer->firstTextBox(); textBox; textBox = textBox->nextTextBox()) {
555 InlineTextBox* firstTextBox = renderer->containsReversedText() ? (m_sortedTextBoxes.isEmpty() ? 0 : m_sortedTextBoxes[0]) : renderer->firstTextBox();
557 || (m_textBox == firstTextBox && textBoxStart == runStart && runStart > 0);
646 m_textBox = firstLetter->firstTextBox();
    [all...]

Completed in 193 milliseconds