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

1 2

  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
EmbeddedContentContainer.java 39 protected void onSizeChanged(int newWidth, int newHeight, int oldWidth, int oldHeight) {
40 super.onSizeChanged(newWidth, newHeight, oldWidth, oldHeight);
  /packages/apps/Mms/src/com/android/mms/ui/
MessageListView.java 75 void onSizeChanged(int width, int height, int oldWidth, int oldHeight);
ComposeMessageActivity.java     [all...]
  /frameworks/base/libs/hwui/
Layer.cpp 123 uint32_t oldHeight = getHeight();
133 setSize(oldWidth, oldHeight);
143 setSize(oldWidth, oldHeight);
  /packages/apps/PhoneCommon/src/com/android/phone/common/animation/
AnimUtils.java 199 final int oldHeight = view.getHeight();
201 final int deltaHeight = newHeight - oldHeight;
209 view.getLayoutParams().height = (int) (value * deltaHeight + oldHeight);
  /development/samples/devbytes/animation/ListViewExpandingCells/src/com/example/android/expandingcells/
ExpandingListView.java 218 int oldHeight = oldBottom - oldTop;
219 int delta = newHeight - oldHeight;
410 int oldHeight = oldBottom - oldTop;
411 int deltaHeight = oldHeight - newHeight;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
WrapInRefactoring.java 290 String oldHeight = element.getAttributeNS(ANDROID_URI, ATTR_LAYOUT_HEIGHT);
295 if (VALUE_MATCH_PARENT.equals(oldHeight) || VALUE_FILL_PARENT.equals(oldHeight)) {
296 height = oldHeight;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderDeprecatedFlexibleBox.cpp 348 LayoutUnit oldHeight = 0;
416 oldHeight = height();
420 if (oldHeight != height())
629 setHeight(oldHeight);
637 LayoutUnit oldHeight = 0;
738 oldHeight = height();
740 if (oldHeight != height())
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
ButtonPropertyEditorPresentationImpl.java 188 Integer oldHeightObject = (Integer) control.getData("oldHeight");
190 control.setData("oldHeight", newHeight);
194 int oldHeight = oldHeightObject.intValue();
195 if (oldWidth == newWidth && oldHeight == newHeight) {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GeometryMathUtils.java 204 public static float scale(float oldWidth, float oldHeight, float newWidth, float newHeight) {
205 if (oldHeight == 0 || oldWidth == 0 || (oldWidth == newWidth && oldHeight == newHeight)) {
208 return Math.min(newWidth / oldWidth, newHeight / oldHeight);
  /frameworks/base/core/java/android/widget/
ImageView.java 391 final int oldHeight = mDrawableHeight;
399 if (oldWidth != mDrawableWidth || oldHeight != mDrawableHeight) {
427 final int oldHeight = mDrawableHeight;
431 if (oldWidth != mDrawableWidth || oldHeight != mDrawableHeight) {
449 final int oldHeight = mDrawableHeight;
453 if (oldWidth != mDrawableWidth || oldHeight != mDrawableHeight) {
    [all...]
LinearLayout.java 707 int oldHeight = Integer.MIN_VALUE;
714 oldHeight = 0;
726 if (oldHeight != Integer.MIN_VALUE) {
727 lp.height = oldHeight;
    [all...]
ListView.java     [all...]
  /external/deqp/modules/egl/
teglResizeTests.cpp 261 const int oldHeight = oldSurface.getHeight();
265 const int minHeight = de::min(oldHeight, newHeight);
274 const int oldY = yCorner == 0 ? 0 : oldHeight - minHeight;
  /external/chromium_org/ui/file_manager/video_player/js/
video_player.js 304 var oldHeight = window.outerHeight;
306 if (!oldWidth && !oldHeight) {
314 oldTop - (newHeight - oldHeight) / 2);
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
LinearLayoutCompat.java 641 int oldHeight = Integer.MIN_VALUE;
648 oldHeight = 0;
660 if (oldHeight != Integer.MIN_VALUE) {
661 lp.height = oldHeight;
    [all...]
  /frameworks/av/media/libstagefright/omx/
SoftVideoDecoderOMXComponent.cpp 363 uint32_t oldHeight = def->format.video.nFrameHeight;
366 if (newWidth != oldWidth || newHeight != oldHeight) {
  /frameworks/av/media/libstagefright/codecs/hevcdec/
SoftHEVC.cpp 468 const uint32_t oldHeight = mHeight;
470 if (mWidth != oldWidth || mHeight != oldHeight) {
  /external/chromium_org/third_party/webrtc/modules/video_render/mac/
video_render_nsopengl.mm 342 int oldHeight = _height;
348 int retVal = FrameSizeChange(oldWidth, oldHeight, oldNumberOfStreams);
video_render_agl.cc 345 int oldHeight = _height;
351 int retVal = FrameSizeChange(oldWidth, oldHeight, oldNumberOfStreams);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NotificationPanelView.java 215 final int oldHeight = oldBottom - oldTop;
216 if (height != oldHeight) {
    [all...]
  /hardware/ti/omap4xxx/camera/
CameraHal.cpp 346 int oldWidth, oldHeight;
347 mParameters.getPreviewSize(&oldWidth, &oldHeight);
398 if ( ( oldWidth != w ) || ( oldHeight != h ) ) {
    [all...]
  /external/chromium_org/chrome/renderer/resources/extensions/
web_view_events.js 142 fields: ['oldHeight', 'oldWidth', 'newHeight', 'newWidth']
  /frameworks/base/core/java/android/view/
View.java     [all...]
  /packages/apps/Camera/src/com/android/camera/
VideoModule.java     [all...]

Completed in 545 milliseconds

1 2