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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMultiColumnFlowThread.cpp 64 RenderMultiColumnBlock* parentBlock = toRenderMultiColumnBlock(parent());
65 return parentBlock->columnWidth();
94 RenderMultiColumnBlock* parentBlock = toRenderMultiColumnBlock(parent());
96 firstSet->setStyle(RenderStyle::createAnonymousStyleWithDisplay(parentBlock->style(), BLOCK));
97 parentBlock->RenderBlock::addChild(firstSet);
RenderTextTrackCue.cpp 82 RenderBlock* parentBlock = containingBlock();
113 position += m_cue->getWritingDirection() == TextTrackCue::Horizontal ? parentBlock->height() : parentBlock->width();
RenderMultiColumnSet.cpp 140 RenderMultiColumnBlock* parentBlock = toRenderMultiColumnBlock(parent());
141 setComputedColumnWidthAndCount(parentBlock->columnWidth(), parentBlock->columnCount()); // FIXME: This will eventually vary if we are contained inside regions.
202 RenderMultiColumnBlock* parentBlock = toRenderMultiColumnBlock(parent());
203 if (parentBlock->style()->hasNormalColumnGap())
204 return parentBlock->style()->fontDescription().computedPixelSize(); // "1em" is recommended as the normal gap setting. Matches <p> margins.
205 return parentBlock->style()->columnGap();
RenderBlock.cpp 373 RenderBlock* parentBlock = this;
385 parentBlock = currBlock;
393 parentBlock->markAllDescendantsWithFloatsForLayout();
394 parentBlock->markSiblingsWithFloatsForLayout();
    [all...]
RenderBox.cpp 176 RenderBlock* parentBlock = 0;
180 if (!parentBlock || currBlock->containsFloat(this))
181 parentBlock = currBlock;
185 if (parentBlock) {
186 RenderObject* parent = parentBlock->parent();
188 parentBlock = toRenderBlock(parent);
190 parentBlock->markSiblingsWithFloatsForLayout(this);
191 parentBlock->markAllDescendantsWithFloatsForLayout(this, false);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRootInlineBox.cpp 169 RenderBlock* parentBlock = block();
170 ASSERT(parentBlock);
174 parentBlock->setLocation(boundingRect.location());
175 parentBlock->setSize(boundingRect.size());

Completed in 553 milliseconds