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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
AutoTableLayout.h 63 Length logicalWidth;
FixedTableLayout.cpp 100 Length colStyleLogicalWidth = col->style()->logicalWidth();
140 Length logicalWidth = cell->styleOrColLogicalWidth();
143 if (logicalWidth.isCalculated())
144 logicalWidth = Length(); // Make it Auto
150 if (logicalWidth.isFixed() && logicalWidth.isPositive()) {
151 fixedBorderBoxLogicalWidth = cell->adjustBorderBoxLogicalWidthForBoxSizing(logicalWidth.value());
152 logicalWidth.setValue(fixedBorderBoxLogicalWidth);
159 if (m_width[currentColumn].isAuto() && logicalWidth.type() != Auto) {
160 m_width[currentColumn] = logicalWidth;
    [all...]
RenderRubyRun.cpp 274 int logicalWidth = this->logicalWidth();
279 logicalRightOverhang = std::min<int>(logicalRightOverhang, logicalWidth - rootInlineBox->logicalRight());
AutoTableLayout.cpp 98 if (cellLogicalWidth.isPositive() && !columnLayout.logicalWidth.isPercent()) {
99 int logicalWidth = cell->adjustBorderBoxLogicalWidthForBoxSizing(cellLogicalWidth.value());
100 if (columnLayout.logicalWidth.isFixed()) {
102 if ((logicalWidth > columnLayout.logicalWidth.value())
103 || ((columnLayout.logicalWidth.value() == logicalWidth) && (maxContributor == cell))) {
104 columnLayout.logicalWidth.setValue(Fixed, logicalWidth);
108 columnLayout.logicalWidth.setValue(Fixed, logicalWidth)
    [all...]
RenderTreeAsText.cpp 408 // FIXME: For now use an "enclosingIntRect" model for x, y and logicalWidth, although this makes it harder
412 int logicalWidth = ceilf(run.left() + run.logicalWidth()) - x;
418 ts << "text run at (" << x << "," << y << ") width " << logicalWidth;
InlineBox.h 53 InlineBox(RenderObject& obj, FloatPoint topLeft, float logicalWidth, bool firstLine, bool constructed,
60 , m_logicalWidth(logicalWidth)
204 float width() const { return isHorizontal() ? logicalWidth() : hasVirtualLogicalHeight() ? virtualLogicalHeight() : logicalHeight(); }
205 float height() const { return isHorizontal() ? hasVirtualLogicalHeight() ? virtualLogicalHeight() : logicalHeight() : logicalWidth(); }
212 float logicalRight() const { return logicalLeft() + logicalWidth(); }
238 float logicalWidth() const { return m_logicalWidth; }
RenderListMarker.cpp     [all...]
InlineTextBox.cpp 232 LayoutUnit logicalWidth = r.width();
234 logicalWidth = 0;
236 logicalWidth = logicalRight() - r.x();
239 LayoutUnit width = isHorizontal() ? logicalWidth : selHeight;
240 LayoutUnit height = isHorizontal() ? selHeight : logicalWidth;
281 bool rtlFullTruncation = !flowIsLTR && ellipsisX >= logicalLeft() + logicalWidth();
331 truncatedWidth += logicalWidth();
438 FloatRect boxRect(boxOrigin, LayoutSize(logicalWidth(), logicalHeight()));
    [all...]
RenderBox.h 111 LayoutUnit logicalRight() const { return logicalLeft() + logicalWidth(); }
114 LayoutUnit logicalWidth() const { return style()->isHorizontalWritingMode() ? width() : height(); }
439 bool sizesLogicalWidthToFitContent(const Length& logicalWidth) const;
443 LayoutUnit computeLogicalWidthUsing(SizeType, const Length& logicalWidth, LayoutUnit availableLogicalWidth, const RenderBlock* containingBlock) const;
448 LayoutUnit computeReplacedLogicalWidthRespectingMinMaxWidth(LayoutUnit logicalWidth, ShouldComputePreferred = ComputeActual) const;
    [all...]
RenderInline.cpp 613 childLine->logicalWidth() + childLine->marginLogicalLeft() + childLine->marginLogicalRight(),
619 childLine->logicalWidth() + childLine->marginLogicalLeft() + childLine->marginLogicalRight()));
629 yield(FloatRect(childText->x(), logicalTop, childText->logicalWidth(), logicalHeight));
631 yield(FloatRect(logicalTop, childText->y(), logicalHeight, childText->logicalWidth()));
    [all...]
RenderText.cpp 667 *extraWidthToEndOfLine = (box->root().logicalWidth() + rootLeft) - (left + 1);
675 rightEdge = std::max<float>(cb->logicalWidth().toFloat(), rootRight);
    [all...]
RenderBlock.cpp     [all...]
  /frameworks/base/core/java/android/view/
DisplayInfo.java 111 public int logicalWidth;
272 && logicalWidth == other.logicalWidth
308 logicalWidth = other.logicalWidth;
340 logicalWidth = source.readInt();
373 dest.writeInt(logicalWidth);
413 getMetricsWithSize(outMetrics, compatInfo, token, logicalWidth, logicalHeight);
418 logicalWidth : logicalHeight;
423 logicalHeight : logicalWidth;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h 469 const Length& logicalWidth() const { return isHorizontalWritingMode() ? width() : height(); }
549 bool isFixedTableLayout() const { return tableLayout() == TFIXED && !logicalWidth().isAuto(); }
    [all...]

Completed in 299 milliseconds