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

1 2

  /external/chromium_org/chrome/utility/importer/
favicon_reencode.cc 30 int new_height = decoded.height(); local
31 gfx::CalculateFaviconTargetSize(&new_width, &new_height);
33 decoded, skia::ImageOperations::RESIZE_LANCZOS3, new_width, new_height);
  /external/chromium_org/ash/wm/gestures/
tray_gesture_handler.cc 57 int new_height = std::min( local
60 int height_change = bounds.height() - new_height;
61 bounds.set_height(new_height);
  /external/chromium_org/chrome/browser/ui/panels/
panel_resize_controller.cc 116 int new_height = std::max(bounds_at_start_.height() + local
118 int new_y = bounds_at_start_.bottom() - new_height;
128 new_height -= work_area.y() - new_y;
131 bounds.set_height(new_height);
panel.cc 692 int new_height = size.height(); local
693 if (new_height > max_size_.height())
694 new_height = max_size_.height();
695 if (new_height < min_size_.height())
696 new_height = min_size_.height();
698 return gfx::Size(new_width, new_height);
  /external/chromium_org/ppapi/cpp/
rect.cc 114 int32_t new_height = height(); local
116 AdjustAlongAxis(rect.y(), rect.height(), &new_y, &new_height);
117 return Rect(new_x, new_y, new_width, new_height);
218 float new_height = height(); local
220 AdjustAlongAxis(rect.y(), rect.height(), &new_y, &new_height);
221 return FloatRect(new_x, new_y, new_width, new_height);
  /external/chromium_org/ash/desktop_background/
wallpaper_resizer.cc 39 const int new_height = target_size.height(); local
41 if (orig_width > new_width || orig_height > new_height) {
44 std::min(new_height, orig_height));
59 new_width, new_height);
62 if (orig_width > new_width && orig_height > new_height) {
67 double vertical_ratio = static_cast<double>(new_height) /
76 static_cast<double>(new_height) / horizontal_ratio));
84 new_width, new_height);
  /external/chromium_org/ui/gfx/geometry/
rect_base_impl.h 254 Type new_height = height(); local
256 AdjustAlongAxis(rect.y(), rect.height(), &new_y, &new_height);
257 SetRect(new_x, new_y, new_width, new_height);
280 Type new_height = std::min(height(), size.height()); local
282 Type new_y = y() + (height() - new_height) / 2;
283 SetRect(new_x, new_y, new_width, new_height);
  /external/chromium_org/ui/keyboard/
keyboard_controller_proxy.cc 60 int new_height = pos.height(); variable
61 bounds.set_y(bounds.y() + bounds.height() - new_height);
62 bounds.set_height(new_height);
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoframe.cc 320 int new_height = dh; local
323 new_height = dw;
326 size_t desired_size = SizeOf(new_width, new_height);
331 Attach(video_buffer.get(), desired_size, new_width, new_height, pixel_width,
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
r600_blit.c 275 int new_height, new_width; local
291 new_height = util_format_get_nblocksy(tex->format, orig->height0);
294 tex->height0 = new_height;
  /external/mesa3d/src/gallium/drivers/radeonsi/
r600_blit.c 275 int new_height, new_width; local
291 new_height = util_format_get_nblocksy(tex->format, orig->height0);
294 tex->height0 = new_height;
  /external/chromium_org/native_client_sdk/src/examples/api/graphics_3d/
graphics_3d.cc 254 int32_t new_height = view.GetRect().height() * view.GetDeviceScale(); local
257 if (!InitGL(new_width, new_height)) {
268 int32_t result = context_.ResizeBuffers(new_width, new_height);
273 new_height);
279 height_ = new_height;
322 bool InitGL(int32_t new_width, int32_t new_height) {
332 PP_GRAPHICS3DATTRIB_HEIGHT, new_height,
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videoadapter.cc 502 int new_width, new_height; local
503 bool changed = AdaptToMinimumFormat(&new_width, &new_height);
508 << " To: " << new_width << "x" << new_height; local
572 int new_width, new_height; local
573 bool changed = AdaptToMinimumFormat(&new_width, &new_height);
587 << " To: " << new_width << "x" << new_height; local
633 int new_width, new_height; local
634 bool changed = AdaptToMinimumFormat(&new_width, &new_height);
640 << " To: " << new_width << "x" << new_height; local
700 int* new_height) {
    [all...]
  /external/pixman/demos/
scale.c 191 double new_width, new_height; local
214 new_height = pixman_image_get_height (app->original) * fscale_y;
218 pixman_f_transform_translate (&ftransform, NULL, - new_width / 2.0, - new_height / 2.0);
223 pixman_f_transform_translate (&ftransform, NULL, new_width / 2.0, new_height / 2.0);
251 app->scaled_height = ceil (new_height);
254 get_widget (app, "drawing_area"), new_width + 0.5, new_height + 0.5);
  /external/chromium_org/chrome/browser/ui/views/
desktop_media_picker_views.cc 547 int new_height = widget_bound.height() - scroll_view_->height() + local
550 GetWidget()->CenterWindow(gfx::Size(widget_bound.width(), new_height));
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/src/cube/
cube.cc 254 int32_t new_height = view.GetRect().height(); local
257 if (!InitGL(new_width, new_height)) {
268 int32_t result = context_.ResizeBuffers(new_width, new_height);
273 new_height);
279 height_ = new_height;
322 bool InitGL(int32_t new_width, int32_t new_height) {
332 PP_GRAPHICS3DATTRIB_HEIGHT, new_height,
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_blit.c 577 int new_height, new_width; local
593 new_height = util_format_get_nblocksy(tex->format, orig->height0);
596 tex->height0 = new_height;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/windows/gdi/
wmesa.c 962 GLuint new_width, new_height; local
964 wmesa_get_buffer_size(ctx->WinSysDrawBuffer, &new_width, &new_height);
969 wmesa_resize_buffers(ctx, ctx->WinSysDrawBuffer, new_width, new_height);
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_blit.c 577 int new_height, new_width; local
593 new_height = util_format_get_nblocksy(tex->format, orig->height0);
596 tex->height0 = new_height;
  /external/mesa3d/src/mesa/drivers/windows/gdi/
wmesa.c 962 GLuint new_width, new_height; local
964 wmesa_get_buffer_size(ctx->WinSysDrawBuffer, &new_width, &new_height);
969 wmesa_resize_buffers(ctx, ctx->WinSysDrawBuffer, new_width, new_height);
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
onyx_if.c 2744 int new_width, new_height; local
    [all...]
firstpass.c 3209 int new_height = cpi->oxcf.Height; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
onyx_if.c 2694 int new_width, new_height; local
    [all...]
firstpass.c 3209 int new_height = cpi->oxcf.Height; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
onyx_if.c 2695 int new_width, new_height; local
    [all...]

Completed in 774 milliseconds

1 2