Home
last modified time | relevance | path

Searched refs:new_y (Results 1 – 17 of 17) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/src/video/caca/
DSDL_cacaevents.c88 int new_x = 0, new_y = 0; in Caca_PumpEvents() local
90 new_y = ((event & 0x00000fff) >> 0) * Caca_h / caca_get_height(); in Caca_PumpEvents()
91 posted += SDL_PrivateMouseMotion(0, 0, new_x, new_y); in Caca_PumpEvents()
/external/chromium_org/ppapi/cpp/
Drect.cc112 int32_t new_y = y(); in AdjustToFit() local
116 AdjustAlongAxis(rect.y(), rect.height(), &new_y, &new_height); in AdjustToFit()
117 return Rect(new_x, new_y, new_width, new_height); in AdjustToFit()
216 float new_y = y(); in AdjustToFit() local
220 AdjustAlongAxis(rect.y(), rect.height(), &new_y, &new_height); in AdjustToFit()
221 return FloatRect(new_x, new_y, new_width, new_height); in AdjustToFit()
/external/chromium_org/apps/ui/
Dweb_contents_sizer.mm18 CGFloat new_y =
21 NSMakeRect(new_x, new_y, new_size.width(), new_size.height());
/external/qemu/distrib/sdl-1.2.15/src/video/riscos/
DSDL_riscosevents.c264 Sint16 new_y = regs.r[1]; in RISCOS_PollMouseHelper() local
272 if (new_x != last_x || new_y != last_y || last_buttons != regs.r[2]) in RISCOS_PollMouseHelper()
297 y = topLeftY - new_y; /* Y goes from top of window/screen */ in RISCOS_PollMouseHelper()
303 if (last_x != new_x || last_y != new_y) in RISCOS_PollMouseHelper()
337 last_y = new_y; in RISCOS_PollMouseHelper()
/external/chromium_org/ui/gfx/geometry/
Drect_base_impl.h252 Type new_y = y(); in AdjustToFit() local
256 AdjustAlongAxis(rect.y(), rect.height(), &new_y, &new_height); in AdjustToFit()
257 SetRect(new_x, new_y, new_width, new_height); in AdjustToFit()
282 Type new_y = y() + (height() - new_height) / 2; in ClampToCenteredSize() local
283 SetRect(new_x, new_y, new_width, new_height); in ClampToCenteredSize()
/external/chromium_org/chrome/browser/ui/panels/
Dpanel_resize_controller.cc118 int new_y = bounds_at_start_.bottom() - new_height; in Resize() local
128 new_height -= work_area.y() - new_y; in Resize()
/external/chromium_org/printing/
Dpage_setup.cc96 int new_y = physical_size_.width() - in FlipOrientation() local
99 new_y, in FlipOrientation()
/external/chromium_org/ui/views/controls/menu/
Dsubmenu_view.cc103 int new_y; in Layout() local
105 new_y = std::max(parent()->height() - pref_height, y()); in Layout()
107 new_y = 0; in Layout()
108 SetBounds(x(), new_y, parent()->width(), pref_height); in Layout()
/external/chromium_org/pdf/pdfium/
Dpdfium_page.cc250 double new_x, new_y; in GetCharIndex() local
252 rotation, point2.x(), point2.y(), &new_x, &new_y); in GetCharIndex()
255 GetTextPage(), new_x, new_y, kTolerance, kTolerance); in GetCharIndex()
258 FPDF_LINK link = FPDFLink_GetLinkAtPoint(GetPage(), new_x, new_y); in GetCharIndex()
Dpdfium_engine.cc1753 int new_y = static_cast<int>(center.y() * current_zoom_) - in SelectFindResult() local
1755 if (new_y < 0) in SelectFindResult()
1756 new_y = 0; in SelectFindResult()
1757 client_->ScrollToY(new_y); in SelectFindResult()
/external/chromium_org/ui/gfx/android/
Dscroller.h68 void SetFinalY(float new_y);
Dscroller.cc349 void Scroller::SetFinalY(float new_y) { in SetFinalY() argument
350 final_y_ = new_y; in SetFinalY()
/external/chromium_org/chrome/browser/ui/cocoa/constrained_window/
Dconstrained_window_animation.mm112 CGFloat new_y = -origin.y + scale_offset_y;
113 transform = CGAffineTransformTranslate(transform, new_x, new_y);
/external/chromium_org/ui/views/controls/
Dscroll_view.cc488 const int new_y = in ScrollContentsRegionToBeVisible() local
495 contents_->SetY(-new_y); in ScrollContentsRegionToBeVisible()
/external/qemu/android/skin/
Dwindow.c1257 int new_x, new_y; in skin_window_create() local
1266 new_y = (monitor.h - win_h)/2; in skin_window_create()
1269 if (new_y < 0) in skin_window_create()
1270 new_y = 0; in skin_window_create()
1273 SDL_WM_SetPos(new_x, new_y); in skin_window_create()
/external/qemu/distrib/sdl-1.2.15/src/video/windib/
DSDL_dibvideo.c1386 int new_y = 10; local
1393 new_y = data.primary.top + (primary_h - this->screen->h)/2;
1395 DIB_SetWinPos(this, new_x, new_y);
/external/chromium_org/cc/resources/
Dpicture_layer_tiling.cc394 int new_y = visible_rect_in_content_space.y(); in ComputeSkewport() local
407 extrapolation_multiplier * (new_y - old_y), in ComputeSkewport()