Home
last modified time | relevance | path

Searched refs:RenderBlockFlow (Results 1 – 25 of 91) sorted by relevance

1234

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBlockFlow.cpp52 bool RenderBlockFlow::s_canPropagateFloatIntoSibling = false;
59 COMPILE_ASSERT(sizeof(RenderBlockFlow::MarginValues) == sizeof(LayoutUnit[4]), MarginValues_should_…
94 MarginInfo(RenderBlockFlow*, LayoutUnit beforeBorderPadding, LayoutUnit afterBorderPadding);
154 RenderBlockFlow::RenderBlockFlow(ContainerNode* node) in RenderBlockFlow() function in WebCore::RenderBlockFlow
160 RenderBlockFlow::~RenderBlockFlow() in ~RenderBlockFlow()
164 RenderBlockFlow* RenderBlockFlow::createAnonymous(Document* document) in createAnonymous()
166 RenderBlockFlow* renderer = new RenderBlockFlow(0); in createAnonymous()
171 RenderBlockFlow* RenderBlockFlow::createAnonymousBlockFlow() const in createAnonymousBlockFlow()
176 void RenderBlockFlow::willBeDestroyed() in willBeDestroyed()
187 bool RenderBlockFlow::relayoutForPagination(bool hasSpecifiedPageLogicalHeight, LayoutUnit pageLogi… in relayoutForPagination()
[all …]
DLayoutState.h36 class RenderBlockFlow; variable
84 RenderBlockFlow* lineGrid() const { return m_lineGrid; } in lineGrid()
99 void establishLineGrid(RenderBlockFlow*);
116 RenderBlockFlow* m_lineGrid;
DRenderBlockFlow.h50 class RenderBlockFlow : public RenderBlock {
52 explicit RenderBlockFlow(ContainerNode*);
53 virtual ~RenderBlockFlow();
55 static RenderBlockFlow* createAnonymous(Document*);
56 RenderBlockFlow* createAnonymousBlockFlow() const;
148 RenderBlockFlow::RenderBlockFlowRareData& rareData = ensureRareData(); in setLineGridBox()
220 void addIntrudingFloats(RenderBlockFlow* prev, LayoutUnit xoffset, LayoutUnit yoffset);
221 LayoutUnit addOverhangingFloats(RenderBlockFlow* child, bool makeChildPaintOtherFloats);
294 RenderBlockFlowRareData(const RenderBlockFlow* block) in RenderBlockFlowRareData()
303 static LayoutUnit positiveMarginBeforeDefault(const RenderBlockFlow* block) in positiveMarginBeforeDefault()
[all …]
DLineWidth.h41 class RenderBlockFlow; variable
49 LineWidth(RenderBlockFlow&, bool isFirstLine, IndentTextOrNot shouldIndentText);
74 RenderBlockFlow& m_block;
DRenderTableCaption.cpp28 : RenderBlockFlow(element) in RenderTableCaption()
44 RenderBlockFlow::insertedIntoTree(); in insertedIntoTree()
DRenderBlockLineLayout.cpp59 LineBreaker(RenderBlockFlow* block) in LineBreaker()
76 RenderBlockFlow* m_block;
174 InlineFlowBox* RenderBlockFlow::createLineBoxes(RenderObject* obj, const LineInfo& lineInfo, Inline… in createLineBoxes()
267 RootInlineBox* RenderBlockFlow::constructLine(BidiRunList<BidiRun>& bidiRuns, const LineInfo& lineI… in constructLine()
343 ETextAlign RenderBlockFlow::textAlignmentForLine(bool endsWithSoftBreak) const in textAlignmentForLine()
429 void RenderBlockFlow::setMarginsForRubyRun(BidiRun* run, RenderRubyRun* renderer, RenderObject* pre… in setMarginsForRubyRun()
567 void RenderBlockFlow::updateLogicalWidthForAlignment(const ETextAlign& textAlign, const RootInlineB… in updateLogicalWidthForAlignment()
617 static void updateLogicalInlinePositions(RenderBlockFlow* block, float& lineLogicalLeft, float& lin… in updateLogicalInlinePositions()
627 void RenderBlockFlow::computeInlineDirectionPositionsForLine(RootInlineBox* lineBox, const LineInfo… in computeInlineDirectionPositionsForLine()
686 BidiRun* RenderBlockFlow::computeInlineDirectionPositionsForSegment(RootInlineBox* lineBox, const L… in computeInlineDirectionPositionsForSegment()
[all …]
DRenderListItem.cpp43 : RenderBlockFlow(element) in RenderListItem()
81 RenderBlockFlow::willBeDestroyed(); in willBeDestroyed()
86 RenderBlockFlow::insertedIntoTree(); in insertedIntoTree()
93 RenderBlockFlow::willBeRemovedFromTree(); in willBeRemovedFromTree()
225 static RenderObject* getParentOfFirstLineBox(RenderBlockFlow* curr, RenderObject* marker) in getParentOfFirstLineBox()
321 RenderBlockFlow::layout(); in layout()
326 RenderBlockFlow::addOverflowFromChildren(); in addOverflowFromChildren()
430 RenderBlockFlow::paint(paintInfo, paintOffset); in paint()
DRenderRubyText.cpp41 : RenderBlockFlow(element) in RenderRubyText()
59 return RenderBlockFlow::textAlignmentForLine(endsWithSoftBreak); in textAlignmentForLine()
DRenderRuby.cpp85 static RenderBlockFlow* createAnonymousRubyInlineBlock(RenderObject* ruby) in createAnonymousRubyInlineBlock()
88 RenderBlockFlow* newBlock = RenderBlockFlow::createAnonymous(&ruby->document()); in createAnonymousRubyInlineBlock()
218 : RenderBlockFlow(element) in RenderRubyAsBlock()
DRenderTextControlSingleLine.h89 class RenderTextControlInnerBlock : public RenderBlockFlow {
91 RenderTextControlInnerBlock(Element* element) : RenderBlockFlow(element) { } in RenderTextControlInnerBlock()
DFloatingObjects.h35 class RenderBlockFlow; variable
133 FloatingObjects(const RenderBlockFlow*, bool horizontalWritingMode);
179 const RenderBlockFlow* m_renderer;
DRootInlineBox.h31 class RenderBlockFlow; variable
39 explicit RootInlineBox(RenderBlockFlow*);
132 RenderBlockFlow* block() const;
DRenderMediaControlElements.h37 class RenderTextTrackContainerElement FINAL : public RenderBlockFlow {
DTrailingFloatsRootInlineBox.h35 TrailingFloatsRootInlineBox(RenderBlockFlow* block) in TrailingFloatsRootInlineBox()
DRenderBlock.h264 static RenderBlockFlow* createAnonymousColumnsWithParentRenderer(const RenderObject*);
265 static RenderBlockFlow* createAnonymousColumnSpanWithParentRenderer(const RenderObject*);
267RenderBlockFlow* createAnonymousColumnsBlock() const { return createAnonymousColumnsWithParentRend… in createAnonymousColumnsBlock()
268RenderBlockFlow* createAnonymousColumnSpanBlock() const { return createAnonymousColumnSpanWithPare… in createAnonymousColumnSpanBlock()
600 …void makeChildrenAnonymousColumnBlocks(RenderObject* beforeChild, RenderBlockFlow* newBlockBox, Re…
610 RenderBlockFlow* containingColumnsBlock(bool allowAnonymousColumnBlock = true);
611 RenderBlockFlow* columnsBlockForSpanningElement(RenderObject* newChild);
716 friend class RenderBlockFlow; variable
DEllipsisBox.cpp84 …TextRun textRun = RenderBlockFlow::constructTextRun(renderer(), font, m_str, style, TextRun::Allow… in paint()
135 …return enclosingIntRect(font.selectionRectForText(RenderBlockFlow::constructTextRun(renderer(), fo… in selectionRect()
160 …context->drawHighlightForText(font, RenderBlockFlow::constructTextRun(renderer(), font, m_str, sty… in paintSelection()
DRenderFullScreen.cpp33 class RenderFullScreenPlaceholder FINAL : public RenderBlockFlow {
36 : RenderBlockFlow(0) in RenderFullScreenPlaceholder()
DRenderMediaControlElements.cpp38 : RenderBlockFlow(element) in RenderTextTrackContainerElement()
DRenderRubyText.h38 class RenderRubyText FINAL : public RenderBlockFlow {
DRenderTableCaption.h29 class RenderTableCaption FINAL : public RenderBlockFlow {
DRenderVTTCue.cpp36 : RenderBlockFlow(element) in RenderVTTCue()
44 RenderBlockFlow::layout(); in layout()
DRenderDetailsMarker.h28 class RenderDetailsMarker FINAL : public RenderBlockFlow {
DRenderMeter.h31 class RenderMeter FINAL : public RenderBlockFlow {
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DRenderSVGBlock.cpp33 : RenderBlockFlow(element) in RenderSVGBlock()
75 RenderBlockFlow::willBeDestroyed(); in willBeDestroyed()
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
DShapeOutsideInfo.h38 class RenderBlockFlow; variable
47 …void updateDeltasForContainingBlockLine(const RenderBlockFlow*, const FloatingObject*, LayoutUnit …

1234