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.cpp64 void RoundedRect::Radii::expand(int topWidth, int bottomWidth, int leftWidth, int rightWidth) argument
67 m_topLeft.setWidth(max<int>(0, m_topLeft.width() + leftWidth));
75 m_bottomLeft.setWidth(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/rendering/
H A DRenderBoxModelObject.cpp1199 int leftWidth = computeBorderImageSide(ninePieceImage.borderSlices().left(), style->borderLeftWidth(), leftSlice, borderImageRect.width()); local
1205 int borderSideWidth = max(1, leftWidth + rightWidth);
1212 leftWidth *= borderSideScaleFactor;
1215 bool drawLeft = leftSlice > 0 && leftWidth > 0;
1219 bool drawMiddle = ninePieceImage.fill() && (imageWidth - leftSlice - rightSlice) > 0 && (borderImageRect.width() - leftWidth - rightWidth) > 0
1224 float destinationWidth = borderImageRect.width() - leftWidth - rightWidth;
1230 float leftSideScale = drawLeft ? (float)leftWidth / leftSlice : 1;
1238 // The top left corner rect is (tx, ty, leftWidth, topWidth)
1241 graphicsContext->drawImage(image.get(), IntRect(borderImageRect.location(), IntSize(leftWidth, topWidth)),
1244 // The bottom left corner rect is (tx, ty + h - bottomWidth, leftWidth, bottomWidt
2040 LayoutUnit leftWidth = edges[BSLeft].usedWidth() / 2; local
[all...]
H A DRenderTableCell.cpp1131 int leftWidth = leftVal.width(); local
1134 IntRect borderRect = pixelSnappedIntRect(paintRect.x() - leftWidth / 2,
1136 paintRect.width() + leftWidth / 2 + (rightWidth + 1) / 2,
1154 borders.addBorder(leftVal, BSLeft, renderLeft, borderRect.x(), borderRect.y(), borderRect.x() + leftWidth, borderRect.maxY(), leftStyle);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.cpp1009 int leftWidth = (!horizontal || includeLogicalLeftEdge) ? borderLeftWidth() : 0; local
1014 return getRoundedInnerBorderFor(borderRect, topWidth, bottomWidth, leftWidth, rightWidth, includeLogicalLeftEdge, includeLogicalRightEdge);
1018 int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const
1020 LayoutRect innerRect(borderRect.x() + leftWidth,
1022 borderRect.width() - leftWidth - rightWidth,
1029 radii.shrink(topWidth, bottomWidth, leftWidth, rightWidth);
1017 getRoundedInnerBorderFor(const LayoutRect& borderRect, int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const argument
H A DRenderStyle.h1068 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/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 837 milliseconds