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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderVTTCue.cpp 59 bool RenderVTTCue::findFirstLineBox(InlineFlowBox*& firstLineBox)
62 firstLineBox = toRenderInline(firstChild())->firstLineBox();
69 bool RenderVTTCue::initializeLayoutParameters(InlineFlowBox* firstLineBox, LayoutUnit& step, LayoutUnit& position)
77 step = m_cue->getWritingDirection() == VTTCue::Horizontal ? firstLineBox->height() : firstLineBox->width();
150 bool RenderVTTCue::shouldSwitchDirection(InlineFlowBox* firstLineBox, LayoutUnit step) const
154 LayoutUnit bottom = top + firstLineBox->height();
155 LayoutUnit right = left + firstLineBox->width();
215 InlineFlowBox* firstLineBox;
    [all...]
RenderLineBoxList.h 49 InlineFlowBox* firstLineBox() const { return m_firstLineBox; }
RenderLineBoxList.cpp 143 for (InlineFlowBox* curr = firstLineBox(); curr; curr = curr->nextLineBox())
178 RootInlineBox& firstRootBox = firstLineBox()->root();
180 LayoutUnit firstLineTop = firstLineBox()->logicalTopVisualOverflow(firstRootBox.lineTop());
203 if (!firstLineBox())
207 LayoutRect rect = firstLineBox()->isHorizontal() ?
237 InlineBox* firstBox = inlineContainer ? inlineContainer->firstLineBoxIncludingCulling() : firstLineBox();
RenderInline.cpp 106 if (firstLineBox()) {
119 if (firstLineBox()->parent()) {
120 for (InlineFlowBox* box = firstLineBox(); box; box = box->nextLineBox())
282 if (InlineBox* firstBox = firstLineBox())
566 else if (InlineFlowBox* curr = firstLineBox()) {
606 for (InlineFlowBox* childLine = currInline->firstLineBox(); childLine; childLine = childLine->nextLineBox()) {
    [all...]
RenderInline.h 76 InlineFlowBox* firstLineBox() const { return m_lineBoxes.firstLineBox(); }
78 InlineBox* firstLineBoxIncludingCulling() const { return alwaysCreateLineBoxes() ? firstLineBox() : culledInlineFirstLineBox(); }
RenderBlock.h 92 InlineFlowBox* firstLineBox() const { return m_lineBoxes.firstLineBox(); }
95 RootInlineBox* firstRootBox() const { return static_cast<RootInlineBox*>(firstLineBox()); }
RenderBlock.cpp 264 if (firstLineBox()) {
276 for (InlineFlowBox* box = firstLineBox(); box; box = box->nextLineBox()) {
    [all...]