HomeSort by relevance Sort by last modified time
    Searched defs:logicalWidth (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
AutoTableLayout.h 62 Length logicalWidth;
RenderBoxRegionInfo.h 38 RenderBoxRegionInfo(LayoutUnit logicalLeft, LayoutUnit logicalWidth, bool isShifted)
40 , m_logicalWidth(logicalWidth)
45 LayoutUnit logicalWidth() const { return m_logicalWidth; }
FixedTableLayout.cpp 102 Length colStyleLogicalWidth = col->style()->logicalWidth();
147 Length logicalWidth = cell->styleOrColLogicalWidth();
152 if (logicalWidth.isFixed() && logicalWidth.isPositive()) {
153 fixedBorderBoxLogicalWidth = cell->adjustBorderBoxLogicalWidthForBoxSizing(logicalWidth.value());
154 logicalWidth.setValue(fixedBorderBoxLogicalWidth);
161 if (m_width[currentColumn].isAuto() && logicalWidth.type() != Auto) {
162 m_width[currentColumn] = logicalWidth;
187 Length tableLogicalWidth = m_table->style()->logicalWidth();
203 if (m_table->style()->logicalWidth().isPercent() && maxWidth < tableMaxWidth
    [all...]
RenderRubyRun.cpp 292 int logicalWidth = this->logicalWidth();
297 logicalRightOverhang = min<int>(logicalRightOverhang, logicalWidth - rootInlineBox->logicalRight());
AutoTableLayout.cpp 96 if (cellLogicalWidth.isPositive() && !columnLayout.logicalWidth.isPercent()) {
97 int logicalWidth = cell->adjustBorderBoxLogicalWidthForBoxSizing(cellLogicalWidth.value());
98 if (columnLayout.logicalWidth.isFixed()) {
100 if ((logicalWidth > columnLayout.logicalWidth.value())
101 || ((columnLayout.logicalWidth.value() == logicalWidth) && (maxContributor == cell))) {
102 columnLayout.logicalWidth.setValue(Fixed, logicalWidth);
106 columnLayout.logicalWidth.setValue(Fixed, logicalWidth)
    [all...]
RenderReplaced.cpp 216 if (containingBlock->style()->logicalWidth().isSpecified())
225 if (style()->logicalWidth().isSpecified())
228 if (style()->logicalWidth().isAuto())
255 return hasRelativeLogicalHeight() && style()->logicalWidth().isAuto() && !hasAutoHeightOrContainingBlockWithAutoHeight();
306 if (intrinsicRatio && !isPercentageIntrinsicSize && !intrinsicSize.isEmpty() && style()->logicalWidth().isAuto() && style()->logicalHeight().isAuto()) {
330 if (style()->logicalWidth().isSpecified() || style()->logicalWidth().isIntrinsic())
331 return computeReplacedLogicalWidthRespectingMinMaxWidth(computeReplacedLogicalWidthUsing(style()->logicalWidth()), shouldComputePreferred);
341 if (style()->logicalWidth().isAuto()) {
365 LayoutUnit logicalWidth;
    [all...]
RenderTreeAsText.cpp 441 // FIXME: For now use an "enclosingIntRect" model for x, y and logicalWidth, although this makes it harder
445 int logicalWidth = ceilf(run.left() + run.logicalWidth()) - x;
451 ts << "text run at (" << x << "," << y << ") width " << logicalWidth;
InlineBox.h 49 InlineBox(RenderObject* obj, FloatPoint topLeft, float logicalWidth, bool firstLine, bool constructed,
56 , m_logicalWidth(logicalWidth)
201 float width() const { return isHorizontal() ? logicalWidth() : logicalHeight(); }
202 float height() const { return isHorizontal() ? logicalHeight() : logicalWidth(); }
209 float logicalRight() const { return logicalLeft() + logicalWidth(); }
235 float logicalWidth() const { return m_logicalWidth; }
RenderFlowThread.cpp 228 LayoutUnit logicalWidth = initialLogicalWidth();
232 logicalWidth = max(region->pageLogicalWidth(), logicalWidth);
234 setLogicalWidth(logicalWidth);
240 if (regionLogicalWidth != logicalWidth) {
241 LayoutUnit logicalLeft = style()->direction() == LTR ? LayoutUnit() : logicalWidth - regionLogicalWidth;
601 LayoutUnit oldLogicalWidth = oldInfo->logicalWidth();
603 if (!newInfo || newInfo->logicalWidth() != oldLogicalWidth)
    [all...]
InlineTextBox.cpp 220 LayoutUnit logicalWidth = r.width();
222 logicalWidth = 0;
224 logicalWidth = logicalRight() - r.x();
227 LayoutUnit width = isHorizontal() ? logicalWidth : selHeight;
228 LayoutUnit height = isHorizontal() ? selHeight : logicalWidth;
269 bool rtlFullTruncation = !flowIsLTR && ellipsisX >= left() + logicalWidth();
319 truncatedWidth += logicalWidth();
531 FloatRect boxRect(boxOrigin, LayoutSize(logicalWidth(), logicalHeight()));
664 page->addRelevantRepaintedObject(renderer(), IntRect(boxOrigin.x(), boxOrigin.y(), logicalWidth(), logicalHeight()));
    [all...]
RenderBox.h 79 LayoutUnit logicalRight() const { return logicalLeft() + logicalWidth(); }
82 LayoutUnit logicalWidth() const { return style()->isHorizontalWritingMode() ? width() : height(); }
423 LayoutUnit computeLogicalWidthInRegionUsing(SizeType, Length logicalWidth, LayoutUnit availableLogicalWidth, const RenderBlock* containingBlock, RenderRegion*, LayoutUnit offsetFromLogicalTopOfFirstPage) const;
428 LayoutUnit computeReplacedLogicalWidthRespectingMinMaxWidth(LayoutUnit logicalWidth, ShouldComputePreferred = ComputeActual) const;
    [all...]
RenderInline.cpp 582 childLine->logicalWidth() + childLine->marginLogicalLeft() + childLine->marginLogicalRight(),
588 childLine->logicalWidth() + childLine->marginLogicalLeft() + childLine->marginLogicalRight()));
598 yield(FloatRect(childText->x(), logicalTop, childText->logicalWidth(), logicalHeight));
600 yield(FloatRect(logicalTop, childText->y(), logicalHeight, childText->logicalWidth()));
    [all...]
RenderListMarker.cpp     [all...]
RenderText.cpp 677 *extraWidthToEndOfLine = (box->root()->logicalWidth() + rootLeft) - (left + 1);
685 rightEdge = max<float>(cb->logicalWidth(), rootRight);
    [all...]
RenderBlock.cpp     [all...]
  /frameworks/base/core/java/android/view/
DisplayInfo.java 104 public int logicalWidth;
240 && logicalWidth == other.logicalWidth
272 logicalWidth = other.logicalWidth;
299 logicalWidth = source.readInt();
327 dest.writeInt(logicalWidth);
362 getMetricsWithSize(outMetrics, compatInfo, token, logicalWidth, logicalHeight);
367 logicalWidth : logicalHeight;
372 logicalHeight : logicalWidth;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h 446 Length logicalWidth() const { return isHorizontalWritingMode() ? width() : height(); }
    [all...]

Completed in 599 milliseconds