Home
last modified time | relevance | path

Searched refs:screen_height (Results 1 – 9 of 9) sorted by relevance

/external/webkit/Source/WebCore/platform/image-decoders/gif/
DGIFImageReader.cpp515 screen_height = GETINT16(q + 2); in read()
518 if (clientptr && !clientptr->setSize(screen_width, screen_height)) in read()
729 ((screen_height < height) || (screen_width < width) || in read()
732 screen_height = height; in read()
738 if (clientptr && !clientptr->setSize(screen_width, screen_height)) in read()
745 height = screen_height; in read()
786 if (screen_height < height) in read()
787 screen_height = height; in read()
DGIFImageReader.h167 unsigned screen_height; member
188 screen_width = screen_height = 0;
/external/linux-tools-perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
DSchedGui.py26 (self.screen_width, self.screen_height) = wx.GetDisplaySize()
28 self.screen_height -= 10
39 self.panel = wx.Panel(self, size=(self.screen_width, self.screen_height))
48 self.scroll_panel = wx.Panel(self.scroll, size=(self.screen_width - 15, self.screen_height / 2))
131 self.txt = wx.StaticText(self.panel, -1, txt, (0, (self.screen_height / 2) + 50))
/external/qemu/distrib/sdl-1.2.15/src/video/riscos/
DSDL_riscosvideo.h46 int screen_height; member
DSDL_wimpvideo.c219 this->hidden->screen_height = vals[4] + 1; in WIMP_ReadModeInfo()
253 int y = (this->hidden->screen_height - surface->h) / 2; in WIMP_SetupWindow()
427 int height = this->hidden->screen_height << this->hidden->yeig; in WIMP_RefreshDesktop()
DSDL_riscosmouse.c273 int t = (this->hidden->screen_height << this->hidden->yeig) - 1; in RISCOS_GrabInput()
/external/chromium/chrome/browser/automation/
Dui_controls_win.cc255 int screen_height = ::GetSystemMetrics(SM_CYSCREEN) - 1; in SendMouseMoveImpl() local
257 LONG pixel_y = static_cast<LONG>(y * (65535.0f / screen_height)); in SendMouseMoveImpl()
/external/chromium/chrome/browser/chromeos/login/
Dwizard_controller.cc592 int screen_height) const { in GetWizardScreenBounds()
594 int offset_y = (screen_bounds_.height() - screen_height) / 2; in GetWizardScreenBounds()
597 return gfx::Rect(window_x, window_y, screen_width, screen_height); in GetWizardScreenBounds()
Dwizard_controller.h191 gfx::Rect GetWizardScreenBounds(int screen_width, int screen_height) const;