HomeSort by relevance Sort by last modified time
    Searched defs:newHeight (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterDownsample.java 69 int newHeight = orig_h * p / 100;
72 if (newWidth <= 0 || newHeight <= 0 || newWidth >= w || newHeight >= h) {
75 Bitmap ret = Bitmap.createScaledBitmap(bitmap, newWidth, newHeight, true);
  /frameworks/base/tests/ImfTest/tests/src/com/android/imftest/samples/
ImfBaseTestCase.java 125 int newHeight;
133 newHeight = rootView.getHeight();
135 while (Math.abs(newHeight - origHeight) < IME_MIN_HEIGHT && SystemClock.uptimeMillis() < timeoutTime) {
136 newHeight = rootView.getHeight();
139 return (Math.abs(origHeight - newHeight) >= IME_MIN_HEIGHT);
  /packages/apps/Dialer/java/com/android/incallui/
ContactsAsyncHelper.java 196 int newHeight = (int) (orgHeight / ratio);
199 if (newWidth <= 0 || newHeight <= 0) {
208 return Bitmap.createScaledBitmap(orgBitmap, newWidth, newHeight, true);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
TransformationUtils.java 269 final int newHeight = Math.round(newRect.height());
271 Bitmap result = pool.get(newWidth, newHeight, toOrient.getConfig());
273 result = Bitmap.createBitmap(newWidth, newHeight, toOrient.getConfig());
  /frameworks/av/media/libstagefright/omx/
SoftVideoDecoderOMXComponent.cpp 500 uint32_t newHeight = video_def->nFrameHeight;
504 if (newWidth > 32768 || newHeight > 32768
509 if (newWidth != oldWidth || newHeight != oldHeight) {
514 mHeight = newHeight;
524 def->format.video.nFrameHeight = newHeight;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PhotoProcessor.java 226 final int newHeight = (int) (cropHeight * scaleFactor);
227 if (newWidth <= 0 || newHeight <= 0) {
230 final Bitmap scaledBitmap = Bitmap.createBitmap(newWidth, newHeight,
  /packages/services/Telecomm/src/com/android/server/telecom/
ContactsAsyncHelper.java 170 int newHeight = (int) (orgHeight / ratio);
173 if (newWidth <= 0 || newHeight <= 0) {
180 return Bitmap.createScaledBitmap(orgBitmap, newWidth, newHeight, true);
  /external/deqp/framework/egl/
egluGLContextFactory.cpp 558 int newHeight = 0;
561 egl.querySurface(m_eglDisplay, m_eglSurface, EGL_HEIGHT, &newHeight);
565 newHeight != m_glRenderTarget.getHeight())
568 m_glRenderTarget.getWidth(), m_glRenderTarget.getHeight(), newWidth, newHeight);
570 m_glRenderTarget = tcu::RenderTarget(newWidth, newHeight,
  /frameworks/base/core/java/android/app/
WallpaperColors.java 412 int newHeight = (int) (height * scale);
418 if (newHeight == 0) {
419 newHeight = 1;
422 return new Size(newWidth, newHeight);
  /frameworks/base/core/java/android/content/res/
CompatibilityInfo.java 508 int newWidth, newHeight;
511 newHeight = newLongSize;
514 newHeight = newShortSize;
518 float sh = height/(float)newHeight;
526 outDm.heightPixels = newHeight;
  /frameworks/base/core/java/com/android/internal/widget/
MessagingLinearLayout.java 112 int newHeight = Math.max(totalHeight, totalHeight + childHeight + lp.topMargin +
122 if (newHeight <= targetHeight && !isTooSmall) {
123 totalHeight = newHeight;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
BoundedRect.java 304 float newHeight = Math.abs(fixed_y - p[1]);
305 newWidth = Math.max(newWidth, aspRatio * newHeight);
  /external/deqp/modules/egl/
teglResizeTests.cpp 278 const int newHeight = newSurface.getHeight();
280 const int minHeight = de::min(oldHeight, newHeight);
290 const int newY = yCorner == 0 ? 0 : newHeight - minHeight;
  /frameworks/base/core/jni/
android_app_NativeActivity.cpp 586 int32_t newHeight = getWindowProp(code->nativeWindow.get(),
589 || newHeight != code->lastWindowHeight) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
HardwareUiLayout.java 136 int newHeight = mChild.getMeasuredHeight();
137 if (newHeight != mOldHeight) {
138 animateChild(mOldHeight, newHeight);
319 private void animateChild(int oldHeight, int newHeight) {
334 int toTop = fromTop - ((newHeight - oldHeight) / 2);
335 int toBottom = fromBottom + ((newHeight - oldHeight) / 2);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
ExpandableViewState.java 149 int newHeight = this.height;
152 if (height != newHeight) {
153 expandableView.setActualHeight(newHeight, false /* notifyListeners */);
StackScrollAlgorithm.java 153 float newHeight = state.height;
154 float newNotificationEnd = newYTranslation + newHeight;
  /frameworks/native/libs/gui/
GLConsumer.cpp 879 uint32_t newHeight = static_cast<uint32_t>(crop.height());
881 if (newWidth * bufferHeight > newHeight * bufferWidth) {
882 newWidth = newHeight * bufferWidth / bufferHeight;
884 } else if (newWidth * bufferHeight < newHeight * bufferWidth) {
885 newHeight = newWidth * bufferHeight / bufferWidth;
886 ALOGV("too tall: newHeight = %d", newHeight);
900 } else if (newHeight < currentHeight) {
901 uint32_t dh = currentHeight - newHeight;
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ScrollViewTest.java     [all...]
  /external/deqp/modules/gles3/functional/
es3fFboRenderTest.cpp     [all...]
  /external/mesa3d/src/amd/addrlib/r800/
siaddrlib.cpp 811 UINT_32 newHeight;
833 &newHeight,
854 &newHeight,
864 const UINT_32 heightInTile = newHeight / MicroTileWidth;
969 UINT_32 newHeight;
993 &newHeight,
    [all...]
  /external/mesa3d/src/mesa/main/
mipmap.c     [all...]
texcompress_fxt1.c     [all...]
  /frameworks/base/core/java/android/widget/
ImageView.java     [all...]
  /frameworks/base/media/java/android/media/session/
MediaSessionLegacyHelper.java 303 int newHeight = Math.round(scale * height);
308 Bitmap outBitmap = Bitmap.createBitmap(newWidth, newHeight, newConfig);

Completed in 611 milliseconds

1 2 3 4