Searched refs:leftWidth (Results 1 - 20 of 20) sorted by relevance

/external/smali/util/src/main/java/org/jf/util/
H A DTwoColumnOutput.java50 private final int leftWidth; field in class:TwoColumnOutput
60 * @param leftWidth > 0; width of the left column, in characters
64 public TwoColumnOutput(@Nonnull Writer out, int leftWidth, int rightWidth, argument
67 if (leftWidth < 1) {
68 throw new IllegalArgumentException("leftWidth < 1");
76 this.leftWidth = leftWidth;
85 * @param leftWidth &gt;= 1; width of the left column, in characters
89 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth, argument
91 this(new OutputStreamWriter(out), leftWidth, rightWidt
[all...]
/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...]
H A DByteArrayAnnotatedOutput.java405 int leftWidth = 8 + (hexCols * 2) + (hexCols / 2);
407 return annotationWidth - leftWidth;
/external/deqp/modules/gles2/accuracy/
H A Des2aTextureFilteringTests.cpp211 int leftWidth = viewport.width / 2; local
212 int rightWidth = viewport.width - leftWidth;
237 gl.viewport(viewport.x, viewport.y, leftWidth, bottomHeight);
242 sampleTexture(SurfaceAccess(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat(), 0, 0, leftWidth, bottomHeight),
248 gl.viewport(viewport.x+leftWidth, viewport.y, rightWidth, bottomHeight);
253 sampleTexture(SurfaceAccess(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat(), leftWidth, 0, rightWidth, bottomHeight),
272 gl.viewport(viewport.x, viewport.y+bottomHeight, leftWidth, topHeight);
276 float sRange = ((float)leftWidth * 1.2f) / (float)m_textures[curTexNdx]->getRefTexture().getWidth();
282 sampleTexture(SurfaceAccess(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat(), 0, bottomHeight, leftWidth, topHeight),
288 gl.viewport(viewport.x+leftWidth, viewpor
534 int leftWidth = viewport.width / 2; local
[all...]
/external/deqp/modules/gles3/accuracy/
H A Des3aTextureFilteringTests.cpp202 int leftWidth = viewport.width / 2; local
203 int rightWidth = viewport.width - leftWidth;
228 gl.viewport(viewport.x, viewport.y, leftWidth, bottomHeight);
233 sampleTexture(SurfaceAccess(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat(), 0, 0, leftWidth, bottomHeight),
239 gl.viewport(viewport.x+leftWidth, viewport.y, rightWidth, bottomHeight);
244 sampleTexture(SurfaceAccess(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat(), leftWidth, 0, rightWidth, bottomHeight),
263 gl.viewport(viewport.x, viewport.y+bottomHeight, leftWidth, topHeight);
267 float sRange = ((float)leftWidth * 1.2f) / (float)m_textures[curTexNdx]->getRefTexture().getWidth();
273 sampleTexture(SurfaceAccess(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat(), 0, bottomHeight, leftWidth, topHeight),
279 gl.viewport(viewport.x+leftWidth, viewpor
548 int leftWidth = viewport.width / 2; local
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatRoundedRect.cpp80 void FloatRoundedRect::Radii::expand(float topWidth, float bottomWidth, float leftWidth, float rightWidth) argument
83 m_topLeft.setWidth(std::max<float>(0, m_topLeft.width() + leftWidth));
91 m_bottomLeft.setWidth(std::max<float>(0, m_bottomLeft.width() + leftWidth));
H A DFloatRoundedRect.h72 void expand(float topWidth, float bottomWidth, float leftWidth, float rightWidth);
74 void shrink(float topWidth, float bottomWidth, float leftWidth, float rightWidth) { expand(-topWidth, -bottomWidth, -leftWidth, -rightWidth); } argument
H A DRoundedRect.h66 void expand(int topWidth, int bottomWidth, int leftWidth, int rightWidth);
68 void shrink(int topWidth, int bottomWidth, int leftWidth, int rightWidth) { expand(-topWidth, -bottomWidth, -leftWidth, -rightWidth); } argument
H A DRoundedRect.cpp62 void RoundedRect::Radii::expand(int topWidth, int bottomWidth, int leftWidth, int rightWidth) argument
65 m_topLeft.setWidth(std::max<int>(0, m_topLeft.width() + leftWidth));
73 m_bottomLeft.setWidth(std::max<int>(0, m_bottomLeft.width() + leftWidth));
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DAnnotatedBytes.java275 int leftWidth = 8 + (hexCols * 2) + (hexCols / 2);
277 return outputWidth - leftWidth;
287 int leftWidth = outputWidth - rightWidth - 1;
291 TwoColumnOutput twoc = new TwoColumnOutput(out, leftWidth, rightWidth, "|");
/external/deqp/modules/gles2/functional/
H A Des2fTextureWrapTests.cpp168 int leftWidth = viewport.width / 2; local
169 int rightWidth = viewport.width - leftWidth;
192 gl.viewport(viewport.x, viewport.y, leftWidth, viewport.height);
199 sampleTexture(SurfaceAccess(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat(), 0, 0, leftWidth, viewport.height),
205 gl.viewport(viewport.x+leftWidth, viewport.y, rightWidth, viewport.height);
212 sampleTexture(SurfaceAccess(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat(), leftWidth, 0, rightWidth, viewport.height),
H A Des2fVertexTextureTests.cpp565 const int leftWidth = viewportWidth / 2; local
566 const int rightWidth = viewportWidth - leftWidth;
593 Render(Rect(0, 0, leftWidth, bottomHeight), 0, texMinScale, texMinOffset),
594 Render(Rect(leftWidth, 0, rightWidth, bottomHeight), 0, texMagScale, texMagOffset),
595 Render(Rect(0, bottomHeight, leftWidth, topHeight), 1, texMinScale, texMinOffset),
596 Render(Rect(leftWidth, bottomHeight, rightWidth, topHeight), 1, texMagScale, texMagOffset)
883 const int leftWidth = viewportWidth / 2; local
884 const int rightWidth = viewportWidth - leftWidth;
911 const int leftCellWidth = isRightmostCell ? leftWidth - cellOffsetX : defCellWidth;
926 Render(Rect(cellOffsetX + leftWidth, cellOffset
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fVertexTextureTests.cpp666 const int leftWidth = viewportWidth / 2; local
667 const int rightWidth = viewportWidth - leftWidth;
694 Render(Rect(0, 0, leftWidth, bottomHeight), 0, texMinScale, texMinOffset),
695 Render(Rect(leftWidth, 0, rightWidth, bottomHeight), 0, texMagScale, texMagOffset),
696 Render(Rect(0, bottomHeight, leftWidth, topHeight), 1, texMinScale, texMinOffset),
697 Render(Rect(leftWidth, bottomHeight, rightWidth, topHeight), 1, texMagScale, texMagOffset)
987 const int leftWidth = viewportWidth / 2; local
988 const int rightWidth = viewportWidth - leftWidth;
1015 const int leftCellWidth = isRightmostCell ? leftWidth - cellOffsetX : defCellWidth;
1030 Render(Rect(cellOffsetX + leftWidth, cellOffset
1322 const int leftWidth = viewportWidth / 2; local
1665 const int leftWidth = viewportWidth / 2; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DBoxPainter.cpp915 int leftWidth = computeBorderImageSide(ninePieceImage.borderSlices().left(), style->borderLeftWidth(), leftSlice, borderImageRect.width()); local
921 int borderSideWidth = std::max(1, leftWidth + rightWidth);
928 leftWidth *= borderSideScaleFactor;
931 bool drawLeft = leftSlice > 0 && leftWidth > 0;
935 bool drawMiddle = ninePieceImage.fill() && (imageWidth - leftSlice - rightSlice) > 0 && (borderImageRect.width() - leftWidth - rightWidth) > 0
940 float destinationWidth = borderImageRect.width() - leftWidth - rightWidth;
946 float leftSideScale = drawLeft ? (float)leftWidth / leftSlice : 1;
954 // The top left corner rect is (tx, ty, leftWidth, topWidth)
957 graphicsContext->drawImage(image.get(), IntRect(borderImageRect.location(), IntSize(leftWidth, topWidth)),
961 // The bottom left corner rect is (tx, ty + h - bottomWidth, leftWidth, bottomWidt
1814 LayoutUnit leftWidth = edges[BSLeft].usedWidth() / 2; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.cpp982 int leftWidth = (!horizontal || includeLogicalLeftEdge) ? borderLeftWidth() : 0; local
987 return getRoundedInnerBorderFor(borderRect, topWidth, bottomWidth, leftWidth, rightWidth, includeLogicalLeftEdge, includeLogicalRightEdge);
991 int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const
993 LayoutRect innerRect(borderRect.x() + leftWidth,
995 borderRect.width() - leftWidth - rightWidth,
1002 radii.shrink(topWidth, bottomWidth, leftWidth, rightWidth);
990 getRoundedInnerBorderFor(const LayoutRect& borderRect, int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const argument
H A DRenderStyle.h1067 int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const;
/external/chromium_org/ui/keyboard/resources/
H A Dmain.js392 var leftWidth = leftEdge - params.offsetLeft - params.pitchX;
397 leftWidth,
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTableCell.cpp1118 int leftWidth = leftVal.width(); local
1121 IntRect borderRect = pixelSnappedIntRect(paintRect.x() - leftWidth / 2,
1123 paintRect.width() + leftWidth / 2 + (rightWidth + 1) / 2,
1141 borders.addBorder(leftVal, BSLeft, renderLeft, borderRect.x(), borderRect.y(), borderRect.x() + leftWidth, borderRect.maxY(), leftStyle);
/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 853 milliseconds