HomeSort by relevance Sort by last modified time
    Searched refs:getHeight (Results 251 - 275 of 3194) sorted by null

<<11121314151617181920>>

  /cts/tests/tests/view/src/android/view/cts/
TextureViewSnapshotTestActivity.java 87 Assert.assertEquals(mTexView.getHeight(), bitmap.getHeight());
  /developers/build/prebuilts/gradle/SwipeRefreshMultipleViews/Application/tests/src/com/example/android/swiperefreshmultipleviews/tests/
SampleTests.java 79 Math.round(mSwipeRefreshLayout.getHeight() * 0.4f));
102 Math.round(mSwipeRefreshLayout.getHeight() * 0.4f));
  /developers/samples/android/ui/views/SwipeRefreshLayout/SwipeRefreshMultipleViews/Application/tests/src/com/example/android/swiperefreshmultipleviews/tests/
SampleTests.java 79 Math.round(mSwipeRefreshLayout.getHeight() * 0.4f));
102 Math.round(mSwipeRefreshLayout.getHeight() * 0.4f));
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/utils/
BitmapHelper.java 35 ((double) maxWidth)/src.getWidth(), ((double) maxHeight)/src.getHeight());
37 (int) (src.getWidth() * scaleFactor), (int) (src.getHeight() * scaleFactor), false);
  /external/deqp/framework/common/
tcuBilinearImageCompare.cpp 91 deUint32 y1 = y0+1; //de::min(y0+1, (deUint32)(access.getHeight()-1));
94 DE_ASSERT(y1 < (deUint32)access.getHeight());
125 const deUint32 y2 = (deUint32)de::min(y+1, reference.getHeight()-1);
180 !de::inBounds(v, 0, (reference.getHeight()-1)<<NUM_SUBPIXEL_BITS))
201 for (int y = 0; y < reference.getHeight(); y++)
222 reference.getHeight() == result.getHeight() &&
226 reference.getHeight() == errorMask.getHeight() &&
  /external/deqp/framework/opengl/simplereference/
sglrContext.cpp 38 int height = src.getHeight();
73 int height = src.getHeight();
  /external/deqp/modules/internal/
ditImageIOTests.cpp 57 m_testCtx.getLog() << TestLog::Message << "Loaded " << texture.getWidth() << "x" << texture.getHeight() << "x" << texture.getDepth() << " image with format " << texture.getFormat() << TestLog::EndMessage;
61 TCU_CHECK(texture.getAccess().getSlicePitch() == texture.getAccess().getRowPitch()*texture.getAccess().getHeight());
  /external/proguard/src/proguard/gui/splash/
BufferedSprite.java 117 bufferGraphics.fillRect(0, 0, bufferImage.getWidth(null), bufferImage.getHeight(null));
123 bufferGraphics.fillRect(0, 0, bufferImage.getWidth(null), bufferImage.getHeight(null));
  /frameworks/base/core/java/android/app/
WallpaperColors.java 126 Bitmap bitmap = Bitmap.createBitmap(optimalSize.getWidth(), optimalSize.getHeight(),
129 drawable.setBounds(0, 0, bitmap.getWidth(), bitmap.getHeight());
151 final int bitmapArea = bitmap.getWidth() * bitmap.getHeight();
155 Size optimalSize = calculateOptimalSize(bitmap.getWidth(), bitmap.getHeight());
157 optimalSize.getHeight(), true /* filter */);
170 final float minColorArea = bitmap.getWidth() * bitmap.getHeight() * MIN_COLOR_OCCURRENCE;
369 int[] pixels = new int[source.getWidth() * source.getHeight()];
374 source.getWidth(), source.getHeight());
  /frameworks/base/core/java/android/transition/
CircularPropagation.java 85 epicenterY = Math.round(loc[1] + (sceneRoot.getHeight() / 2)
89 double maxDistance = distance(0, 0, sceneRoot.getWidth(), sceneRoot.getHeight());
  /frameworks/base/core/tests/coretests/src/android/graphics/
ColorSpaceRendererTest.java 38 assertEquals(128, b.getHeight());
44 assertEquals(768, b.getHeight());
  /frameworks/base/libs/hwui/tests/common/scenes/
MagnifierAnimation.cpp 51 props.mutableOutline().setRoundRect(0, 0, props.getWidth(), props.getHeight(),
56 (float)props.getHeight(), nullptr);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
FakeShadowView.java 64 outline.setRect(0, 0, getWidth(), mFakeShadow.getHeight());
82 mFakeShadow.setTranslationY(shadowYEnd - mFakeShadow.getHeight());
  /frameworks/base/rs/java/android/renderscript/
RSTextureView.java 155 mRS.setSurfaceTexture(mSurfaceTexture, getWidth(), getHeight());
180 mRS.setSurfaceTexture(mSurfaceTexture, getWidth(), getHeight());
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
BitmapsRectActivity.java 57 final float half = mBitmap1.getHeight() / 2.0f;
72 canvas.translate(0.0f, mBitmap1.getHeight());
ClipOutlineActivity.java 72 int h = getHeight() / 2;
75 mRect.offset((int) (mClipPosition * w), getHeight() / 4);
  /frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/media/utils/
BitmapHelper.java 37 ((double) maxWidth)/src.getWidth(), ((double) maxHeight)/src.getHeight());
39 (int) (src.getWidth() * scaleFactor), (int) (src.getHeight() * scaleFactor), false);
  /frameworks/support/transition/src/main/java/androidx/transition/
CircularPropagation.java 85 epicenterY = Math.round(loc[1] + (sceneRoot.getHeight() / 2)
89 float maxDistance = distance(0, 0, sceneRoot.getWidth(), sceneRoot.getHeight());
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
GridLayoutManagerCachedBordersTest.java 59 final int expectedSizeSum = vertical ? recyclerView.getWidth() : recyclerView.getHeight();
66 childrenSizeSum += vertical ? child.getWidth() : child.getHeight();
  /packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
BitmapDownloader.java 262 key.getCacheKey(), key.getBitmapConfig(), bitmap.getHeight());
268 if (currentBitmap.getWidth() >= bitmap.getWidth() && currentBitmap.getHeight()
269 >= bitmap.getHeight()) {
281 if (key.getHeight() != BitmapWorkerOptions.MAX_IMAGE_DIMENSION_PX) {
284 getBucketKey(key.getCacheKey(), key.getBitmapConfig(), key.getHeight());
293 if (bitmap.getHeight() >= key.getHeight()) {
303 if (SIZE_BUCKET[i] >= key.getHeight()) {
  /packages/apps/Contacts/src/com/android/contacts/util/
ViewUtil.java 66 outline.setOval(0, 0, view.getWidth(), view.getHeight());
80 outline.setRect(0, 0, view.getWidth(), view.getHeight());
  /packages/apps/Dialer/java/com/android/dialer/util/
DrawableConverter.java 74 bitmap.getHeight());
77 drawable.setBounds(0, 0, canvas.getWidth(), canvas.getHeight());
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
IconUtilities.java 64 int h = bitmap.getHeight();
66 int fxh = fxBitmap.getHeight();
ImageFilterFx.java 65 int h = bitmap.getHeight();
88 int fxh = mFxBitmap.getHeight();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
Buffer.java 53 && mBitmap.getHeight() == bitmap.getHeight()) {

Completed in 2430 milliseconds

<<11121314151617181920>>