HomeSort by relevance Sort by last modified time
    Searched refs:RootInlineBox (Results 1 - 25 of 35) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
TrailingFloatsRootInlineBox.h 29 #include "core/rendering/RootInlineBox.h"
33 class TrailingFloatsRootInlineBox FINAL : public RootInlineBox {
36 : RootInlineBox(block)
RootInlineBox.cpp 21 #include "core/rendering/RootInlineBox.h"
49 COMPILE_ASSERT(sizeof(RootInlineBox) == sizeof(SameSizeAsRootInlineBox), RootInlineBox_should_stay_small);
51 typedef WTF::HashMap<const RootInlineBox*, EllipsisBox*> EllipsisBoxMap;
54 RootInlineBox::RootInlineBox(RenderBlock* block)
67 void RootInlineBox::destroy()
73 void RootInlineBox::detachEllipsisBox()
83 RenderLineBoxList* RootInlineBox::rendererLineBoxes() const
88 void RootInlineBox::clearTruncation()
96 bool RootInlineBox::isHyphenated() cons
    [all...]
RootInlineBox.h 36 class RootInlineBox : public InlineFlowBox {
38 explicit RootInlineBox(RenderBlock*);
46 RootInlineBox* nextRootBox() const { return static_cast<RootInlineBox*>(m_nextLineBox); }
47 RootInlineBox* prevRootBox() const { return static_cast<RootInlineBox*>(m_prevLineBox); }
RenderRubyRun.cpp 243 RootInlineBox* rootBox = rt->lastRootBox();
253 RootInlineBox* rootBox = rb->firstRootBox();
263 RootInlineBox* rootBox = rb->lastRootBox();
295 for (RootInlineBox* rootInlineBox = rubyBase->firstRootBox(); rootInlineBox; rootInlineBox = rootInlineBox->nextRootBox()) {
296 logicalLeftOverhang = min<int>(logicalLeftOverhang, rootInlineBox->logicalLeft());
297 logicalRightOverhang = min<int>(logicalRightOverhang, logicalWidth - rootInlineBox->logicalRight())
    [all...]
RenderLineBoxList.cpp 36 #include "core/rendering/RootInlineBox.h"
178 RootInlineBox* firstRootBox = firstLineBox()->root();
179 RootInlineBox* lastRootBox = lastLineBox()->root();
190 RootInlineBox* root = box->root();
224 RootInlineBox* root = curr->root();
262 RootInlineBox* root = curr->root();
297 RootInlineBox* box = 0;
338 RootInlineBox* adjacentBox;
342 // NOTE: we dirty the previous line because RootInlineBox objects cache
RenderBlock.h 33 #include "core/rendering/RootInlineBox.h"
149 RootInlineBox* createAndAppendRootInlineBox();
234 RootInlineBox* firstRootBox() const { return static_cast<RootInlineBox*>(firstLineBox()); }
235 RootInlineBox* lastRootBox() const { return static_cast<RootInlineBox*>(lastLineBox()); }
248 RootInlineBox* lineAtIndex(int) const;
249 int lineCount(const RootInlineBox* = 0, bool* = 0) const;
316 RootInlineBox* lineBreakToAvoidWidow() const { return m_rareData ? m_rareData->m_lineBreakToAvoidWidow : 0; }
317 void setBreakAtLineToAvoidWidow(RootInlineBox*);
    [all...]
InlineBox.cpp 28 #include "core/rendering/RootInlineBox.h"
238 const RootInlineBox* InlineBox::root() const
243 return static_cast<const RootInlineBox*>(this);
246 RootInlineBox* InlineBox::root()
251 return static_cast<RootInlineBox*>(this);
RenderBlockLineLayout.cpp 615 RootInlineBox* RenderBlock::constructLine(BidiRunList<BidiRun>& bidiRuns, const LineInfo& lineInfo)
    [all...]
InlineBox.h 31 class RootInlineBox;
186 const RootInlineBox* root() const;
187 RootInlineBox* root();
355 // for RootInlineBox
357 // shared between RootInlineBox and InlineTextBox
392 // For RootInlineBox
RenderText.cpp 225 RootInlineBox* next = firstTextBox()->root()->nextRootBox();
623 RootInlineBox* rootBox = box->root();
    [all...]
RenderReplaced.cpp 471 RootInlineBox* rootBox = box ? box->root() : 0;
519 RootInlineBox* root = m_inlineBoxWrapper->root();
532 if (RootInlineBox* root = m_inlineBoxWrapper->root())
RenderListItem.cpp 331 RootInlineBox* root = m_marker->inlineBoxWrapper()->root();
334 RootInlineBox* rootBox = m_marker->inlineBoxWrapper()->root();
EllipsisBox.cpp 31 #include "core/rendering/RootInlineBox.h"
98 RootInlineBox* lastLine = block->lineAtIndex(block->lineCount() - 1);
LayoutState.cpp 242 RootInlineBox* lineGridBox = lineGrid()->lineGridBox();
RenderInline.cpp 561 RootInlineBox* rootBox = currBox->inlineBoxWrapper()->root();
576 RootInlineBox* rootBox = childLine->root();
594 RootInlineBox* rootBox = childText->root();
    [all...]
RenderBlock.cpp     [all...]
InlineFlowBox.h 185 void computeLogicalBoxHeights(RootInlineBox*, LayoutUnit& maxPositionTop, LayoutUnit& maxPositionBottom,
333 // The following members are only used by RootInlineBox but moved here to keep the bits packed.
346 // End of RootInlineBox-specific members.
RenderDeprecatedFlexibleBox.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRootInlineBox.h 26 #include "core/rendering/RootInlineBox.h"
34 class SVGRootInlineBox FINAL : public RootInlineBox {
37 : RootInlineBox(block)
RenderSVGText.h 88 virtual RootInlineBox* createRootInlineBox();
RenderSVGText.cpp 434 RootInlineBox* RenderSVGText::createRootInlineBox()
436 RootInlineBox* box = new SVGRootInlineBox(this);
469 RootInlineBox* rootBox = firstRootBox();
SVGRootInlineBox.cpp 73 RootInlineBox::markDirty(dirty);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
RenderedPosition.h 52 RootInlineBox* rootBox() { return m_inlineBox ? m_inlineBox->root() : 0; }
VisibleUnits.cpp 129 const InlineTextBox* previousTextBox(const RootInlineBox*, const InlineTextBox*);
130 const InlineTextBox* nextTextBox(const RootInlineBox*, const InlineTextBox*);
136 const Vector<InlineBox*>& collectBoxes(const RootInlineBox*);
139 const RootInlineBox* m_rootInlineBox;
145 const InlineTextBox* CachedLogicallyOrderedLeafBoxes::previousTextBox(const RootInlineBox* root, const InlineTextBox* box)
152 // If box is null, root is box's previous RootInlineBox, and previousBox is the last logical box in root.
165 const InlineTextBox* CachedLogicallyOrderedLeafBoxes::nextTextBox(const RootInlineBox* root, const InlineTextBox* box)
172 // If box is null, root is box's next RootInlineBox, and nextBox is the first logical box in root.
173 // Otherwise, root is box's RootInlineBox, and nextBox is the next logical box in the same line.
186 const Vector<InlineBox*>& CachedLogicallyOrderedLeafBoxes::collectBoxes(const RootInlineBox* root
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextFormControlElement.cpp 562 static void getNextSoftBreak(RootInlineBox*& line, Node*& breakNode, unsigned& breakOffset)
564 RootInlineBox* next;
593 RootInlineBox* line = renderer->firstRootBox();

Completed in 645 milliseconds

1 2