HomeSort by relevance Sort by last modified time
    Searched refs:logicalWidth (Results 26 - 50 of 67) sorted by null

12 3

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGInline.cpp 116 quads.append(localToAbsoluteQuad(FloatRect(textBoundingBox.x() + box->x(), textBoundingBox.y() + box->y(), box->logicalWidth(), box->logicalHeight()), false, wasFixed));
SVGRootInlineBox.cpp 198 if (point.x() < leaf->left() + leaf->logicalWidth())
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTable.cpp 266 Length styleLogicalWidth = style()->logicalWidth();
288 setLogicalWidth(std::min<int>(logicalWidth(), computedMaxLogicalWidth));
293 setLogicalWidth(std::max<int>(logicalWidth(), minPreferredLogicalWidth()));
299 setLogicalWidth(std::max<int>(logicalWidth(), computedMinLogicalWidth));
304 computeMarginsForDirection(InlineDirection, cb, availableLogicalWidth, logicalWidth(), marginValues.m_start, marginValues.m_end, style()->marginStart(), style()->marginEnd());
312 ASSERT(logicalWidth().toInt() >= minPreferredLogicalWidth().toInt());
426 LayoutUnit oldLogicalWidth = logicalWidth();
429 if (logicalWidth() != oldLogicalWidth) {
    [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...]
RenderListMarker.cpp     [all...]
RootInlineBox.cpp 107 if (logicalWidth() - delta < ellipsisWidth)
120 ellipsisWidth - (markupBox ? markupBox->logicalWidth() : 0), logicalHeight(),
129 if (ltr && (logicalLeft() + logicalWidth() + ellipsisWidth) <= blockRightEdge) {
130 ellipsisBox->setLogicalLeft(logicalLeft() + logicalWidth());
131 return logicalWidth() + ellipsisWidth;
    [all...]
RenderBlockLineLayout.cpp 304 trailingSpaceRun->m_box->setLogicalWidth(std::max<float>(0, trailingSpaceRun->m_box->logicalWidth() - totalLogicalWidth + availableLogicalWidth));
321 totalLogicalWidth -= trailingSpaceRun->m_box->logicalWidth();
330 trailingSpaceRun->m_box->setLogicalWidth(std::max<float>(0, trailingSpaceRun->m_box->logicalWidth() - totalLogicalWidth + availableLogicalWidth));
331 totalLogicalWidth -= trailingSpaceRun->m_box->logicalWidth();
340 totalLogicalWidth -= trailingSpaceRun->m_box->logicalWidth();
341 trailingSpaceWidth = std::min(trailingSpaceRun->m_box->logicalWidth(), (availableLogicalWidth - totalLogicalWidth + 1) / 2);
514 totalLogicalWidth -= trailingSpaceRun->m_box->logicalWidth();
625 totalLogicalWidth += r->m_box->logicalWidth();
    [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...]
RenderImage.cpp 212 bool imageSizeIsConstrained = style()->logicalWidth().isSpecified() && style()->logicalHeight().isSpecified();
217 bool containingBlockNeedsToRecomputePreferredSize = style()->logicalWidth().isPercent() || style()->logicalMaxWidth().isPercent() || style()->logicalMinWidth().isPercent();
EllipsisBox.cpp 46 FloatRect boxRect(boxOrigin, LayoutSize(logicalWidth(), virtualLogicalHeight()));
RenderMultiColumnFlowThread.cpp 145 return newWidth != logicalWidth();
RenderTableCell.h 92 Length styleWidth = style()->logicalWidth();
RenderBlock.h 240 LayoutUnit startOffsetForContent() const { return style()->isLeftToRightDirection() ? logicalLeftOffsetForContent() : logicalWidth() - logicalRightOffsetForContent(); }
241 LayoutUnit endOffsetForContent() const { return !style()->isLeftToRightDirection() ? logicalLeftOffsetForContent() : logicalWidth() - logicalRightOffsetForContent(); }
290 virtual void adjustInlineDirectionLineBounds(unsigned /* expansionOpportunityCount */, float& /* logicalLeft */, float& /* logicalWidth */) const { }
InlineBox.cpp 298 truncatedWidth += logicalWidth();
RenderFlowThread.cpp 230 LayoutRect columnSetRect(style()->direction() == LTR ? LayoutUnit() : logicalWidth() - columnSetLogicalWidth, logicalHeight, columnSetLogicalWidth, columnSetLogicalHeight);
RenderDeprecatedFlexibleBox.cpp 167 return child->logicalWidth() - child->borderAndPaddingLogicalWidth();
    [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;
InlineFlowBox.cpp 402 logicalLeft += text->logicalWidth();
413 curr->setLogicalLeft(root().block().logicalWidth() - logicalLeft);
436 logicalLeft += curr->logicalWidth();
    [all...]
RenderGrid.cpp 543 return valueForLength(trackLength, direction == ForColumns ? logicalWidth() : computeContentLogicalHeight(style()->logicalHeight(), -1));
603 Length logicalSize = isForColumns ? style()->logicalWidth() : style()->logicalHeight();
    [all...]
RenderBlock.cpp     [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
DisplayContent.java 185 int width = mDisplayInfo.logicalWidth;
362 pw.print(mDisplayInfo.logicalWidth);
DimLayer.java 159 dw = (int) (info.logicalWidth * 1.5);
  /external/chromium_org/third_party/WebKit/Source/core/frame/
SmartClip.cpp 215 if (renderer && (renderer->style()->logicalHeight().isAuto() || renderer->style()->logicalWidth().isAuto()))
  /frameworks/base/services/core/java/com/android/server/display/
ColorFade.java 747 mSurfaceControl.setPosition(displayInfo.logicalWidth,
752 mSurfaceControl.setPosition(displayInfo.logicalWidth, 0);
  /external/chromium_org/third_party/WebKit/Source/core/paint/
InlinePainter.cpp 50 rects.append(LayoutRect(curr->x(), top, curr->logicalWidth(), bottom - top));

Completed in 900 milliseconds

12 3