HomeSort by relevance Sort by last modified time
    Searched refs:getHeight (Results 1 - 25 of 2714) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/inputmethods/LatinIME/tools/dicttool/compat/com/android/inputmethod/keyboard/
Key.java 24 public final int getHeight() { return 0; }
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/generics/
Nest.java 21 public int getHeight() {
  /frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
ShadowOverlayContainerTest.java 43 assertTrue(textView.getHeight() > 0);
44 assertTrue(textView.getHeight() < 500);
46 assertEquals(container.getHeight(), textView.getHeight());
54 assertTrue(textView.getHeight() == 123);
56 assertEquals(container.getHeight(), textView.getHeight());
72 assertTrue(textView.getHeight() > 0);
73 assertTrue(textView.getHeight() < 500);
75 assertEquals(container.getHeight(), textView.getHeight())
    [all...]
  /developers/build/prebuilts/androidtv/visual-game-controller/src/com/example/android/visualgamecontroller/
ControllerView.java 219 int controllerBitmapHeight = mControllerBitmap.getHeight();
244 (int) (mAxisBitmap.getHeight() * mDisplayRatio),
248 (int) (mBlueLedBitmap.getHeight() * mDisplayRatio),
252 (int) (mRightDirectionalBitmap.getHeight() * mDisplayRatio),
256 (int) (mTopDirectionalBitmap.getHeight() * mDisplayRatio),
260 (int) (mLeftDirectionalBitmap.getHeight() * mDisplayRatio),
264 (int) (mBottomDirectionalBitmap.getHeight() * mDisplayRatio),
268 (int) (mRightPaddleBitmap.getHeight() * mDisplayRatio),
272 (int) (mLeftPaddleBitmap.getHeight() * mDisplayRatio),
276 (int) (mGradientBitmap.getHeight() * mDisplayRatio)
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
CodecImage.java 107 public abstract int getHeight();
130 return new Rect(0, 0, getWidth(), getHeight());
145 cropRect.intersect(0, 0, getWidth(), getHeight());
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
Texture.java 40 public int getHeight();
  /packages/apps/Camera2/src/com/android/camera/burst/
BurstMediaItem.java 35 public int getHeight();
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
Texture.java 40 public int getHeight();
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/
Texture.java 40 public int getHeight();
  /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
LwjglCursor.java 37 if ((pixmap.getHeight() & (pixmap.getHeight() - 1)) != 0) {
38 throw new GdxRuntimeException("Cursor image pixmap height of " + pixmap.getHeight()
47 if (yHotspot < 0 || yHotspot >= pixmap.getHeight()) {
49 + pixmap.getHeight() + ").");
59 for (int y = 0; y < pixmap.getHeight(); ++y) {
62 pixelsARGBflipped[x + ((pixmap.getHeight() - 1 - y) * pixmap.getWidth())] = ((pixel >> 8) & 0x00FFFFFF)
67 for (int y = 0; y < pixmap.getHeight(); ++y) {
70 pixelsARGBflipped[x + ((pixmap.getHeight() - 1 - y) * pixmap.getWidth())] = ((pixel & 0xFF) << 16)
76 lwjglCursor = new org.lwjgl.input.Cursor(pixmap.getWidth(), pixmap.getHeight(), xHotspot, pixmap.getHeight() - yHotspo
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/arrowscroll/
MultiPageTextWithPaddingTest.java 51 mTextView.getHeight() > mScrollView.getHeight());
58 (mTextView.getHeight() - mScrollView.getHeight()))
66 getActivity().getLinearLayout().getHeight()
67 - (mScrollView.getHeight() - mScrollView.getPaddingTop() - mScrollView
  /packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/
ForwardingImageProxy.java 64 * @see {@link android.media.Image#getHeight}
67 public int getHeight() {
68 return mImpl.getHeight();
108 .add("height", getHeight())
123 otherImage.getHeight() == getHeight() &&
129 return Objects.hashCode(getFormat(), getWidth(), getHeight(), getTimestamp());
  /cts/tests/camera/src/android/hardware/camera2/cts/rs/
BitmapUtils.java 68 if (a.getWidth() != b.getWidth() || a.getHeight() != b.getHeight()) {
70 a.getWidth() + "x" + a.getHeight() + ", b=" + b.getWidth() + "x" +
71 b.getHeight());
74 int[] aPixels = new int[a.getHeight() * a.getWidth()];
77 a.getHeight());
79 b.getHeight());
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
SpriteBatchRotationTest.java 40 spriteBatch.draw(texture, 16, 10, 16, 16, 32, 32, 1, 1, 0, 0, 0, texture.getWidth(), texture.getHeight(), false, false);
41 spriteBatch.draw(texture, 64, 10, 32, 32, 0, 0, texture.getWidth(), texture.getHeight(), false, false);
42 spriteBatch.draw(texture, 112, 10, 0, 0, texture.getWidth(), texture.getHeight());
44 spriteBatch.draw(texture, 16, 58, 16, 16, 32, 32, 1, 1, angle, 0, 0, texture.getWidth(), texture.getHeight(), false, false);
45 spriteBatch.draw(texture, 64, 58, 16, 16, 32, 32, scale, scale, 0, 0, 0, texture.getWidth(), texture.getHeight(), false,
47 spriteBatch.draw(texture, 112, 58, 16, 16, 32, 32, scale, scale, angle, 0, 0, texture.getWidth(), texture.getHeight(),
49 spriteBatch.draw(texture, 160, 58, 0, 0, 32, 32, scale, scale, angle, 0, 0, texture.getWidth(), texture.getHeight(), false,
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/
GwtCursor.java 43 if ((pixmap.getHeight() & (pixmap.getHeight() - 1)) != 0) {
44 throw new GdxRuntimeException("Cursor image pixmap height of " + pixmap.getHeight()
53 if (yHotspot < 0 || yHotspot >= pixmap.getHeight()) {
55 + pixmap.getHeight() + ").");
  /packages/apps/Gallery/src/com/android/camera/
RotateBitmap.java 61 int cy = mBitmap.getHeight() / 2;
64 matrix.postTranslate(getWidth() / 2, getHeight() / 2);
73 public int getHeight() {
77 return mBitmap.getHeight();
83 return mBitmap.getHeight();
  /external/universal-tween-engine/java/applets/src/aurelienribon/utils/swing/
ImagePanel.java 87 gg.fillRect(0, 0, getWidth(), getHeight());
90 TexturePaint paint = new TexturePaint(background, new Rectangle(0, 0, background.getWidth(), background.getHeight()));
92 gg.fillRect(0, 0, getWidth(), getHeight());
97 float panelRatio = (float)getWidth() / (float)getHeight();
98 float imgRatio = (float)image.getWidth() / (float)image.getHeight();
103 gg.drawImage(image, 0, (int)(getHeight()/2 - th/2), (int) tw, (int) th, null);
105 float tw = (float)getHeight() * imgRatio;
106 float th = (float)getHeight();
111 float panelRatio = (float)getWidth() / (float)getHeight();
118 int ty = getHeight()/2 - th/2
    [all...]
  /frameworks/base/core/java/android/view/
ViewOutlineProvider.java 40 outline.setRect(0, 0, view.getWidth(), view.getHeight());
55 outline.setRect(0, 0, view.getWidth(), view.getHeight());
71 view.getHeight() - view.getPaddingBottom());
  /frameworks/base/media/java/android/media/
Image.java 170 public abstract int getHeight();
224 return new Rect(0, 0, getWidth(), getHeight());
241 if (!cropRect.intersect(0, 0, getWidth(), getHeight())) {
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
SizeToAction.java 27 startHeight = target.getHeight();
47 public float getHeight () {
  /frameworks/rs/java/tests/Refocus/src/com/android/rs/test/
DepthOfFieldOptions.java 26 this.blurInfinity = (float)rgbz.getBlurInfinity() * Math.max(rgbz.getHeight(), rgbz.getWidth());
31 this.focalDepth = rgbz.getDepth((int)(x * rgbz.getWidth()), (int)(y * rgbz.getHeight()));
  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
ListItemObject.java 44 public int getHeight() {
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
CubemapData.java 34 public int getHeight ();
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
HdpiUtils.java 34 || Gdx.graphics.getHeight() != Gdx.graphics.getBackBufferHeight()) {
45 || Gdx.graphics.getHeight() != Gdx.graphics.getBackBufferHeight()) {
65 return (int)(backBufferY * Gdx.graphics.getHeight() / (float)Gdx.graphics.getBackBufferHeight());
81 return (int)(logicalY * Gdx.graphics.getBackBufferHeight() / (float)Gdx.graphics.getHeight());
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/shadows/utils/
ShadowMapAllocator.java 47 public int getHeight ();

Completed in 1555 milliseconds

1 2 3 4 5 6 7 8 91011>>