Searched defs:logicalTop (Results 1 - 25 of 27) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderMeter.cpp60 void RenderMeter::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const argument
62 RenderBox::computeLogicalHeight(logicalHeight, logicalTop, computedValues);
H A DRenderListBox.cpp126 void RenderListBox::computeLogicalHeight(LayoutUnit, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const argument
134 RenderBox::computeLogicalHeight(height, logicalTop, computedValues);
H A DRenderSliderContainer.cpp66 void RenderSliderContainer::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const argument
87 RenderBox::computeLogicalHeight(trackHeight, logicalTop, computedValues);
96 RenderBox::computeLogicalHeight(logicalHeight, logicalTop, computedValues);
H A DRenderLineBoxList.cpp147 bool RenderLineBoxList::rangeIntersectsRect(RenderBoxModelObject* renderer, LayoutUnit logicalTop, LayoutUnit logicalBottom, const LayoutRect& rect, const LayoutPoint& offset) const argument
154 LayoutUnit physicalStart = block->flipForWritingMode(logicalTop);
189 LayoutUnit logicalTop = std::min<LayoutUnit>(box->logicalTopVisualOverflow(root.lineTop()), root.selectionTop()); local
192 return rangeIntersectsRect(renderer, logicalTop, logicalBottom, paintInfo.rect, offset);
H A DRenderMultiColumnFlowThread.cpp259 void RenderMultiColumnFlowThread::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const argument
263 computedValues.m_position = logicalTop;
H A DRenderTextControl.cpp128 void RenderTextControl::computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const argument
148 RenderBox::computeLogicalHeight(logicalHeight, logicalTop, computedValues);
H A DRenderFlowThread.cpp135 void RenderFlowThread::computeLogicalHeight(LayoutUnit, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const argument
137 computedValues.m_position = logicalTop;
H A DFloatingObjects.cpp372 LayoutUnit FloatingObjects::logicalLeftOffsetForPositioningFloat(LayoutUnit fixedOffset, LayoutUnit logicalTop, LayoutUnit *heightRemaining) argument
374 int logicalTopAsInt = roundToInt(logicalTop);
384 LayoutUnit FloatingObjects::logicalRightOffsetForPositioningFloat(LayoutUnit fixedOffset, LayoutUnit logicalTop, LayoutUnit *heightRemaining) argument
386 int logicalTopAsInt = roundToInt(logicalTop);
396 LayoutUnit FloatingObjects::logicalLeftOffset(LayoutUnit fixedOffset, LayoutUnit logicalTop, LayoutUnit logicalHeight) argument
398 ComputeFloatOffsetForLineLayoutAdapter<FloatingObject::FloatLeft> adapter(m_renderer, roundToInt(logicalTop), roundToInt(logicalTop + logicalHeight), fixedOffset);
404 LayoutUnit FloatingObjects::logicalRightOffset(LayoutUnit fixedOffset, LayoutUnit logicalTop, LayoutUnit logicalHeight) argument
406 ComputeFloatOffsetForLineLayoutAdapter<FloatingObject::FloatRight> adapter(m_renderer, roundToInt(logicalTop), roundToInt(logicalTop
[all...]
H A DRenderBlockFlow.h130 void setLogicalTopForFloat(FloatingObject* floatingObject, LayoutUnit logicalTop) argument
133 floatingObject->setY(logicalTop);
135 floatingObject->setX(logicalTop);
162 void updateStaticInlinePositionForChild(RenderBox*, LayoutUnit logicalTop);
218 LayoutUnit logicalRightOffsetForLine(LayoutUnit logicalTop, LayoutUnit fixedOffset, bool applyTextIndent, LayoutUnit logicalHeight = 0) const argument
220 return adjustLogicalRightOffsetForLine(logicalRightFloatOffsetForLine(logicalTop, fixedOffset, logicalHeight), applyTextIndent);
222 LayoutUnit logicalLeftOffsetForLine(LayoutUnit logicalTop, LayoutUnit fixedOffset, bool applyTextIndent, LayoutUnit logicalHeight = 0) const argument
224 return adjustLogicalLeftOffsetForLine(logicalLeftFloatOffsetForLine(logicalTop, fixedOffset, logicalHeight), applyTextIndent);
231 void setLogicalTopForChild(RenderBox* child, LayoutUnit logicalTop);
270 LayoutUnit logicalRightFloatOffsetForLine(LayoutUnit logicalTop, LayoutUni
[all...]
H A DRenderMultiColumnSet.cpp96 LayoutUnit contentLogicalTop = logicalTop() - multicolBlock->borderAndPaddingBefore();
289 void RenderMultiColumnSet::computeLogicalHeight(LayoutUnit, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const argument
292 computedValues.m_position = logicalTop;
512 LayoutUnit initialBlockOffset = logicalTop() - flowThread->logicalTop();
H A DInlineBox.h222 int pixelSnappedLogicalTop() const { return logicalTop(); }
225 // The logicalTop[ position is the top edge of the line box in a horizontal line and the left edge in a vertical line.
226 float logicalTop() const { return isHorizontal() ? m_topLeft.y() : m_topLeft.x(); } function in class:blink::InlineBox
227 float logicalBottom() const { return logicalTop() + logicalHeight(); }
H A DInlineFlowBox.cpp527 // baseline. This information is cached in the logicalTop() of every box. We're effectively just using
528 // the logicalTop() as scratch space.
590 ascent -= curr->logicalTop();
591 descent += curr->logicalTop();
623 adjustmentForChildrenWithSameLineHeightAndBaseline = logicalTop();
648 curr->setLogicalTop(curr->logicalTop() + top + posAdjust);
651 LayoutUnit newLogicalTop = curr->logicalTop();
690 LayoutUnit topRubyBaseLeading = rubyBase->logicalTop() + (rubyBase->firstRootBox() ? rubyBase->firstRootBox()->lineTop() : LayoutUnit());
766 setLogicalTop(lineBottom - (logicalTop() - lineTop) - logicalHeight());
775 curr->setLogicalTop(lineBottom - (curr->logicalTop()
1119 LayoutUnit logicalTop = isHorizontal() ? rect.y() : rect.x(); local
[all...]
H A DRenderBox.h112 LayoutUnit logicalTop() const { return style()->isHorizontalWritingMode() ? y() : x(); } function in class:blink::RenderBox
113 LayoutUnit logicalBottom() const { return logicalTop() + logicalHeight(); }
423 virtual void computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues&) const;
687 const Length& logicalTop, const Length& logicalBottom, const Length& marginLogicalTop,
H A DRenderInline.cpp593 int logicalTop = rootBox.logicalTop() + (rootBox.renderer().style(rootBox.isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox.isFirstLineStyle())->font().fontMetrics().ascent()); local
596 yield(FloatRect(currBox->inlineBoxWrapper()->x() - currBox->marginLeft(), logicalTop, (currBox->width() + currBox->marginWidth()).toFloat(), logicalHeight));
598 yield(FloatRect(logicalTop, currBox->inlineBoxWrapper()->y() - currBox->marginTop(), logicalHeight, (currBox->height() + currBox->marginHeight()).toFloat()));
608 int logicalTop = rootBox.logicalTop() + (rootBox.renderer().style(rootBox.isFirstLineStyle())->font().fontMetrics().ascent() - container->style(rootBox.isFirstLineStyle())->font().fontMetrics().ascent()); local
612 logicalTop,
616 yield(FloatRect(logicalTop,
626 int logicalTop = rootBox.logicalTop() local
1023 LayoutUnit logicalTop = firstLineBox()->logicalTopVisualOverflow(firstRootBox.lineTop()); local
[all...]
H A DRenderText.cpp1573 LayoutUnit logicalTop = firstTextBox()->logicalTopVisualOverflow(); local
1575 LayoutUnit logicalHeight = lastTextBox()->logicalBottomVisualOverflow() - logicalTop;
1577 LayoutRect rect(logicalLeftSide, logicalTop, logicalWidth, logicalHeight);
H A DRenderBlockFlow.cpp212 computeLogicalHeight(LayoutUnit(), logicalTop(), computedValues);
368 setPageLogicalOffset(renderView->layoutState()->pageLogicalOffset(*this, logicalTop()));
485 if (block->lowestFloatLogicalBottom() + block->logicalTop() <= newHeight)
541 void RenderBlockFlow::setLogicalTopForChild(RenderBox* child, LayoutUnit logicalTop) argument
544 child->setY(logicalTop);
546 child->setX(logicalTop);
769 } else if (remainingLogicalHeight == pageLogicalHeight && offsetFromLogicalTopOfFirstPage() + child->logicalTop()) {
947 LayoutUnit logicalTopOffset = logicalTop();
955 logicalTopOffset -= blockFlow->logicalTop();
980 LayoutUnit logicalTop local
1235 LayoutUnit logicalTop = beforeCollapseLogicalTop; local
1337 LayoutUnit logicalTop = logicalHeight(); local
1863 getClearDelta(RenderBox* child, LayoutUnit logicalTop) argument
1987 updateStaticInlinePositionForChild(RenderBox* child, LayoutUnit logicalTop) argument
2192 logicalLeftOffsetForPositioningFloat(LayoutUnit logicalTop, LayoutUnit fixedOffset, bool applyTextIndent, LayoutUnit* heightRemaining) const argument
2200 logicalRightOffsetForPositioningFloat(LayoutUnit logicalTop, LayoutUnit fixedOffset, bool applyTextIndent, LayoutUnit* heightRemaining) const argument
2325 LayoutUnit logicalTop = logicalTopForFloat(floatingObject); local
2397 LayoutUnit logicalTop = logicalHeight(); local
2719 logicalLeftFloatOffsetForLine(LayoutUnit logicalTop, LayoutUnit fixedOffset, LayoutUnit logicalHeight) const argument
2727 logicalRightFloatOffsetForLine(LayoutUnit logicalTop, LayoutUnit fixedOffset, LayoutUnit logicalHeight) const argument
[all...]
H A DRenderBlock.cpp1646 LayoutUnit oldTop = box->logicalTop();
1648 if (box->logicalTop() != oldTop)
1752 if (view()->layoutState()->pageLogicalHeightChanged() || (view()->layoutState()->pageLogicalHeight() && view()->layoutState()->pageLogicalOffset(*this, logicalTop()) != pageLogicalOffset()))
1971 curr->logicalTop(), paintInfo));
1983 result.uniteLeft(logicalLeftSelectionGap(rootBlock, rootBlockPhysicalPosition, offsetFromRootBlock, this, curr->logicalLeft(), curr->logicalTop(), curr->logicalHeight(), paintInfo));
1985 result.uniteRight(logicalRightSelectionGap(rootBlock, rootBlockPhysicalPosition, offsetFromRootBlock, this, curr->logicalRight(), curr->logicalTop(), curr->logicalHeight(), paintInfo));
2012 LayoutUnit logicalTop = lastLogicalTop; local
2013 LayoutUnit logicalHeight = rootBlock->blockDirectionOffset(offsetFromRootBlock) + logicalBottom - logicalTop;
2024 LayoutRect gapRect = rootBlock->logicalRectToPhysicalRect(rootBlockPhysicalPosition, LayoutRect(logicalLeft, logicalTop, logicalWidth, logicalHeight));
2031 const RenderObject* selObj, LayoutUnit logicalLeft, LayoutUnit logicalTop, LayoutUni
2030 logicalLeftSelectionGap(const RenderBlock* rootBlock, const LayoutPoint& rootBlockPhysicalPosition, const LayoutSize& offsetFromRootBlock, const RenderObject* selObj, LayoutUnit logicalLeft, LayoutUnit logicalTop, LayoutUnit logicalHeight, const PaintInfo* paintInfo) const argument
2046 logicalRightSelectionGap(const RenderBlock* rootBlock, const LayoutPoint& rootBlockPhysicalPosition, const LayoutSize& offsetFromRootBlock, const RenderObject* selObj, LayoutUnit logicalRight, LayoutUnit logicalTop, LayoutUnit logicalHeight, const PaintInfo* paintInfo) const argument
2333 markLinesDirtyInBlockRange(LayoutUnit logicalTop, LayoutUnit logicalBottom, RootInlineBox* highest) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DBoxShape.cpp55 LineSegment BoxShape::getExcludedInterval(LayoutUnit logicalTop, LayoutUnit logicalHeight) const argument
58 if (marginBounds.isEmpty() || !lineOverlapsShapeMarginBounds(logicalTop, logicalHeight))
61 float y1 = logicalTop.toFloat();
62 float y2 = (logicalTop + logicalHeight).toFloat();
H A DPolygonShape.cpp123 LineSegment PolygonShape::getExcludedInterval(LayoutUnit logicalTop, LayoutUnit logicalHeight) const argument
125 float y1 = logicalTop.toFloat();
126 float y2 = logicalTop.toFloat() + logicalHeight.toFloat();
H A DRectangleShape.cpp56 LineSegment RectangleShape::getExcludedInterval(LayoutUnit logicalTop, LayoutUnit logicalHeight) const argument
62 float y1 = logicalTop.toFloat();
63 float y2 = (logicalTop + logicalHeight).toFloat();
H A DRasterShape.cpp153 LineSegment RasterShape::getExcludedInterval(LayoutUnit logicalTop, LayoutUnit logicalHeight) const argument
159 int y1 = logicalTop;
160 int y2 = logicalTop + logicalHeight;
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGForeignObject.cpp70 void RenderSVGForeignObject::computeLogicalHeight(LayoutUnit, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const argument
76 computedValues.m_position = logicalTop;
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DLayoutBoxExtent.cpp38 LayoutUnit LayoutBoxExtent::logicalTop(WritingMode writingMode) const function in class:blink::LayoutBoxExtent
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DInlineFlowBoxPainter.cpp332 LayoutUnit logicalTop = m_inlineFlowBox.isHorizontal() ? rect.y() : rect.x(); local
334 LayoutUnit bottom = std::min(rootBox.lineBottom(), logicalTop + logicalHeight);
335 logicalTop = std::max(rootBox.lineTop(), logicalTop);
336 logicalHeight = bottom - logicalTop;
338 rect.setY(logicalTop);
341 rect.setX(logicalTop);
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
H A DLineLayoutState.h83 void setEndLineLogicalTop(LayoutUnit logicalTop) { m_endLineLogicalTop = logicalTop; } argument

Completed in 237 milliseconds

12