Searched refs:leftWidth (Results 1 - 11 of 11) 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
544 int leftWidth = viewport.width / 2; local
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DAnnotatedBytes.java274 int leftWidth = 8 + (hexCols * 2) + (hexCols / 2);
276 return outputWidth - leftWidth;
286 int leftWidth = outputWidth - rightWidth - 1;
290 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/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 327 milliseconds