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

1 2 3

  /frameworks/av/media/libstagefright/omx/
SoftVideoDecoderOMXComponent.cpp 387 uint32_t oldWidth = def->format.video.nFrameWidth;
391 if (newWidth != oldWidth || newHeight != oldHeight) {
  /frameworks/base/libs/hwui/
Layer.cpp 134 uint32_t oldWidth = getWidth();
145 setSize(oldWidth, oldHeight);
155 setSize(oldWidth, oldHeight);
  /packages/apps/PhoneCommon/src/com/android/phone/common/animation/
AnimUtils.java 198 final int oldWidth = view.getWidth();
200 final int deltaWidth = newWidth - oldWidth;
208 view.getLayoutParams().width = (int) (value * deltaWidth + oldWidth);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
ButtonPropertyEditorPresentationImpl.java 187 Integer oldWidthObject = (Integer) control.getData("oldWidth");
189 control.setData("oldWidth", newWidth);
193 int oldWidth = oldWidthObject.intValue();
195 if (oldWidth == newWidth && oldHeight == newHeight) {
  /cts/tests/tests/text/src/android/text/cts/
LayoutTest.java 106 int oldWidth = layout.getWidth();
108 layout.increaseWidthTo(oldWidth);
109 assertEquals(oldWidth, layout.getWidth());
112 layout.increaseWidthTo(oldWidth - 1);
117 layout.increaseWidthTo(oldWidth + 1);
118 assertEquals(oldWidth + 1, layout.getWidth());
  /external/chromium_org/chrome/renderer/resources/extensions/
extension_options.js 154 function(newWidth, newHeight, oldWidth, oldHeight) {
159 oldWidth: oldWidth,
163 this.resize(newWidth, newHeight, oldWidth, oldHeight);
176 function(newWidth, newHeight, oldWidth, oldHeight) {
291 this.deferredAutoSizeState.oldWidth,
  /frameworks/av/media/libstagefright/codecs/hevcdec/
SoftHEVC.cpp 472 const uint32_t oldWidth = mWidth;
475 if (mWidth != oldWidth || mHeight != oldHeight) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
WrapInRefactoring.java 289 String oldWidth = element.getAttributeNS(ANDROID_URI, ATTR_LAYOUT_WIDTH);
292 if (VALUE_MATCH_PARENT.equals(oldWidth) || VALUE_FILL_PARENT.equals(oldWidth)) {
293 width = oldWidth;
  /external/chromium_org/third_party/webrtc/modules/video_render/mac/
video_render_agl.cc 344 int oldWidth = _width;
351 int retVal = FrameSizeChange(oldWidth, oldHeight, oldNumberOfStreams);
    [all...]
  /external/deqp/modules/egl/
teglResizeTests.cpp 260 const int oldWidth = oldSurface.getWidth();
264 const int minWidth = de::min(oldWidth, newWidth);
269 const int oldX = xCorner == 0 ? 0 : oldWidth - minWidth;
  /frameworks/base/core/java/com/android/internal/widget/
ScrollingTabContainerView.java 120 final int oldWidth = getMeasuredWidth();
124 if (lockedExpanded && oldWidth != newWidth) {
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ScrollingTabContainerView.java 127 final int oldWidth = getMeasuredWidth();
131 if (lockedExpanded && oldWidth != newWidth) {
  /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/third_party/WebKit/Source/core/rendering/
RenderBox.h 519 LayoutUnit oldWidth = width();
522 if (oldWidth != width())
    [all...]
RenderBlockFlow.cpp     [all...]
RenderBlock.cpp     [all...]
  /frameworks/base/core/java/android/widget/
ImageView.java 391 final int oldWidth = mDrawableWidth;
400 if (oldWidth != mDrawableWidth || oldHeight != mDrawableHeight) {
426 final int oldWidth = mDrawableWidth;
431 if (oldWidth != mDrawableWidth || oldHeight != mDrawableHeight) {
448 final int oldWidth = mDrawableWidth;
453 if (oldWidth != mDrawableWidth || oldHeight != mDrawableHeight) {
    [all...]
LinearLayout.java     [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
LinearLayoutCompat.java     [all...]
  /hardware/ti/omap4-aah/camera/
CameraHal.cpp 563 int oldWidth, oldHeight;
564 mParameters.getPreviewSize(&oldWidth, &oldHeight);
565 if ( ( oldWidth != w ) || ( oldHeight != h ) )
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
RenderPreview.java 858 int oldWidth = gc.getLineWidth();
862 gc.setLineWidth(oldWidth);
    [all...]
  /packages/apps/Camera/src/com/android/camera/
VideoModule.java     [all...]
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 
  /development/samples/training/basic/ActivityLifecycle/libs/
android-support-v13.jar 
  /development/samples/training/multiscreen/newsreader/libs/
android-support-v4.jar 

Completed in 500 milliseconds

1 2 3