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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderText.cpp 218 if (firstTextBox()) {
220 RootInlineBox* next = firstTextBox()->root().nextRootBox();
224 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
294 if (firstTextBox()) {
296 for (InlineTextBox* curr = firstTextBox(); curr; curr = next) {
317 for (InlineTextBox* textBox = firstTextBox(); textBox; textBox = textBox->nextTextBox()) {
328 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
365 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) {
415 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) {
448 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
    [all...]
RenderText.h 122 InlineTextBox* firstTextBox() const { return m_firstTextBox; }
RenderInline.cpp 624 for (InlineTextBox* childText = currText->firstTextBox(); childText; childText = childText->nextTextBox()) {
    [all...]
RenderTreeAsText.cpp 200 if (adjustForTableCells && !text.firstTextBox())
473 for (InlineTextBox* box = text.firstTextBox(); box; box = box->nextTextBox()) {
  /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());
RenderSVGInlineText.cpp 132 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
160 if (!firstTextBox() || !textLength())
178 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) {
SVGInlineTextBox.cpp 672 for (InlineTextBox* box = textRenderer.firstTextBox(); box; box = box->nextTextBox()) {
SVGRenderTreeAsText.cpp 458 for (InlineTextBox* box = text.firstTextBox(); box; box = box->nextTextBox()) {
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.cpp 62 if ((renderer->isBox() && toRenderBox(renderer)->inlineBoxWrapper()) || (renderer->isText() && toRenderText(renderer)->firstTextBox()))
76 if ((renderer->isBox() && toRenderBox(renderer)->inlineBoxWrapper()) || (renderer->isText() && toRenderText(renderer)->firstTextBox()))
464 for (InlineTextBox *box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
592 if (renderer->isText() && toRenderText(renderer)->firstTextBox()) {
605 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
720 if (renderer->isText() && toRenderText(renderer)->firstTextBox()) {
729 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
    [all...]
ContainerNode.cpp 900 if (p->node() && p->node() == this && o->isText() && !o->isBR() && !toRenderText(o)->firstTextBox()) {
904 if (o->isText() && toRenderText(o)->firstTextBox()) {
905 point.move(toRenderText(o)->linesBoundingBox().x(), toRenderText(o)->firstTextBox()->root().lineTop().toFloat());
    [all...]
  /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...]
CompositeEditCommand.cpp 739 for (InlineTextBox* textBox = textRenderer->firstTextBox(); textBox; textBox = textBox->nextTextBox())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXRenderObject.cpp 639 if (m_renderer->isBR() || !renderText->firstTextBox())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCSSAgent.cpp 751 for (InlineTextBox* box = renderer->firstTextBox(); box; box = box->nextTextBox()) {
    [all...]

Completed in 1201 milliseconds