HomeSort by relevance Sort by last modified time
    Searched full:newheight (Results 1 - 25 of 115) sorted by null

1 2 3 4 5

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ZoomHeight.py 30 newheight = top.winfo_screenheight()
33 newheight = newheight - 72
40 newheight = newheight - newy - 88
45 #newheight = newheight - 96
46 newheight = newheight - 88
47 if height >= newheight
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ZoomHeight.py 30 newheight = top.winfo_screenheight()
33 newheight = newheight - 72
40 newheight = newheight - newy - 88
45 #newheight = newheight - 96
46 newheight = newheight - 88
47 if height >= newheight
    [all...]
  /frameworks/base/docs/html/guide/topics/renderscript/
reference.jd 10 var newheight;
13 newheight = element.contentWindow.document.body.scrollHeight + 20;
15 element.height = (newheight) + "px";
  /external/chromium_org/chrome/browser/ui/cocoa/
view_resizer_pong.h 18 - (void)resizeView:(NSView*)view newHeight:(CGFloat)height;
animatable_view.mm 65 - (void)setHeight:(CGFloat)newHeight {
69 int height = floor(newHeight);
70 [resizeDelegate_ resizeView:self newHeight:height];
73 - (void)animateToNewHeight:(CGFloat)newHeight
78 finalHeight:newHeight
animatable_view.h 41 - (void)setHeight:(CGFloat)newHeight;
43 // Starts a new animation to the given |newHeight| for the given |duration|.
45 - (void)animateToNewHeight:(CGFloat)newHeight
view_resizer_pong.mm 13 - (void)resizeView:(NSView*)view newHeight:(CGFloat)height {
view_resizer.h 18 - (void)resizeView:(NSView*)view newHeight:(CGFloat)height;
  /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);
42 mSizeChangeListener.onSizeChanged(newWidth, newHeight);
  /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);
  /development/samples/devbytes/animation/ListViewExpandingCells/src/com/example/android/expandingcells/
OnSizeChangedListener.java 24 public void onSizeChanged(int newHeight);
ExpandableListItem.java 84 public void onSizeChanged(int newHeight) {
85 setExpandedHeight(newHeight);
  /external/chromium_org/ui/android/java/src/org/chromium/ui/
UiUtils.java 168 int newHeight = (int) originalHeight;
172 newHeight = (int) Math.round(originalHeight * scale);
175 Bitmap.createScaledBitmap(originalBitmap, newWidth, newHeight, true);
187 int newHeight = (int) originalHeight;
191 newHeight = (int) Math.round(originalHeight * scale);
193 Bitmap bitmap = Bitmap.createBitmap(newWidth, newHeight, bitmapConfig);
196 (float) (newHeight / originalHeight));
  /external/clang/www/analyzer/scripts/
expandcollapse.js 143 var newHeight;
149 newHeight = CLIP_HEIGHT;
154 newHeight = cellInfo.height;
163 expandableDiv.style.height = newHeight + "px";
168 if (state.height > newHeight) {
170 data.style.height = (newHeight - EXPANDER_HEIGHT) + "px";
188 window.scrollBy(0, newHeight - cellInfo.height);
  /cts/apps/CtsVerifier/lib/colorchecker/
testingimage.cpp 59 int newHeight, int newWidth) {
60 mImage = new unsigned char[newHeight * newWidth * inputChannel];
63 newHeight, newWidth, inputChannel);
64 mHeight = newHeight;
71 int heightScale = inputHeight / newHeight;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
ButtonPropertyEditorPresentationImpl.java 167 private static void setBounds(Control control, int newX, int newY, int newWidth, int newHeight) {
171 if (newY + newHeight < 0) {
190 control.setData("oldHeight", newHeight);
195 if (oldWidth == newWidth && oldHeight == newHeight) {
201 control.setBounds(newX, newY, newWidth, 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/chromium_org/native_client_sdk/src/resources/
index.js 78 var newHeight = Math.max(wrapperHeight - 4, bodyHeight);
79 iframeEl.style.height = newHeight + 'px';
  /external/chromium_org/ui/file_manager/video_player/js/
video_player.js 287 var newHeight = videoHeight + TITLE_HEIGHT;
290 var shrinkY = newHeight / window.screen.availHeight;
293 newHeight = newHeight / shrinkY;
294 newWidth = (newHeight - TITLE_HEIGHT) * aspect;
297 newHeight = newWidth / aspect + TITLE_HEIGHT;
312 appWindow.resizeTo(newWidth, newHeight);
314 oldTop - (newHeight - oldHeight) / 2);
  /external/chromium_org/third_party/skia/bench/
ETCBitmapBench.cpp 49 etc1_uint32 newHeight = origHeight * factor;
51 etc1_uint32 newDataSz = etc1_get_encoded_data_size(newWidth, newHeight);
54 etc1_pkm_format_header(newData, newWidth, newHeight);
63 etc1_uint32 newBlocksY = (newHeight >> 2);
  /external/chromium_org/third_party/skia/gm/
etc1bitmap.cpp 46 int newHeight = (blockHeight - 1) << 2;
48 size_t newDataSz = etc1_get_encoded_data_size(newWidth, newHeight) + ETC_PKM_HEADER_SIZE;
53 etc1_pkm_format_header(newData, newWidth, newHeight);
66 *height = newHeight;
  /external/skia/bench/
ETCBitmapBench.cpp 49 etc1_uint32 newHeight = origHeight * factor;
51 etc1_uint32 newDataSz = etc1_get_encoded_data_size(newWidth, newHeight);
54 etc1_pkm_format_header(newData, newWidth, newHeight);
63 etc1_uint32 newBlocksY = (newHeight >> 2);
  /external/skia/gm/
etc1bitmap.cpp 46 int newHeight = (blockHeight - 1) << 2;
48 size_t newDataSz = etc1_get_encoded_data_size(newWidth, newHeight) + ETC_PKM_HEADER_SIZE;
53 etc1_pkm_format_header(newData, newWidth, newHeight);
66 *height = newHeight;
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/imageinfo/
info.js 44 var newHeight = Math.min(document.body.offsetHeight + 140, 700);
46 height: newHeight,
  /packages/apps/Settings/src/com/android/settings/dashboard/
DashboardContainerView.java 80 final int newHeight = (int) ((mNumRows * cellHeight) + ((mNumRows - 1) * mCellGapY)) +
83 setMeasuredDimension(width, newHeight);

Completed in 507 milliseconds

1 2 3 4 5