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...]
RenderBlockLineLayout.cpp     [all...]
RenderBlockFlow.h 93 using RenderBlock::firstLineBox;
InlineFlowBox.cpp 319 if (!lineBoxList->firstLineBox()->isConstructed() && !renderer().isInlineElementContinuation()) {
322 else if (ltr && lineBoxList->firstLineBox() == this)
    [all...]
InlineTextBox.cpp 376 return !rubyText || !rubyText->firstLineBox();
    [all...]
RenderBox.cpp     [all...]
RenderObject.cpp 661 if (isSVG() || (isRenderBlockFlow() && toRenderBlockFlow(this)->firstLineBox()))
    [all...]
RenderBlockFlow.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/paint/
LineBoxListPainter.cpp 28 if (!m_renderLineBoxList.firstLineBox())
41 for (InlineFlowBox* curr = m_renderLineBoxList.firstLineBox(); curr; curr = curr->nextLineBox()) {
InlinePainter.cpp 46 for (InlineFlowBox* curr = m_renderInline.firstLineBox(); curr; curr = curr->nextLineBox()) {
BlockPainter.cpp 470 else if (!inlineRenderer->firstLineBox() || (!inlineEnclosedInSelfPaintingLayer && m_renderBlock.hasLayer()))
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGInline.cpp 115 for (InlineFlowBox* box = firstLineBox(); box; box = box->nextLineBox())
SVGTextQuery.cpp 61 InlineFlowBox* flowBox = renderBlockFlow->firstLineBox();
71 InlineFlowBox* flowBox = renderInline->firstLineBox();
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXRenderObject.cpp 710 return !toRenderBlockFlow(m_renderer)->firstLineBox() && !mouseButtonListener();
    [all...]

Completed in 1751 milliseconds