/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
D | TwoColumnOutput.java | 92 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, in TwoColumnOutput() argument 102 if (rightWidth < 1) { in TwoColumnOutput() 119 new IndentingWriter(rightWriter, rightWidth, spacer); in TwoColumnOutput() 130 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth, in TwoColumnOutput() argument 132 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer); in TwoColumnOutput()
|
/external/dexmaker/src/dx/java/com/android/dx/util/ |
D | TwoColumnOutput.java | 88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, in TwoColumnOutput() argument 98 if (rightWidth < 1) { in TwoColumnOutput() 115 new IndentingWriter(rightWriter, rightWidth, spacer); in TwoColumnOutput() 126 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth, in TwoColumnOutput() argument 128 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer); in TwoColumnOutput()
|
/external/webkit/Source/WebCore/platform/graphics/ |
D | RoundedIntRect.h | 63 void expand(int topWidth, int bottomWidth, int leftWidth, int rightWidth); 65 …idth, int bottomWidth, int leftWidth, int rightWidth) { expand(-topWidth, -bottomWidth, -leftWidth… in shrink() argument
|
D | RoundedIntRect.cpp | 63 void RoundedIntRect::Radii::expand(int topWidth, int bottomWidth, int leftWidth, int rightWidth) in expand() argument 68 m_topRight.setWidth(max(0, m_topRight.width() + rightWidth)); in expand() 74 m_bottomRight.setWidth(max(0, m_bottomRight.width() + rightWidth)); in expand()
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderBoxModelObject.cpp | 957 int rightWidth = fitToBorder ? style->borderRightWidth() : rightSlice; in paintNinePieceImage() local 962 bool drawRight = rightSlice > 0 && rightWidth > 0; in paintNinePieceImage() 964 … bool drawMiddle = (imageWidth - leftSlice - rightSlice) > 0 && (w - leftWidth - rightWidth) > 0 && in paintNinePieceImage() 998 …csContext->drawImage(image.get(), colorSpace, IntRect(tx + w - rightWidth, ty, rightWidth, topWidt… in paintNinePieceImage() 1004 …->drawImage(image.get(), colorSpace, IntRect(tx + w - rightWidth, ty + h - bottomWidth, rightWidth… in paintNinePieceImage() 1008 …xt->drawTiledImage(image.get(), colorSpace, IntRect(tx + w - rightWidth, ty + topWidth, rightWidth, in paintNinePieceImage() 1016 …edImage(image.get(), colorSpace, IntRect(tx + leftWidth, ty, w - leftWidth - rightWidth, topWidth), in paintNinePieceImage() 1023 w - leftWidth - rightWidth, bottomWidth), in paintNinePieceImage() 1029 …edImage(image.get(), colorSpace, IntRect(tx + leftWidth, ty + topWidth, w - leftWidth - rightWidth, in paintNinePieceImage() 1566 int rightWidth = edges[BSRight].usedWidth() / 2; in drawBoxSideFromPath() local [all …]
|
D | RenderTableCell.cpp | 938 int rightWidth = rightVal.width(); in paintCollapsedBorder() local 942 w += leftWidth / 2 + (rightWidth + 1) / 2; in paintCollapsedBorder() 961 …borders.addBorder(rightVal, BSRight, renderRight, tx + w - rightWidth, ty, tx + w, ty + h, rightSt… in paintCollapsedBorder()
|
D | RenderObject.h | 447 unsigned short leftWidth, unsigned short rightWidth) const;
|
D | RenderObject.cpp | 916 …rt topWidth, unsigned short bottomWidth, unsigned short leftWidth, unsigned short rightWidth) const in borderInnerRect() 921 borderRect.width() - leftWidth - rightWidth, in borderInnerRect()
|
/external/webkit/Source/WebCore/rendering/style/ |
D | RenderStyle.cpp | 818 int rightWidth = (!horizontal || includeLogicalRightEdge) ? borderRightWidth() : 0; in getRoundedInnerBorderFor() local 822 …return getRoundedInnerBorderFor(borderRect, topWidth, bottomWidth, leftWidth, rightWidth, includeL… in getRoundedInnerBorderFor() 826 …int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool in… in getRoundedInnerBorderFor() argument 830 borderRect.width() - leftWidth - rightWidth, in getRoundedInnerBorderFor() 837 radii.shrink(topWidth, bottomWidth, leftWidth, rightWidth); in getRoundedInnerBorderFor()
|
D | RenderStyle.h | 875 …int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool in…
|