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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
AbstractInlineTextBox.cpp 81 return getOrCreate(m_renderText, m_inlineTextBox->nextTextBox());
159 if (m_inlineTextBox->nextTextBox() && m_inlineTextBox->nextTextBox()->start() > m_inlineTextBox->end() && result.length() && !result.right(1).containsOnlyWhitespace())
RenderText.cpp 217 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
244 for (InlineTextBox* curr = box; curr; curr = curr->nextTextBox())
260 for (InlineTextBox* curr = box; curr; curr = curr->nextTextBox()) {
274 m_firstTextBox = box->nextTextBox();
277 if (box->nextTextBox())
278 box->nextTextBox()->setPreviousTextBox(box->prevTextBox());
280 box->prevTextBox()->setNextTextBox(box->nextTextBox());
290 next = curr->nextTextBox();
310 for (InlineTextBox* textBox = firstTextBox(); textBox; textBox = textBox->nextTextBox()) {
313 if (textBox->nextTextBox() && textBox->nextTextBox()->start() > textBox->end() && text.length() && !text.right(1).containsO (…)
    [all...]
InlineTextBox.h 59 InlineTextBox* nextTextBox() const { return m_nextTextBox; }
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 472 for (InlineTextBox* box = text.firstTextBox(); box; box = box->nextTextBox()) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGInlineText.cpp 131 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
177 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) {
SVGInlineFlowBox.cpp 104 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
SVGInlineTextBox.cpp 72 InlineTextBox* nextBox = nextTextBox();
SVGRenderTreeAsText.cpp 436 for (InlineTextBox* box = text.firstTextBox(); box; box = box->nextTextBox()) {
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.cpp 602 for (InlineTextBox* textBox = renderer->firstTextBox(); textBox; textBox = textBox->nextTextBox()) {
647 InlineTextBox* nextTextBox = 0;
650 nextTextBox = m_sortedTextBoxes[m_sortedTextBoxesPosition + 1];
652 nextTextBox = m_textBox->nextTextBox();
654 ASSERT(!nextTextBox || nextTextBox->renderer() == renderer);
678 unsigned nextRunStart = nextTextBox ? nextTextBox->start() : str.length();
681 m_textBox = nextTextBox;
    [all...]
VisibleUnits.cpp 130 const InlineTextBox* nextTextBox(const RootInlineBox*, const InlineTextBox*);
165 const InlineTextBox* CachedLogicallyOrderedLeafBoxes::nextTextBox(const RootInlineBox* root, const InlineTextBox* box)
251 const InlineTextBox* nextBox = leafBoxes.nextTextBox(startBox->root(), textBox);
255 nextBox = leafBoxes.nextTextBox(startBox->root()->nextRootBox(), 0);
273 nextBox = leafBoxes.nextTextBox(nextRoot, 0);
    [all...]
CompositeEditCommand.cpp 757 for (InlineTextBox* textBox = textRenderer->firstTextBox(); textBox; textBox = textBox->nextTextBox())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.cpp 466 for (InlineTextBox *box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
658 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
782 for (InlineTextBox* box = textRenderer->firstTextBox(); box; box = box->nextTextBox()) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCSSAgent.cpp     [all...]

Completed in 1299 milliseconds