Searched refs:newHeight (Results 1 - 25 of 46) sorted by relevance

12

/external/chromium_org/chrome/browser/ui/cocoa/
H A Dview_resizer.h18 - (void)resizeView:(NSView*)view newHeight:(CGFloat)height;
H A Danimatable_view.h41 - (void)setHeight:(CGFloat)newHeight;
43 // Starts a new animation to the given |newHeight| for the given |duration|.
45 - (void)animateToNewHeight:(CGFloat)newHeight
H A Dview_resizer_pong.h18 - (void)resizeView:(NSView*)view newHeight:(CGFloat)height;
/external/chromium_org/extensions/test/data/web_view/apitest/
H A Dmain.js130 embedder.test.assertTrue(e.newHeight >= 110 && e.newHeight <= 120);
139 embedder.test.assertEq(100, e.newHeight);
181 embedder.test.assertTrue(e.newHeight >= 100 && e.newHeight <= 110);
204 embedder.test.assertEq(200, e.newHeight);
210 embedder.test.assertEq(50, e.newHeight);
285 e.newWidth + ' X ' + e.newHeight);
290 embedder.test.assertEq(200, e.newHeight);
306 embedder.test.assertTrue(e.newHeight >
[all...]
/external/clang/www/analyzer/scripts/
H A Dexpandcollapse.js143 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);
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dextension_options.js154 function(newWidth, newHeight, oldWidth, oldHeight) {
158 newHeight: newHeight,
163 this.resize(newWidth, newHeight, oldWidth, oldHeight);
176 function(newWidth, newHeight, oldWidth, oldHeight) {
178 this.browserPluginNode.style.height = newHeight + 'px';
185 if (newHeight > this.minheight)
186 this.minheight = newHeight;
290 this.deferredAutoSizeState.newHeight,
H A Dextension_options_events.js26 fields:['newWidth', 'newHeight', 'oldWidth', 'oldHeight']
71 extensionOptionsEvent.newHeight,
/external/chromium_org/ui/android/java/src/org/chromium/ui/
H A DUiUtils.java168 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/chromium_org/chrome/browser/resources/extensions/
H A Dextension_options_overlay.js116 Math.pow(evt.newHeight - oldHeight, 2));
120 {width: evt.newWidth + 'px', height: evt.newHeight + 'px'}
/external/chromium_org/third_party/skia/bench/
H A DETCBitmapBench.cpp49 etc1_uint32 newHeight = origHeight * factor; local
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/
H A Detc1bitmap.cpp46 int newHeight = (blockHeight - 1) << 2; local
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/qemu/distrib/sdl-1.2.15/src/video/riscos/
H A DSDL_riscossprite.c218 int newWidth, newHeight; local
232 newHeight = (currHeight >> oldYeig) << this->hidden->yeig;
236 if (currHeight <= newHeight)
238 extent[1] = -newHeight;
/external/skia/bench/
H A DETCBitmapBench.cpp49 etc1_uint32 newHeight = origHeight * factor; local
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/
H A Detc1bitmap.cpp46 int newHeight = (blockHeight - 1) << 2; local
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/native_client_sdk/src/resources/
H A Dindex.js78 var newHeight = Math.max(wrapperHeight - 4, bodyHeight);
79 iframeEl.style.height = newHeight + 'px';
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
H A DImageFrame.cpp104 bool ImageFrame::setSize(int newWidth, int newHeight) argument
109 m_bitmap.setInfo(SkImageInfo::MakeN32Premul(newWidth, newHeight));
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
H A DButtonPropertyEditorPresentationImpl.java167 private static void setBounds(Control control, int newX, int newY, int newWidth, int newHeight) { argument
171 if (newY + newHeight < 0) {
190 control.setData("oldHeight", newHeight);
195 if (oldWidth == newWidth && oldHeight == newHeight) {
201 control.setBounds(newX, newY, newWidth, newHeight);
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/imageinfo/
H A Dinfo.js44 var newHeight = Math.min(document.body.offsetHeight + 140, 700);
46 height: newHeight,
/external/chromium_org/ui/file_manager/video_player/js/
H A Dvideo_player.js454 var newHeight = videoHeight;
457 var shrinkY = newHeight / window.screen.availHeight;
460 newHeight = newHeight / shrinkY;
461 newWidth = newHeight * aspect;
464 newHeight = newWidth / aspect;
479 appWindow.resizeTo(newWidth, newHeight);
481 oldTop - (newHeight - oldHeight) / 2);
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dset_time.js161 var newHeight = document.body.scrollHeight +
163 window.resizeTo(window.outerWidth, newHeight);
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dframebuffer.c347 GLuint newWidth, newHeight; local
353 ctx->Driver.GetBufferSize( buffer, &newWidth, &newHeight );
356 if (buffer->Width != newWidth || buffer->Height != newHeight) {
358 ctx->Driver.ResizeBuffers(ctx, buffer, newWidth, newHeight );
364 GLuint newWidth, newHeight; local
370 ctx->Driver.GetBufferSize( buffer, &newWidth, &newHeight );
373 if (buffer->Width != newWidth || buffer->Height != newHeight) {
375 ctx->Driver.ResizeBuffers(ctx, buffer, newWidth, newHeight );
/external/chromium_org/third_party/skia/include/core/
H A DSkImageInfo.h216 SkImageInfo makeWH(int newWidth, int newHeight) const {
217 return SkImageInfo::Make(newWidth, newHeight, fColorType, fAlphaType);
/external/mesa3d/src/mesa/main/
H A Dframebuffer.c347 GLuint newWidth, newHeight; local
353 ctx->Driver.GetBufferSize( buffer, &newWidth, &newHeight );
356 if (buffer->Width != newWidth || buffer->Height != newHeight) {
358 ctx->Driver.ResizeBuffers(ctx, buffer, newWidth, newHeight );
364 GLuint newWidth, newHeight; local
370 ctx->Driver.GetBufferSize( buffer, &newWidth, &newHeight );
373 if (buffer->Width != newWidth || buffer->Height != newHeight) {
375 ctx->Driver.ResizeBuffers(ctx, buffer, newWidth, newHeight );
/external/skia/include/core/
H A DSkImageInfo.h203 SkImageInfo makeWH(int newWidth, int newHeight) const {
204 return SkImageInfo::Make(newWidth, newHeight, fColorType, fAlphaType);
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
H A DTransformationUtils.java270 final int newHeight = Math.round(newRect.height());
272 Bitmap result = pool.get(newWidth, newHeight, toOrient.getConfig());
274 result = Bitmap.createBitmap(newWidth, newHeight, toOrient.getConfig());

Completed in 897 milliseconds

12