HomeSort by relevance Sort by last modified time
    Searched defs:leftWidth (Results 1 - 23 of 23) sorted by null

  /external/smali/util/src/main/java/org/jf/util/
TwoColumnOutput.java 50 private final int leftWidth;
60 * @param leftWidth > 0; width of the left column, in characters
64 public TwoColumnOutput(@Nonnull Writer out, int leftWidth, int rightWidth,
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,
91 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
TwoColumnOutput.java 35 private final int leftWidth;
84 * @param leftWidth {@code > 0;} width of the left column, in characters
88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth,
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, int rightWidth
    [all...]
ByteArrayAnnotatedOutput.java 412 int leftWidth = 8 + (hexCols * 2) + (hexCols / 2);
414 return annotationWidth - leftWidth;
  /dalvik/dx/src/com/android/dx/util/
TwoColumnOutput.java 35 private final int leftWidth;
84 * @param leftWidth {@code > 0;} width of the left column, in characters
88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth,
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, int rightWidth
    [all...]
ByteArrayAnnotatedOutput.java 408 int leftWidth = 8 + (hexCols * 2) + (hexCols / 2);
410 return annotationWidth - leftWidth;
  /external/dexmaker/src/dx/java/com/android/dx/util/
TwoColumnOutput.java 35 private final int leftWidth;
84 * @param leftWidth {@code > 0;} width of the left column, in characters
88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth,
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, int rightWidth
    [all...]
ByteArrayAnnotatedOutput.java 405 int leftWidth = 8 + (hexCols * 2) + (hexCols / 2);
407 return annotationWidth - leftWidth;
  /external/deqp/modules/gles2/functional/
es2fTextureWrapTests.cpp 168 int leftWidth = viewport.width / 2;
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),
es2fVertexTextureTests.cpp 565 const int leftWidth = viewportWidth / 2;
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;
884 const int rightWidth = viewportWidth - leftWidth;
911 const int leftCellWidth = isRightmostCell ? leftWidth - cellOffsetX : defCellWidth;
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
AnnotatedBytes.java 275 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/accuracy/
es2aTextureFilteringTests.cpp 211 int leftWidth = viewport.width / 2;
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, viewport.y+bottomHeight, rightWidth, topHeight)
    [all...]
  /external/deqp/modules/gles3/accuracy/
es3aTextureFilteringTests.cpp 202 int leftWidth = viewport.width / 2;
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, viewport.y+bottomHeight, rightWidth, topHeight)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableCell.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.cpp     [all...]
  /external/deqp/modules/gles3/functional/
es3fVertexTextureTests.cpp 666 const int leftWidth = viewportWidth / 2;
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)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/paint/
BoxPainter.cpp     [all...]
  /prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.0/
dexmaker-1.0.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 
  /prebuilts/devtools/tools/lib/
jcommon-1.0.12.jar 
  /prebuilts/tools/common/jfreechart/
jcommon-1.0.12.jar 
  /prebuilts/tools/common/m2/repository/jfree/jcommon/1.0.12/
jcommon-1.0.12.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 1365 milliseconds