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/core/java/com/android/internal/widget/
MessagingLinearLayout.java 136 int newHeight = Math.max(totalHeight, totalHeight + childHeight + lp.topMargin +
145 if (newHeight <= targetHeight && !measuredTooSmall) {
146 totalHeight = newHeight;
  /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);
  /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 487 uint32_t newHeight = video_def->nFrameHeight;
491 if (newWidth > 32768 || newHeight > 32768
496 if (newWidth != oldWidth || newHeight != oldHeight) {
501 mHeight = newHeight;
511 def->format.video.nFrameHeight = newHeight;
  /packages/apps/Dialer/java/com/android/incallui/
ContactsAsyncHelper.java 253 int newHeight = (int) (orgHeight / ratio);
256 if (newWidth <= 0 || newHeight <= 0) {
263 return Bitmap.createScaledBitmap(orgBitmap, newWidth, newHeight, true);
  /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 526 int newHeight = 0;
529 egl.querySurface(m_eglDisplay, m_eglSurface, EGL_HEIGHT, &newHeight);
533 newHeight != m_glRenderTarget.getHeight())
536 m_glRenderTarget.getWidth(), m_glRenderTarget.getHeight(), newWidth, newHeight);
538 m_glRenderTarget = tcu::RenderTarget(newWidth, newHeight,
  /frameworks/base/core/java/android/app/
WallpaperColors.java 405 int newHeight = (int) (height * scale);
411 if (newHeight == 0) {
412 newHeight = 1;
415 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;
  /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);
  /packages/apps/Launcher3/src/com/android/launcher3/notification/
NotificationFooterLayout.java 203 final int newHeight = getResources().getDimensionPixelSize(
205 Animator collapseFooter = popup.reduceNotificationViewHeight(getHeight() - newHeight,
213 getLayoutParams().height = newHeight;
  /packages/apps/Launcher3/src/com/android/launcher3/shortcuts/
ShortcutsItemView.java 186 final int newHeight = getResources().getDimensionPixelSize(R.dimen.bg_popup_item_height);
187 mHiddenShortcutsHeight = (newHeight - oldHeight) * mShortcutsLayout.getChildCount();
231 final int newHeight = getResources().getDimensionPixelSize(R.dimen.bg_popup_item_height);
234 view.getLayoutParams().height = newHeight;
266 int heightDiff = newHeight - oldHeight;
  /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 578 int32_t newHeight = getWindowProp(code->nativeWindow.get(),
581 || newHeight != code->lastWindowHeight) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
HardwareUiLayout.java 135 int newHeight = mChild.getMeasuredHeight();
136 if (newHeight != mOldHeight) {
137 animateChild(mOldHeight, newHeight);
325 private void animateChild(int oldHeight, int newHeight) {
340 int toTop = fromTop - ((newHeight - oldHeight) / 2);
341 int toBottom = fromBottom + ((newHeight - oldHeight) / 2);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
ExpandableViewState.java 142 int newHeight = this.height;
145 if (height != newHeight) {
146 expandableView.setActualHeight(newHeight, false /* notifyListeners */);
StackScrollAlgorithm.java 143 float newHeight = state.height;
144 float newNotificationEnd = newYTranslation + newHeight;
  /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/media/java/android/media/session/
MediaSessionLegacyHelper.java 303 int newHeight = Math.round(scale * height);
308 Bitmap outBitmap = Bitmap.createBitmap(newWidth, newHeight, newConfig);

Completed in 688 milliseconds

1 2 3 4