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 122 InlineTextBox* firstTextBox() const { return m_firstTextBox; }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRootInlineBox.cpp 257 SVGInlineTextBox* firstTextBox = toSVGInlineTextBox(*first);
261 if (firstTextBox->len() == 1 && firstTextBox->len() == lastTextBox->len()) {
262 RenderSVGInlineText& firstContext = toRenderSVGInlineText(firstTextBox->renderer());
268 swapItemsInLayoutAttributes(firstAttributes, lastAttributes, firstTextBox->start(), lastTextBox->start());
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.cpp 644 if (renderer->firstTextBox())
645 m_textBox = renderer->firstTextBox();
651 if (!renderer->firstTextBox() && str.length() > 0 && !shouldHandleFirstLetter) {
664 for (InlineTextBox* textBox = renderer->firstTextBox(); textBox; textBox = textBox->nextTextBox()) {
691 InlineTextBox* firstTextBox = renderer->containsReversedText() ? (m_sortedTextBoxes.isEmpty() ? 0 : m_sortedTextBoxes[0]) : renderer->firstTextBox();
693 || (m_textBox == firstTextBox && textBoxStart == runStart && runStart > 0);
784 m_textBox = firstLetter->firstTextBox();
    [all...]

Completed in 104 milliseconds