/external/smali/util/src/main/java/org/jf/util/ |
TwoColumnOutput.java | 52 private final int rightWidth; 61 * @param rightWidth > 0; width of the right column, in characters 64 public TwoColumnOutput(@Nonnull Writer out, int leftWidth, int rightWidth, 71 if (rightWidth < 1) { 72 throw new IllegalArgumentException("rightWidth < 1"); 77 this.rightWidth = rightWidth; 86 * @param rightWidth >= 1; width of the right column, in characters 89 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth, 91 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer) [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/ |
BaseDrawable.java | 26 private float leftWidth, rightWidth, topHeight, bottomHeight, minWidth, minHeight; 35 rightWidth = drawable.getRightWidth(); 54 return rightWidth; 57 public void setRightWidth (float rightWidth) { 58 this.rightWidth = rightWidth;
|
Drawable.java | 35 public void setRightWidth (float rightWidth);
|
/dalvik/dexgen/src/com/android/dexgen/util/ |
TwoColumnOutput.java | 85 * @param rightWidth {@code > 0;} width of the right column, in characters 88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, 98 if (rightWidth < 1) { 99 throw new IllegalArgumentException("rightWidth < 1"); 115 new IndentingWriter(rightWriter, rightWidth, spacer); 123 * @param rightWidth {@code >= 1;} width of the right column, in characters 126 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth, 128 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer);
|
/dalvik/dx/src/com/android/dx/util/ |
TwoColumnOutput.java | 85 * @param rightWidth {@code > 0;} width of the right column, in characters 88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, 98 if (rightWidth < 1) { 99 throw new IllegalArgumentException("rightWidth < 1"); 115 new IndentingWriter(rightWriter, rightWidth, spacer); 123 * @param rightWidth {@code >= 1;} width of the right column, in characters 126 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth, 128 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer);
|
/external/dexmaker/src/dx/java/com/android/dx/util/ |
TwoColumnOutput.java | 85 * @param rightWidth {@code > 0;} width of the right column, in characters 88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, 98 if (rightWidth < 1) { 99 throw new IllegalArgumentException("rightWidth < 1"); 115 new IndentingWriter(rightWriter, rightWidth, spacer); 123 * @param rightWidth {@code >= 1;} width of the right column, in characters 126 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth, 128 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer);
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/ |
NinePatch.java | 55 private float leftWidth, rightWidth, middleWidth, middleHeight, topHeight, bottomHeight;
165 float rightWidth = getRightWidth();
166 if ((patches[TOP_RIGHT] != null && patches[TOP_RIGHT].getRegionWidth() != rightWidth)
167 || (patches[MIDDLE_RIGHT] != null && patches[MIDDLE_RIGHT].getRegionWidth() != rightWidth)
168 || (patches[BOTTOM_RIGHT] != null && patches[BOTTOM_RIGHT].getRegionWidth() != rightWidth)) {
205 rightWidth = ninePatch.rightWidth;
237 rightWidth = Math.max(rightWidth, patches[BOTTOM_RIGHT].getRegionWidth());
252 rightWidth = Math.max(rightWidth, patches[MIDDLE_RIGHT].getRegionWidth()); [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/ |
AnnotatedBytes.java | 285 int rightWidth = getAnnotationWidth(); 286 int leftWidth = outputWidth - rightWidth - 1; 290 TwoColumnOutput twoc = new TwoColumnOutput(out, leftWidth, rightWidth, "|");
|
/external/deqp/modules/gles2/accuracy/ |
es2aTextureFilteringTests.cpp | 212 int rightWidth = viewport.width - leftWidth; 248 gl.viewport(viewport.x+leftWidth, viewport.y, rightWidth, bottomHeight); 253 sampleTexture(SurfaceAccess(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat(), leftWidth, 0, rightWidth, bottomHeight), 288 gl.viewport(viewport.x+leftWidth, viewport.y+bottomHeight, rightWidth, topHeight); 293 sampleTexture(SurfaceAccess(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat(), leftWidth, bottomHeight, rightWidth, topHeight), 535 int rightWidth = viewport.width - leftWidth; 571 SurfaceAccess(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat(), leftWidth, 0, rightWidth, bottomHeight), 574 viewport.x+leftWidth, viewport.y, rightWidth, bottomHeight, 602 SurfaceAccess(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat(), leftWidth, bottomHeight, rightWidth, topHeight), 605 viewport.x+leftWidth, viewport.y+bottomHeight, rightWidth, topHeight [all...] |
/external/deqp/modules/gles3/accuracy/ |
es3aTextureFilteringTests.cpp | 203 int rightWidth = viewport.width - leftWidth; 239 gl.viewport(viewport.x+leftWidth, viewport.y, rightWidth, bottomHeight); 244 sampleTexture(SurfaceAccess(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat(), leftWidth, 0, rightWidth, bottomHeight), 279 gl.viewport(viewport.x+leftWidth, viewport.y+bottomHeight, rightWidth, topHeight); 284 sampleTexture(SurfaceAccess(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat(), leftWidth, bottomHeight, rightWidth, topHeight), 545 int rightWidth = viewport.width - leftWidth; 581 SurfaceAccess(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat(), leftWidth, 0, rightWidth, bottomHeight), 584 viewport.x+leftWidth, viewport.y, rightWidth, bottomHeight, 612 SurfaceAccess(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat(), leftWidth, bottomHeight, rightWidth, topHeight), 615 viewport.x+leftWidth, viewport.y+bottomHeight, rightWidth, topHeight [all...] |
/external/deqp/modules/gles2/functional/ |
es2fTextureWrapTests.cpp | 169 int rightWidth = viewport.width - leftWidth; 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 | 566 const int rightWidth = viewportWidth - leftWidth; 594 Render(Rect(leftWidth, 0, rightWidth, bottomHeight), 0, texMagScale, texMagOffset), 596 Render(Rect(leftWidth, bottomHeight, rightWidth, topHeight), 1, texMagScale, texMagOffset) 884 const int rightWidth = viewportWidth - leftWidth; 912 const int rightCellWidth = isRightmostCell ? rightWidth - cellOffsetX : defCellWidth; [all...] |
/external/deqp/modules/gles3/functional/ |
es3fVertexTextureTests.cpp | 667 const int rightWidth = viewportWidth - leftWidth; 695 Render(Rect(leftWidth, 0, rightWidth, bottomHeight), 0, texMagScale, texMagOffset), 697 Render(Rect(leftWidth, bottomHeight, rightWidth, topHeight), 1, texMagScale, texMagOffset) [all...] |
/prebuilts/tools/common/m2/repository/org/smali/util/2.1.3/ |
util-2.1.3.jar | |
/prebuilts/go/darwin-x86/src/fmt/ |
format.go | 77 func (f *fmt) computePadding(width int) (padding []byte, leftWidth, rightWidth int) {
|
/prebuilts/go/linux-x86/src/fmt/ |
format.go | 77 func (f *fmt) computePadding(width int) (padding []byte, leftWidth, rightWidth int) {
|
/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 | |
/prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.0/ |
dexmaker-1.0.jar | |
/prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.2/ |
dexmaker-1.2.jar | |
/prebuilts/sdk/tools/lib/ |
dx.jar | |
/prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0/ |
builder-2.1.0.jar | |
/prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0-beta1/ |
builder-2.1.0-beta1.jar | |
/prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0-beta3/ |
builder-2.1.0-beta3.jar | |