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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderText.cpp 211 if (firstTextBox()) {
213 RootInlineBox* next = firstTextBox()->root()->nextRootBox();
217 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
287 if (firstTextBox()) {
289 for (InlineTextBox* curr = firstTextBox(); curr; curr = next) {
310 for (InlineTextBox* textBox = firstTextBox(); textBox; textBox = textBox->nextTextBox()) {
321 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
358 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) {
408 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) {
441 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
    [all...]
RenderText.h 120 InlineTextBox* firstTextBox() const { return m_firstTextBox; }
RenderNamedFlowThread.cpp 668 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
697 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
RenderInline.cpp 595 for (InlineTextBox* childText = currText->firstTextBox(); childText; childText = childText->nextTextBox()) {
    [all...]
RenderTreeAsText.cpp 196 if (adjustForTableCells && !text.firstTextBox())
472 for (InlineTextBox* box = text.firstTextBox(); box; box = box->nextTextBox()) {
    [all...]
  /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());
RenderSVGInlineText.cpp 131 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
159 if (!firstTextBox() || !textLength())
177 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) {
SVGInlineFlowBox.cpp 104 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
SVGRenderTreeAsText.cpp 436 for (InlineTextBox* box = text.firstTextBox(); box; box = box->nextTextBox()) {
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.cpp 63 if ((renderer->isBox() && toRenderBox(renderer)->inlineBoxWrapper()) || (renderer->isText() && toRenderText(renderer)->firstTextBox()))
77 if ((renderer->isBox() && toRenderBox(renderer)->inlineBoxWrapper()) || (renderer->isText() && toRenderText(renderer)->firstTextBox()))
466 for (InlineTextBox *box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
645 if (renderer->isText() && toRenderText(renderer)->firstTextBox()) {
658 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
773 if (renderer->isText() && toRenderText(renderer)->firstTextBox()) {
782 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
    [all...]
ContainerNode.cpp 701 if (p->node() && p->node() == this && o->isText() && !o->isBR() && !toRenderText(o)->firstTextBox()) {
705 if (o->isText() && toRenderText(o)->firstTextBox()) {
706 point.move(toRenderText(o)->linesBoundingBox().x(), toRenderText(o)->firstTextBox()->root()->lineTop());
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.cpp 582 if (renderer->firstTextBox())
583 m_textBox = renderer->firstTextBox();
589 if (!renderer->firstTextBox() && str.length() > 0 && !shouldHandleFirstLetter) {
602 for (InlineTextBox* textBox = renderer->firstTextBox(); textBox; textBox = textBox->nextTextBox()) {
629 InlineTextBox* firstTextBox = renderer->containsReversedText() ? (m_sortedTextBoxes.isEmpty() ? 0 : m_sortedTextBoxes[0]) : renderer->firstTextBox();
631 || (m_textBox == firstTextBox && textBoxStart == runStart && runStart > 0);
722 m_textBox = firstLetter->firstTextBox();
    [all...]
CompositeEditCommand.cpp 757 for (InlineTextBox* textBox = textRenderer->firstTextBox(); textBox; textBox = textBox->nextTextBox())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXRenderObject.cpp 638 if (m_renderer->isBR() || !renderText->firstTextBox())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCSSAgent.cpp     [all...]

Completed in 1174 milliseconds