Home
last modified time | relevance | path

Searched refs:leftWidth (Results 1 – 14 of 14) sorted by relevance

/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
DTwoColumnOutput.java39 private final int leftWidth; field in TwoColumnOutput
92 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, in TwoColumnOutput() argument
98 if (leftWidth < 1) { in TwoColumnOutput()
114 this.leftWidth = leftWidth; in TwoColumnOutput()
117 this.leftColumn = new IndentingWriter(leftWriter, leftWidth); in TwoColumnOutput()
130 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth, in TwoColumnOutput() argument
132 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer); in TwoColumnOutput()
192 writeSpaces(out, leftWidth - leftLen); in outputFullLines()
DByteArrayOutput.java406 int leftWidth = 8 + (hexCols * 2) + (hexCols / 2); in getAnnotationWidth() local
408 return annotationWidth - leftWidth; in getAnnotationWidth()
DByteArrayAnnotatedOutput.java439 int leftWidth = 8 + (hexCols * 2) + (hexCols / 2); in getAnnotationWidth() local
441 return annotationWidth - leftWidth; in getAnnotationWidth()
/external/dexmaker/src/dx/java/com/android/dx/util/
DTwoColumnOutput.java35 private final int leftWidth; field in TwoColumnOutput
88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, in TwoColumnOutput() argument
94 if (leftWidth < 1) { in TwoColumnOutput()
110 this.leftWidth = leftWidth; in TwoColumnOutput()
113 this.leftColumn = new IndentingWriter(leftWriter, leftWidth); in TwoColumnOutput()
126 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth, in TwoColumnOutput() argument
128 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer); in TwoColumnOutput()
188 writeSpaces(out, leftWidth - leftLen); in outputFullLines()
DByteArrayAnnotatedOutput.java405 int leftWidth = 8 + (hexCols * 2) + (hexCols / 2); in getAnnotationWidth() local
407 return annotationWidth - leftWidth; in getAnnotationWidth()
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
DRoundedRect.h66 void expand(int topWidth, int bottomWidth, int leftWidth, int rightWidth);
68 …hrink(int topWidth, int bottomWidth, int leftWidth, int rightWidth) { expand(-topWidth, -bottomWid… in shrink() argument
DFloatRoundedRect.h63 void expand(float topWidth, float bottomWidth, float leftWidth, float rightWidth);
65 …loat topWidth, float bottomWidth, float leftWidth, float rightWidth) { expand(-topWidth, -bottomWi… in shrink() argument
DFloatRoundedRect.cpp80 void FloatRoundedRect::Radii::expand(float topWidth, float bottomWidth, float leftWidth, float righ… in expand() argument
83 m_topLeft.setWidth(std::max<float>(0, m_topLeft.width() + leftWidth)); in expand()
91 m_bottomLeft.setWidth(std::max<float>(0, m_bottomLeft.width() + leftWidth)); in expand()
DRoundedRect.cpp64 void RoundedRect::Radii::expand(int topWidth, int bottomWidth, int leftWidth, int rightWidth) in expand() argument
67 m_topLeft.setWidth(max<int>(0, m_topLeft.width() + leftWidth)); in expand()
75 m_bottomLeft.setWidth(max<int>(0, m_bottomLeft.width() + leftWidth)); in expand()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBoxModelObject.cpp1197 …int leftWidth = computeBorderImageSide(ninePieceImage.borderSlices().left(), style->borderLeftWidt… in paintNinePieceImage() local
1203 int borderSideWidth = max(1, leftWidth + rightWidth); in paintNinePieceImage()
1210 leftWidth *= borderSideScaleFactor; in paintNinePieceImage()
1213 bool drawLeft = leftSlice > 0 && leftWidth > 0; in paintNinePieceImage()
1217 …(imageWidth - leftSlice - rightSlice) > 0 && (borderImageRect.width() - leftWidth - rightWidth) > 0 in paintNinePieceImage()
1222 float destinationWidth = borderImageRect.width() - leftWidth - rightWidth; in paintNinePieceImage()
1228 float leftSideScale = drawLeft ? (float)leftWidth / leftSlice : 1; in paintNinePieceImage()
1239 …sContext->drawImage(image.get(), IntRect(borderImageRect.location(), IntSize(leftWidth, topWidth)), in paintNinePieceImage()
1245 ….get(), IntRect(borderImageRect.x(), borderImageRect.maxY() - bottomWidth, leftWidth, bottomWidth), in paintNinePieceImage()
1251 …age.get(), IntRect(borderImageRect.x(), borderImageRect.y() + topWidth, leftWidth, destinationHeig… in paintNinePieceImage()
[all …]
DRenderTableCell.cpp1131 int leftWidth = leftVal.width(); in paintCollapsedBorders() local
1134 IntRect borderRect = pixelSnappedIntRect(paintRect.x() - leftWidth / 2, in paintCollapsedBorders()
1136 paintRect.width() + leftWidth / 2 + (rightWidth + 1) / 2, in paintCollapsedBorders()
1154 …l, BSLeft, renderLeft, borderRect.x(), borderRect.y(), borderRect.x() + leftWidth, borderRect.maxY… in paintCollapsedBorders()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DRenderStyle.cpp985 int leftWidth = (!horizontal || includeLogicalLeftEdge) ? borderLeftWidth() : 0; in getRoundedInnerBorderFor() local
990 …return getRoundedInnerBorderFor(borderRect, topWidth, bottomWidth, leftWidth, rightWidth, includeL… in getRoundedInnerBorderFor()
994 …int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool in… in getRoundedInnerBorderFor() argument
996 LayoutRect innerRect(borderRect.x() + leftWidth, in getRoundedInnerBorderFor()
998 borderRect.width() - leftWidth - rightWidth, in getRoundedInnerBorderFor()
1005 radii.shrink(topWidth, bottomWidth, leftWidth, rightWidth); in getRoundedInnerBorderFor()
DRenderStyle.h1026 …int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool in…
/external/chromium_org/chrome/browser/ui/cocoa/tabs/
Dtab_view.mm677 CGFloat leftWidth = leftMask.size.width;
703 CGFloat middleWidth = tabWidth - leftWidth - rightWidth;
704 NSRect middleRect = NSMakeRect(leftWidth, 0, middleWidth, kFillHeight);