Searched refs:firstTextBox (Results 1 - 15 of 15) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DRenderText.cpp215 if (firstTextBox()) {
217 RootInlineBox* next = firstTextBox()->root()->nextRootBox();
221 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
291 if (firstTextBox()) {
294 for (InlineTextBox* curr = firstTextBox(); curr; curr = next) {
310 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
326 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) {
384 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) {
416 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) {
474 if (!firstTextBox() || textLengt
[all...]
H A DRenderText.h107 InlineTextBox* firstTextBox() const { return m_firstTextBox; } function in class:WebCore::RenderText
H A DRenderInline.cpp537 for (InlineTextBox* childText = currText->firstTextBox(); childText; childText = childText->nextTextBox()) {
621 for (InlineTextBox* childText = currText->firstTextBox(); childText; childText = childText->nextTextBox()) {
826 for (InlineTextBox* childText = currText->firstTextBox(); childText; childText = childText->nextTextBox()) {
859 if (currText->firstTextBox())
860 return currText->firstTextBox();
1253 for (InlineTextBox* childText = currText->firstTextBox(); childText; childText = childText->nextTextBox())
H A DRenderTreeAsText.cpp256 if (adjustForTableCells && !text.firstTextBox())
560 for (InlineTextBox* box = text.firstTextBox(); box; box = box->nextTextBox()) {
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGRootInlineBox.cpp287 SVGInlineTextBox* firstTextBox = static_cast<SVGInlineTextBox*>(*first); local
291 if (firstTextBox->len() == 1 && firstTextBox->len() == lastTextBox->len()) {
292 RenderSVGInlineText* firstContext = toRenderSVGInlineText(firstTextBox->textRenderer());
299 unsigned firstBoxPosition = firstTextBox->start();
300 unsigned firstBoxEnd = firstTextBox->end();
H A DRenderSVGInlineText.cpp132 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
173 if (!firstTextBox() || !textLength())
191 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) {
H A DSVGInlineFlowBox.cpp107 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
H A DSVGRenderTreeAsText.cpp509 for (InlineTextBox* box = text.firstTextBox(); box; box = box->nextTextBox()) {
/external/webkit/Source/WebCore/dom/
H A DPosition.cpp54 if ((renderer->isBox() && toRenderBox(renderer)->inlineBoxWrapper()) || (renderer->isText() && toRenderText(renderer)->firstTextBox()))
68 if ((renderer->isBox() && toRenderBox(renderer)->inlineBoxWrapper()) || (renderer->isText() && toRenderText(renderer)->firstTextBox()))
400 for (InlineTextBox *box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
579 if (renderer->isText() && toRenderText(renderer)->firstTextBox()) {
592 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
706 if (renderer->isText() && toRenderText(renderer)->firstTextBox()) {
715 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
820 for (InlineTextBox *box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
856 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
1023 for (InlineTextBox* box = toRenderText(next)->firstTextBox(); bo
[all...]
H A DContainerNode.cpp857 if (p->node() && p->node() == this && o->isText() && !o->isBR() && !toRenderText(o)->firstTextBox()) {
861 if (o->isText() && toRenderText(o)->firstTextBox()) {
863 toRenderText(o)->firstTextBox()->root()->lineTop());
/external/webkit/Source/WebCore/editing/
H A DTextIterator.cpp525 if (!renderer->firstTextBox() && str.length() > 0) {
542 for (InlineTextBox* textBox = renderer->firstTextBox(); textBox; textBox = textBox->nextTextBox()) {
549 m_textBox = renderer->containsReversedText() ? (m_sortedTextBoxes.isEmpty() ? 0 : m_sortedTextBoxes[0]) : renderer->firstTextBox();
571 InlineTextBox* firstTextBox = renderer->containsReversedText() ? (m_sortedTextBoxes.isEmpty() ? 0 : m_sortedTextBoxes[0]) : renderer->firstTextBox(); local
573 || (m_textBox == firstTextBox && textBoxStart == runStart && runStart > 0);
650 m_textBox = firstLetter->firstTextBox();
1246 if (!renderer->firstTextBox() && str.length() > 0)
H A DCompositeEditCommand.cpp532 for (InlineTextBox* textBox = textRenderer->firstTextBox(); textBox; textBox = textBox->nextTextBox())
H A DSelectionController.cpp1260 if (!textRenderer->textLength() || !textRenderer->firstTextBox()) {
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityRenderObject.cpp1812 if (m_renderer->isBR() || !renderText->firstTextBox())
/external/webkit/Source/WebCore/accessibility/gtk/
H A DAccessibilityObjectWrapperAtk.cpp1075 InlineTextBox* box = renderText ? renderText->firstTextBox() : 0;

Completed in 220 milliseconds