Searched defs:leftWidth (Results 1 - 10 of 10) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/util/
H A DTwoColumnOutput.java35 private final int leftWidth; field in class:TwoColumnOutput
84 * @param leftWidth {@code > 0;} width of the left column, in characters
88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, argument
94 if (leftWidth < 1) {
95 throw new IllegalArgumentException("leftWidth < 1");
110 this.leftWidth = leftWidth;
113 this.leftColumn = new IndentingWriter(leftWriter, leftWidth);
122 * @param leftWidth {@code >= 1;} width of the left column, in characters
126 public TwoColumnOutput(OutputStream out, int leftWidth, in argument
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DTwoColumnOutput.java39 private final int leftWidth; field in class:TwoColumnOutput
88 * @param leftWidth &gt; 0; width of the left column, in characters
92 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, argument
98 if (leftWidth < 1) {
99 throw new IllegalArgumentException("leftWidth < 1");
114 this.leftWidth = leftWidth;
117 this.leftColumn = new IndentingWriter(leftWriter, leftWidth);
126 * @param leftWidth &gt;= 1; width of the left column, in characters
130 public TwoColumnOutput(OutputStream out, int leftWidth, in argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/
H A DRoundedIntRect.cpp63 void RoundedIntRect::Radii::expand(int topWidth, int bottomWidth, int leftWidth, int rightWidth) argument
65 m_topLeft.setWidth(max(0, m_topLeft.width() + leftWidth));
71 m_bottomLeft.setWidth(max(0, m_bottomLeft.width() + leftWidth));
H A DRoundedIntRect.h63 void expand(int topWidth, int bottomWidth, int leftWidth, int rightWidth);
65 void shrink(int topWidth, int bottomWidth, int leftWidth, int rightWidth) { expand(-topWidth, -bottomWidth, -leftWidth, -rightWidth); } argument
/external/webkit/Source/WebCore/rendering/style/
H A DRenderStyle.cpp817 int leftWidth = (!horizontal || includeLogicalLeftEdge) ? borderLeftWidth() : 0; local
822 return getRoundedInnerBorderFor(borderRect, topWidth, bottomWidth, leftWidth, rightWidth, includeLogicalLeftEdge, includeLogicalRightEdge);
826 int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const
828 IntRect innerRect(borderRect.x() + leftWidth,
830 borderRect.width() - leftWidth - rightWidth,
837 radii.shrink(topWidth, bottomWidth, leftWidth, rightWidth);
825 getRoundedInnerBorderFor(const IntRect& borderRect, int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const argument
/external/webkit/Source/WebCore/rendering/
H A DRenderTableCell.cpp937 int leftWidth = leftVal.width(); local
940 tx -= leftWidth / 2;
942 w += leftWidth / 2 + (rightWidth + 1) / 2;
960 borders.addBorder(leftVal, BSLeft, renderLeft, tx, ty, tx + leftWidth, ty + h, leftStyle);
H A DRenderBoxModelObject.cpp955 int leftWidth = fitToBorder ? style->borderLeftWidth() : leftSlice; local
960 bool drawLeft = leftSlice > 0 && leftWidth > 0;
964 bool drawMiddle = (imageWidth - leftSlice - rightSlice) > 0 && (w - leftWidth - rightWidth) > 0 &&
973 // The top left corner rect is (tx, ty, leftWidth, topWidth)
976 graphicsContext->drawImage(image.get(), colorSpace, IntRect(tx, ty, leftWidth, topWidth),
979 // The bottom left corner rect is (tx, ty + h - bottomWidth, leftWidth, bottomWidth)
982 graphicsContext->drawImage(image.get(), colorSpace, IntRect(tx, ty + h - bottomWidth, leftWidth, bottomWidth),
987 graphicsContext->drawTiledImage(image.get(), colorSpace, IntRect(tx, ty + topWidth, leftWidth,
1016 graphicsContext->drawTiledImage(image.get(), colorSpace, IntRect(tx + leftWidth, ty, w - leftWidth
1565 int leftWidth = edges[BSLeft].usedWidth() / 2; local
[all...]
H A DRenderObject.cpp916 IntRect RenderObject::borderInnerRect(const IntRect& borderRect, unsigned short topWidth, unsigned short bottomWidth, unsigned short leftWidth, unsigned short rightWidth) const argument
919 borderRect.x() + leftWidth,
921 borderRect.width() - leftWidth - rightWidth,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 6103 milliseconds