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

12 3 4 5 6 7 8 91011>>

  /external/pdfium/xfa/src/fxbarcode/
BC_Dimension.h 16 int32_t getHeight();
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
AssetsAtlasActivity.java 56 final Rect src = new Rect(0, 0, mBitmap.getWidth() / 2, mBitmap.getHeight() / 2);
57 final Rect dst = new Rect(0, 0, mBitmap.getWidth(), mBitmap.getHeight());
60 canvas.translate(0.0f, mBitmap.getHeight());
62 canvas.translate(0.0f, mBitmap.getHeight());
Alpha8BitmapActivity.java 50 mBitmap1 = Bitmap.createBitmap(texture.getWidth(), texture.getHeight(),
60 final float height = texture.getHeight() / 3.0f;
83 matrix.postTranslate(0.0f, mBitmap1.getHeight());
86 Rect src = new Rect(0, 0, mBitmap1.getWidth() / 2, mBitmap1.getHeight() / 2);
87 Rect dst = new Rect(0, mBitmap1.getHeight() * 3, mBitmap1.getWidth(),
88 mBitmap1.getHeight() * 4);
91 canvas.translate(0.0f, mBitmap1.getHeight() * 4);
BigGradientActivity.java 44 p.setShader(new LinearGradient(0.0f, 0.0f, 0.0f, getHeight(), 0xff000000,
47 canvas.drawRect(0.0f, 0.0f, getWidth(), getHeight(), p);
  /frameworks/ex/framesequence/jni/
FrameSequence.cpp 28 !frameSequence->getWidth() || !frameSequence->getHeight()) {
FrameSequence.h 48 virtual int getHeight() const = 0;
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
ScreenNail.java 24 public int getHeight();
ProgressSpinner.java 42 mHeight = Math.max(mOuter.getHeight(), mInner.getHeight());
49 public int getHeight() {
75 mOuter.draw(canvas, -mOuter.getWidth() / 2, -mOuter.getHeight() / 2);
77 mInner.draw(canvas, -mInner.getWidth() / 2, -mInner.getHeight() / 2);
BitmapScreenNail.java 38 public int getHeight() {
39 return mBitmapTexture.getHeight();
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
FileTextureArrayData.java 59 height = data.getHeight();
62 if (width != data.getWidth() || height != data.getHeight()) {
79 Pixmap temp = new Pixmap(pixmap.getWidth(), pixmap.getHeight(), texData.getFormat());
82 temp.drawPixmap(pixmap, 0, 0, 0, 0, pixmap.getWidth(), pixmap.getHeight());
90 Gdx.gl30.glTexSubImage3D(GL30.GL_TEXTURE_2D_ARRAY, 0, 0, 0, i, pixmap.getWidth(), pixmap.getHeight(), 1, pixmap.getGLInternalFormat(), pixmap.getGLType(), pixmap.getPixels());
102 public int getHeight () {
103 return textureDatas[0].getHeight();
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/arrowscroll/
ButtonsWithTallTextViewInBetweenTest.java 69 mTopButton.getHeight() <
95 final int screenBottom = mScrollView.getScrollY() + mScrollView.getHeight();
106 getActivity().getLinearLayout().getHeight() - mScrollView.getHeight(),
121 final int maxScroll = getActivity().getLinearLayout().getHeight()
122 - mScrollView.getHeight();
135 getTopWithinScrollView(mBottomButton) > mScrollView.getScrollY() + mScrollView.getHeight());
ShortButtonsTest.java 47 getActivity().getButtonAt(0).getHeight()
48 < mScrollView.getHeight());
51 getActivity().getLinearLayout().getHeight()
52 > getActivity().getScrollView().getHeight());
68 getActivity().getLinearLayout().getHeight() - mScrollView.getHeight(),
106 && mTempRect.top <= (mScrollView.getScrollY() + mScrollView.getHeight());
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
CameraPreviewView.java 44 float centerY = canvas.getHeight() / 2.0f;
48 canvas.drawLine(centerX, 0, centerX, canvas.getHeight(), mPaint);
53 int horizLines = canvas.getHeight() / 2 / GRID_WIDTH;
62 canvas.drawLine(x, 0, x, canvas.getHeight(), mPaint);
64 canvas.drawLine(x, 0, x, canvas.getHeight(), mPaint);
  /cts/tests/tests/graphics/src/android/graphics/cts/
NinePatchTest.java 80 Bitmap bitmap = Bitmap.createBitmap(expected.getWidth(), expected.getHeight(),
83 RectF rectf = new RectF(0, 0, c.getWidth(), c.getHeight());
88 bitmap = Bitmap.createBitmap(expected.getWidth(), expected.getHeight(),
91 Rect rect = new Rect(0, 0, c.getWidth(), c.getHeight());
95 bitmap = Bitmap.createBitmap(expected.getWidth(), expected.getHeight(),
98 rect = new Rect(0, 0, c.getWidth(), c.getHeight());
105 bitmap = Bitmap.createBitmap(expected.getWidth(), expected.getHeight(),
108 rectf = new RectF(0, 0, c.getWidth(), c.getHeight());
116 assertEquals(expected.getHeight(), bitmap.getHeight());
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
RequestRectangleVisible.java 50 int screenHeight = getWindowManager().getDefaultDisplay().getHeight();
61 rect.set(0, 0, childToMakeVisible.getLeft(), childToMakeVisible.getHeight());
69 rect.set(0, 0, topBlob.getWidth(), topBlob.getHeight());
77 rect.set(0, 0, childToMakeVisible.getLeft(), childToMakeVisible.getHeight());
85 rect.set(0, 0, bottomBlob.getWidth(), bottomBlob.getHeight());
ButtonAboveTallInternalSelectionViewTest.java 43 getActivity().getIsv().getHeight() > getActivity().getScrollView().getHeight());
  /external/deqp/framework/referencerenderer/
rrMultisamplePixelBufferAccess.cpp 45 tcu::IVec3(m_access.getHeight(), m_access.getDepth(), 1),
55 tcu::IVec3(1, original.getWidth(), original.getHeight()),
85 tcu::IVec3(m_access.getHeight(), m_access.getDepth(), 1),
95 tcu::IVec3(1, original.getWidth(), original.getHeight()),
117 DE_ASSERT(dst.getWidth() == src.raw().getHeight());
118 DE_ASSERT(dst.getHeight() == src.raw().getDepth());
129 for (int y = 0; y < dst.getHeight(); y++)
143 DE_ASSERT(dst.getWidth() == src.raw().getHeight());
144 DE_ASSERT(dst.getHeight() == src.raw().getDepth());
158 for (int y = 0; y < dst.getHeight(); y++
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/
ImageBuffersForRenderScript.java 52 inputImage.getHeight(), Bitmap.Config.ARGB_8888);
57 imageHeightPadded = inputImage.getHeight() + 2 * margin;
DepthOfFieldOptions.java 45 this.focalDepth = rgbz.getDepth((int)(x * rgbz.getWidth()), (int)(y * rgbz.getHeight()));
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
LifeCycleTest.java 50 Gdx.app.log("Test", "app created: " + Gdx.graphics.getWidth() + "x" + Gdx.graphics.getHeight());
56 + Gdx.graphics.getHeight());
  /frameworks/base/core/java/android/hardware/camera2/params/
InputConfiguration.java 69 public int getHeight() {
101 otherInputConfig.getHeight() == mHeight &&
  /frameworks/base/core/java/android/hardware/camera2/utils/
SizeAreaComparator.java 47 long area = width * size.getHeight();
48 long area2 = width2 * size2.getHeight();
  /frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
LinearLayoutEditTextsTest.java 52 final int childHeight = mChild.getHeight();
53 final int containerHeight = mContainer.getHeight();
  /frameworks/rs/java/tests/Refocus/src/com/android/rs/test/
ImageBuffersForRenderScript.java 38 inputImage.getHeight(), Bitmap.Config.ARGB_8888);
43 imageHeightPadded = inputImage.getHeight() + 2 * margin;
  /frameworks/support/design/tests/src/android/support/design/widget/
AppBarWithAnchoredFabMarginsTest.java 59 assertEquals(appbarOnScreenXY[1] + mAppBar.getHeight(),
60 fabOnScreenXY[1] + fab.getHeight() / 2, 1);
86 assertEquals(appbarOnScreenXY[1] + mAppBar.getHeight(),
87 fabOnScreenXY[1] + fab.getHeight() / 2, 1);
111 assertEquals(appbarOnScreenXY[1] + mAppBar.getHeight(),
112 fabOnScreenXY[1] + fab.getHeight() / 2, 1);
137 assertEquals(appbarOnScreenXY[1] + mAppBar.getHeight(),
138 fabOnScreenXY[1] + fab.getHeight() / 2, 1);

Completed in 1467 milliseconds

12 3 4 5 6 7 8 91011>>