/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderBlockFlow.cpp | 52 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 …]
|
D | LayoutState.h | 36 class RenderBlockFlow; variable 84 RenderBlockFlow* lineGrid() const { return m_lineGrid; } in lineGrid() 99 void establishLineGrid(RenderBlockFlow*); 116 RenderBlockFlow* m_lineGrid;
|
D | RenderBlockFlow.h | 50 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 …]
|
D | LineWidth.h | 41 class RenderBlockFlow; variable 49 LineWidth(RenderBlockFlow&, bool isFirstLine, IndentTextOrNot shouldIndentText); 74 RenderBlockFlow& m_block;
|
D | RenderTableCaption.cpp | 28 : RenderBlockFlow(element) in RenderTableCaption() 44 RenderBlockFlow::insertedIntoTree(); in insertedIntoTree()
|
D | RenderBlockLineLayout.cpp | 59 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 …]
|
D | RenderListItem.cpp | 43 : 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()
|
D | RenderRubyText.cpp | 41 : RenderBlockFlow(element) in RenderRubyText() 59 return RenderBlockFlow::textAlignmentForLine(endsWithSoftBreak); in textAlignmentForLine()
|
D | RenderRuby.cpp | 85 static RenderBlockFlow* createAnonymousRubyInlineBlock(RenderObject* ruby) in createAnonymousRubyInlineBlock() 88 RenderBlockFlow* newBlock = RenderBlockFlow::createAnonymous(&ruby->document()); in createAnonymousRubyInlineBlock() 218 : RenderBlockFlow(element) in RenderRubyAsBlock()
|
D | RenderTextControlSingleLine.h | 89 class RenderTextControlInnerBlock : public RenderBlockFlow { 91 RenderTextControlInnerBlock(Element* element) : RenderBlockFlow(element) { } in RenderTextControlInnerBlock()
|
D | FloatingObjects.h | 35 class RenderBlockFlow; variable 133 FloatingObjects(const RenderBlockFlow*, bool horizontalWritingMode); 179 const RenderBlockFlow* m_renderer;
|
D | RootInlineBox.h | 31 class RenderBlockFlow; variable 39 explicit RootInlineBox(RenderBlockFlow*); 132 RenderBlockFlow* block() const;
|
D | RenderMediaControlElements.h | 37 class RenderTextTrackContainerElement FINAL : public RenderBlockFlow {
|
D | TrailingFloatsRootInlineBox.h | 35 TrailingFloatsRootInlineBox(RenderBlockFlow* block) in TrailingFloatsRootInlineBox()
|
D | RenderBlock.h | 264 static RenderBlockFlow* createAnonymousColumnsWithParentRenderer(const RenderObject*); 265 static RenderBlockFlow* createAnonymousColumnSpanWithParentRenderer(const RenderObject*); 267 …RenderBlockFlow* createAnonymousColumnsBlock() const { return createAnonymousColumnsWithParentRend… in createAnonymousColumnsBlock() 268 …RenderBlockFlow* 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
|
D | EllipsisBox.cpp | 84 …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()
|
D | RenderFullScreen.cpp | 33 class RenderFullScreenPlaceholder FINAL : public RenderBlockFlow { 36 : RenderBlockFlow(0) in RenderFullScreenPlaceholder()
|
D | RenderMediaControlElements.cpp | 38 : RenderBlockFlow(element) in RenderTextTrackContainerElement()
|
D | RenderRubyText.h | 38 class RenderRubyText FINAL : public RenderBlockFlow {
|
D | RenderTableCaption.h | 29 class RenderTableCaption FINAL : public RenderBlockFlow {
|
D | RenderVTTCue.cpp | 36 : RenderBlockFlow(element) in RenderVTTCue() 44 RenderBlockFlow::layout(); in layout()
|
D | RenderDetailsMarker.h | 28 class RenderDetailsMarker FINAL : public RenderBlockFlow {
|
D | RenderMeter.h | 31 class RenderMeter FINAL : public RenderBlockFlow {
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
D | RenderSVGBlock.cpp | 33 : RenderBlockFlow(element) in RenderSVGBlock() 75 RenderBlockFlow::willBeDestroyed(); in willBeDestroyed()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
D | ShapeOutsideInfo.h | 38 class RenderBlockFlow; variable 47 …void updateDeltasForContainingBlockLine(const RenderBlockFlow*, const FloatingObject*, LayoutUnit …
|