/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
InlineFlowBox.cpp | 391 logicalLeft += text->logicalWidth(); 402 curr->setLogicalLeft(root()->block()->logicalWidth() - logicalLeft); 424 logicalLeft += curr->logicalWidth(); [all...] |
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; 632 LayoutUnit oldLogicalWidth = oldInfo->logicalWidth(); 634 if (!newInfo || newInfo->logicalWidth() != oldLogicalWidth) [all...] |
RenderTable.cpp | 98 if (style()->tableLayout() == TFIXED && !style()->logicalWidth().isAuto()) 262 Length styleLogicalWidth = style()->logicalWidth(); 286 setLogicalWidth(min<int>(logicalWidth(), computedMaxLogicalWidth)); 291 setLogicalWidth(max<int>(logicalWidth(), minPreferredLogicalWidth())); 297 setLogicalWidth(max<int>(logicalWidth(), computedMinLogicalWidth)); 309 computeInlineDirectionMargins(cb, containerLogicalWidthForAutoMargins, logicalWidth(), 323 ASSERT(logicalWidth().toInt() >= minPreferredLogicalWidth().toInt()); 427 LayoutUnit oldLogicalWidth = logicalWidth(); 432 if (logicalWidth() != oldLogicalWidth) { [all...] |
RenderBox.h | 84 LayoutUnit logicalRight() const { return logicalLeft() + logicalWidth(); } 87 LayoutUnit logicalWidth() const { return style()->isHorizontalWritingMode() ? width() : height(); } 426 LayoutUnit computeLogicalWidthInRegionUsing(SizeType, Length logicalWidth, LayoutUnit availableLogicalWidth, const RenderBlock* containingBlock, RenderRegion*) const; 431 LayoutUnit computeReplacedLogicalWidthRespectingMinMaxWidth(LayoutUnit logicalWidth, ShouldComputePreferred = ComputeActual) const; [all...] |
RenderBlockFlow.h | 109 void setLogicalWidthForFloat(FloatingObject* floatingObject, LayoutUnit logicalWidth) 112 floatingObject->setWidth(logicalWidth); 114 floatingObject->setHeight(logicalWidth);
|
RenderTreeAsText.cpp | 407 // FIXME: For now use an "enclosingIntRect" model for x, y and logicalWidth, although this makes it harder 411 int logicalWidth = ceilf(run.left() + run.logicalWidth()) - x; 417 ts << "text run at (" << x << "," << y << ") width " << logicalWidth; [all...] |
RootInlineBox.cpp | 118 if (logicalWidth() - delta < ellipsisWidth) 131 ellipsisWidth - (markupBox ? markupBox->logicalWidth() : 0), logicalHeight(), 140 if (ltr && (logicalLeft() + logicalWidth() + ellipsisWidth) <= blockRightEdge) { 141 ellipsisBox->setLogicalLeft(logicalLeft() + logicalWidth()); 142 return logicalWidth() + ellipsisWidth; [all...] |
InlineTextBox.cpp | 224 LayoutUnit logicalWidth = r.width(); 226 logicalWidth = 0; 228 logicalWidth = logicalRight() - r.x(); 231 LayoutUnit width = isHorizontal() ? logicalWidth : selHeight; 232 LayoutUnit height = isHorizontal() ? selHeight : logicalWidth; 273 bool rtlFullTruncation = !flowIsLTR && ellipsisX >= logicalLeft() + logicalWidth(); 323 truncatedWidth += logicalWidth(); 526 FloatRect boxRect(boxOrigin, LayoutSize(logicalWidth(), logicalHeight())); [all...] |
EllipsisBox.cpp | 47 FloatRect boxRect(boxOrigin, LayoutSize(logicalWidth(), virtualLogicalHeight()));
|
RenderTableCell.h | 88 Length styleWidth = style()->logicalWidth();
|
RenderBlockLineLayout.cpp | 383 trailingSpaceRun->m_box->setLogicalWidth(max<float>(0, trailingSpaceRun->m_box->logicalWidth() - totalLogicalWidth + availableLogicalWidth)); 400 totalLogicalWidth -= trailingSpaceRun->m_box->logicalWidth(); 409 trailingSpaceRun->m_box->setLogicalWidth(max<float>(0, trailingSpaceRun->m_box->logicalWidth() - totalLogicalWidth + availableLogicalWidth)); 410 totalLogicalWidth -= trailingSpaceRun->m_box->logicalWidth(); 419 totalLogicalWidth -= trailingSpaceRun->m_box->logicalWidth(); 420 trailingSpaceWidth = min(trailingSpaceRun->m_box->logicalWidth(), (availableLogicalWidth - totalLogicalWidth + 1) / 2); 596 totalLogicalWidth -= trailingSpaceRun->m_box->logicalWidth(); [all...] |
RenderInline.cpp | 584 childLine->logicalWidth() + childLine->marginLogicalLeft() + childLine->marginLogicalRight(), 590 childLine->logicalWidth() + childLine->marginLogicalLeft() + childLine->marginLogicalRight())); 600 yield(FloatRect(childText->x(), logicalTop, childText->logicalWidth(), logicalHeight)); 602 yield(FloatRect(logicalTop, childText->y(), logicalHeight, childText->logicalWidth())); [all...] |
RenderListMarker.cpp | [all...] |
RenderDeprecatedFlexibleBox.cpp | 175 return child->logicalWidth() - child->borderAndPaddingLogicalWidth(); [all...] |
InlineBox.cpp | 304 truncatedWidth += logicalWidth();
|
InlineFlowBox.h | 291 return FloatRect(logicalLeft(), lineTop, logicalWidth(), lineBottom - lineTop);
|
RenderBlock.cpp | [all...] |
RenderText.cpp | 682 *extraWidthToEndOfLine = (box->root()->logicalWidth() + rootLeft) - (left + 1); 690 rightEdge = max<float>(cb->logicalWidth(), rootRight); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGPreserveAspectRatio.cpp | 278 AffineTransform SVGPreserveAspectRatio::getCTM(float logicalX, float logicalY, float logicalWidth, float logicalHeight, float physicalWidth, float physicalHeight) const 286 double extendedLogicalWidth = logicalWidth;
|
/frameworks/base/services/java/com/android/server/wm/ |
DisplayContent.java | 214 int width = mDisplayInfo.logicalWidth; 470 pw.print(mDisplayInfo.logicalWidth);
|
DimLayer.java | 179 dw = (int) (info.logicalWidth * 1.5);
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
SmartClip.cpp | 232 if (renderer && (renderer->style()->logicalHeight().isAuto() || renderer->style()->logicalWidth().isAuto()))
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
SVGRootInlineBox.cpp | 211 if (point.x() < leaf->left() + leaf->logicalWidth())
|
/frameworks/base/core/java/android/view/ |
Display.java | 474 return Math.max(mDisplayInfo.logicalWidth, mDisplayInfo.logicalHeight); 605 outSize.x = mDisplayInfo.logicalWidth;
|
/frameworks/base/services/java/com/android/server/power/ |
ElectronBeam.java | 722 mSurfaceControl.setPosition(displayInfo.logicalWidth, displayInfo.logicalHeight); 726 mSurfaceControl.setPosition(displayInfo.logicalWidth, 0);
|