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

12

  /external/webkit/Source/WebCore/rendering/
InlineTextBox.cpp 199 int logicalWidth = r.width();
201 logicalWidth = 0;
203 logicalWidth = m_logicalWidth - r.x();
206 int width = isHorizontal() ? logicalWidth : selHeight;
207 int height = isHorizontal() ? selHeight : logicalWidth;
523 FloatRect boxRect(boxOrigin, IntSize(logicalWidth(), logicalHeight()));
    [all...]
RenderBox.h 34 enum LogicalWidthType { LogicalWidth, MinLogicalWidth, MaxLogicalWidth };
58 int logicalRight() const { return logicalLeft() + logicalWidth(); }
61 int logicalWidth() const { return style()->isHorizontalWritingMode() ? width() : height(); }
444 void computePositionedLogicalWidthUsing(Length logicalWidth, const RenderBoxModelObject* containerBlock, TextDirection containerDirection,
RenderBlockLineLayout.cpp 382 trailingSpaceRun->m_box->setLogicalWidth(max<float>(0, trailingSpaceRun->m_box->logicalWidth() - totalLogicalWidth + availableLogicalWidth));
399 totalLogicalWidth -= trailingSpaceRun->m_box->logicalWidth();
408 trailingSpaceRun->m_box->setLogicalWidth(max<float>(0, trailingSpaceRun->m_box->logicalWidth() - totalLogicalWidth + availableLogicalWidth));
409 totalLogicalWidth -= trailingSpaceRun->m_box->logicalWidth();
418 totalLogicalWidth -= trailingSpaceRun->m_box->logicalWidth();
419 trailingSpaceWidth = min(trailingSpaceRun->m_box->logicalWidth(), (availableLogicalWidth - totalLogicalWidth + 1) / 2);
522 totalLogicalWidth += r->m_box->logicalWidth();
544 totalLogicalWidth -= trailingSpaceRun->m_box->logicalWidth();
554 trailingSpaceRun->m_box->setLogicalWidth(max<float>(0, trailingSpaceRun->m_box->logicalWidth() - totalLogicalWidth + availableLogicalWidth));
    [all...]
RenderListMarker.cpp     [all...]
InlineFlowBox.h 261 return FloatRect(logicalLeft(), lineTop, logicalWidth(), lineBottom - lineTop);
RenderBlock.h 281 virtual void adjustInlineDirectionLineBounds(int /* expansionOpportunityCount */, float& /* logicalLeft */, float& /* logicalWidth */) const { }
468 void setLogicalWidthForFloat(FloatingObject* child, int logicalWidth)
471 child->setWidth(logicalWidth);
473 child->setHeight(logicalWidth);
    [all...]
RenderTableCell.cpp 92 Length w = style()->logicalWidth();
101 Length colWidth = tableCol->style()->logicalWidth();
162 if (w == logicalWidth())
    [all...]
RenderText.cpp 329 IntRect r = IntRect(box->x(), box->y(), box->logicalWidth(), box->logicalHeight());
565 *extraWidthToEndOfLine = (box->root()->logicalWidth() + rootLeft) - (left + 1);
    [all...]
RenderFlexibleBox.cpp     [all...]
RenderTreeAsText.cpp 493 // FIXME: For now use an "enclosingIntRect" model for x, y and logicalWidth, although this makes it harder
497 int logicalWidth = ceilf(run.m_x + run.m_logicalWidth) - x;
503 ts << "text run at (" << x << "," << y << ") width " << logicalWidth;
RenderBlock.cpp     [all...]
RenderTableSection.cpp 304 int oldLogicalWidth = cell->logicalWidth();
590 rowRenderer->setLogicalWidth(logicalWidth());
    [all...]
RenderView.cpp 115 m_minPreferredLogicalWidth = m_maxPreferredLogicalWidth = logicalWidth();
  /frameworks/base/services/java/com/android/server/wm/
DimLayer.java 159 final int dw = (int) (info.logicalWidth * 1.5);
WindowManagerService.java     [all...]
WindowStateAnimator.java     [all...]
  /frameworks/base/services/java/com/android/server/power/
ElectronBeam.java 721 mSurfaceControl.setPosition(displayInfo.logicalWidth, displayInfo.logicalHeight);
725 mSurfaceControl.setPosition(displayInfo.logicalWidth, 0);
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGRoot.cpp 82 if (!style()->logicalWidth().isPercent())
SVGRenderTreeAsText.cpp 438 // FIXME: For now use an int for logicalWidth, although this makes it harder
440 int logicalWidth = ceilf(box->x() + box->logicalWidth()) - box->x();
441 ts << " at (" << text.x() << "," << text.y() << ") size " << logicalWidth << "x" << box->logicalHeight();
  /external/webkit/Source/WebCore/rendering/style/
RenderStyle.cpp     [all...]
RenderStyle.h 403 Length logicalWidth() const;
    [all...]
  /external/webkit/Source/WebKit/android/jni/
WebViewCore.cpp     [all...]

Completed in 895 milliseconds

12