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 223 if (firstTextBox()) {
225 RootInlineBox* next = firstTextBox()->root()->nextRootBox();
229 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
299 if (firstTextBox()) {
301 for (InlineTextBox* curr = firstTextBox(); curr; curr = next) {
317 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
354 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) {
404 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) {
437 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) {
611 if (!firstTextBox() || textLength() == 0
    [all...]
RenderText.h 118 InlineTextBox* firstTextBox() const { return m_firstTextBox; }
RenderNamedFlowThread.cpp 655 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
684 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
RenderInline.cpp 593 for (InlineTextBox* childText = currText->firstTextBox(); childText; childText = childText->nextTextBox()) {
    [all...]
RenderTreeAsText.cpp 230 if (adjustForTableCells && !text.firstTextBox())
506 for (InlineTextBox* box = text.firstTextBox(); box; box = box->nextTextBox()) {
  /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 132 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
160 if (!firstTextBox() || !textLength())
178 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) {
SVGInlineFlowBox.cpp 104 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
SVGRenderTreeAsText.cpp 449 for (InlineTextBox* box = text.firstTextBox(); box; box = box->nextTextBox()) {
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.cpp 61 if ((renderer->isBox() && toRenderBox(renderer)->inlineBoxWrapper()) || (renderer->isText() && toRenderText(renderer)->firstTextBox()))
75 if ((renderer->isBox() && toRenderBox(renderer)->inlineBoxWrapper()) || (renderer->isText() && toRenderText(renderer)->firstTextBox()))
470 for (InlineTextBox *box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
649 if (renderer->isText() && toRenderText(renderer)->firstTextBox()) {
662 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
777 if (renderer->isText() && toRenderText(renderer)->firstTextBox()) {
786 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
    [all...]
ContainerNode.cpp 786 if (p->node() && p->node() == this && o->isText() && !o->isBR() && !toRenderText(o)->firstTextBox()) {
790 if (o->isText() && toRenderText(o)->firstTextBox()) {
791 point.move(toRenderText(o)->linesBoundingBox().x(), toRenderText(o)->firstTextBox()->root()->lineTop());
    [all...]
  /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...]
CompositeEditCommand.cpp 731 for (InlineTextBox* textBox = textRenderer->firstTextBox(); textBox; textBox = textBox->nextTextBox())
    [all...]
FrameSelection.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityRenderObject.cpp 704 if (m_renderer->isBR() || !renderText->firstTextBox())
    [all...]

Completed in 536 milliseconds