HomeSort by relevance Sort by last modified time
    Searched refs:RECT (Results 1 - 25 of 230) sorted by null

1 2 3 4 5 6 7 8 910

  /external/chromium_org/skia/ext/
skia_utils_win.h 16 typedef struct tagRECT RECT;
23 // Converts a Windows RECT to a Skia rect.
24 SkRect RECTToSkRect(const RECT& rect);
26 // Converts a Windows RECT to a Skia rect.
29 inline const SkIRect& RECTToSkIRect(const RECT& rect) {
30 return reinterpret_cast<const SkIRect&>(rect);
    [all...]
skia_utils_win.cc 22 COMPILE_ASSERT(SK_OFFSETOF(RECT, left) == SK_OFFSETOF(SkIRect, fLeft), o1);
23 COMPILE_ASSERT(SK_OFFSETOF(RECT, top) == SK_OFFSETOF(SkIRect, fTop), o2);
24 COMPILE_ASSERT(SK_OFFSETOF(RECT, right) == SK_OFFSETOF(SkIRect, fRight), o3);
25 COMPILE_ASSERT(SK_OFFSETOF(RECT, bottom) == SK_OFFSETOF(SkIRect, fBottom), o4);
26 COMPILE_ASSERT(sizeof(RECT().left) == sizeof(SkIRect().fLeft), o5);
27 COMPILE_ASSERT(sizeof(RECT().top) == sizeof(SkIRect().fTop), o6);
28 COMPILE_ASSERT(sizeof(RECT().right) == sizeof(SkIRect().fRight), o7);
29 COMPILE_ASSERT(sizeof(RECT().bottom) == sizeof(SkIRect().fBottom), o8);
30 COMPILE_ASSERT(sizeof(RECT) == sizeof(SkIRect), o9);
41 SkRect RECTToSkRect(const RECT& rect)
    [all...]
vector_platform_device_skia.h 37 const RECT* src_rect) OVERRIDE;
  /external/chromium_org/win8/metro_driver/ime/
text_store_delegate.h 43 virtual RECT GetCaretBounds() = 0;
48 // |rect| in screen coordinates.
50 virtual bool GetCompositionCharacterBounds(uint32 index, RECT* rect) = 0;
  /external/chromium_org/chrome_frame/infobars/internal/
displaced_window_manager.cc 28 // lparam as a RECT object.
29 RECT* rect = reinterpret_cast<RECT*>(lparam);
30 RECT natural_rect = *rect;
32 delegate()->AdjustDisplacedWindowDimensions(rect);
37 !EqualRect(&natural_rect, rect)) {
infobar_window.h 58 void ReserveSpace(RECT* rect);
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
Blit.h 33 bool copy(gl::Framebuffer *framebuffer, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, TextureStorageInterface2D *storage, GLint level);
34 bool copy(gl::Framebuffer *framebuffer, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, TextureStorageInterfaceCube *storage, GLenum target, GLint level);
39 bool formatConvert(IDirect3DSurface9 *source, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, IDirect3DSurface9 *dest);
55 bool copy(IDirect3DSurface9 *source, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, IDirect3DSurface9 *dest);
56 IDirect3DTexture9 *copySurfaceToTexture(IDirect3DSurface9 *surface, const RECT &sourceRect);
57 void setViewport(const RECT &sourceRect, GLint xoffset, GLint yoffset);
59 RECT getSurfaceRect(IDirect3DSurface9 *surface) const;
  /external/chromium_org/chrome_frame/infobars/
infobar_content.h 42 virtual void SetDimensions(const RECT& dimensions) = 0;
  /external/chromium_org/chrome/browser/ui/window_sizer/
window_sizer_win.cc 19 RECT area;
24 RECT browser_rect;
  /external/chromium_org/chrome_frame/turndown_prompt/
turndown_prompt_content.cc 38 void TurndownPromptContent::SetDimensions(const RECT& dimensions) {
47 RECT* dimensions) {
82 RECT dlgdimensions = {0, 0, dlgtemplateex->cx, dlgtemplateex->cy};
98 RECT dialog_dimensions = {0, 0, 0, 0};
turndown_prompt_content.h 29 virtual void SetDimensions(const RECT& dimensions);
  /external/chromium_org/chrome/browser/ui/views/frame/
minimize_button_metrics_win.cc 36 RECT window_rect = {0};
94 RECT client_rect = {0};
107 RECT client_rect = {0};
  /external/chromium_org/content/test/plugin/
plugin_window_size_test.cc 25 RECT window_rect = {0};
32 RECT client_rect = {0};
35 SetError("The client rect of the plugin window is empty. Test failed");
41 RECT window_rect_from_os;
  /external/opencv/otherlibs/highgui/
highgui.h 268 CV_INLINE RECT NormalizeRect( RECT r );
269 CV_INLINE RECT NormalizeRect( RECT r )
290 CV_INLINE CvRect RectToCvRect( RECT sr );
291 CV_INLINE CvRect RectToCvRect( RECT sr )
297 CV_INLINE RECT CvRectToRect( CvRect sr );
298 CV_INLINE RECT CvRectToRect( CvRect sr )
300 RECT dr;
309 CV_INLINE IplROI RectToROI( RECT r )
    [all...]
  /external/chromium_org/chrome_frame/test/
infobar_unittests.cc 25 RECT kInitialParentWindowRect = {20, 20, 300, 300};
26 RECT kInitialChildWindowRect = {20, 20, 280, 280};
32 ACTION_P2(RespondToNcCalcSize, result, rect) {
33 *reinterpret_cast<RECT*>(arg1) = *rect;
38 reinterpret_cast<RECT*>(arg1)[0] = rect1;
39 reinterpret_cast<RECT*>(arg1)[1] = rect2;
40 reinterpret_cast<RECT*>(arg1)[2] = rect3;
99 MOCK_METHOD1(AdjustDisplacedWindowDimensions, void(RECT* rect));
    [all...]
  /external/chromium/chrome/browser/ui/views/
find_bar_host_win.cc 20 void FindBarHost::GetWidgetPositionNative(gfx::Rect* avoid_overlapping_rect) {
21 RECT frame_rect = {0}, webcontents_rect = {0};
  /external/chromium/chrome/browser/ui/
window_sizer_win.cc 22 virtual gfx::Rect GetPrimaryMonitorWorkArea() const {
23 return gfx::Rect(GetMonitorInfoForMonitor(MonitorFromWindow(NULL,
27 virtual gfx::Rect GetPrimaryMonitorBounds() const {
28 return gfx::Rect(GetMonitorInfoForMonitor(MonitorFromWindow(NULL,
32 virtual gfx::Rect GetMonitorWorkAreaMatching(
33 const gfx::Rect& match_rect) const {
34 RECT other_bounds_rect = match_rect.ToRECT();
37 return gfx::Rect(monitor_info.rcWork);
41 const gfx::Rect& match_rect) const {
42 RECT other_bounds_rect = match_rect.ToRECT()
    [all...]
  /external/chromium_org/ui/views/win/
fullscreen_handler.h 15 class Rect;
30 gfx::Rect GetRestoreBounds() const;
42 RECT window_rect;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3dapi/
galliumdxgi.idl 70 * *window and *rect are the window and subrectangle
84 * However, the rect field should still be set as normal if possible (especially
99 [out] RECT* rect,
  /external/mesa3d/src/gallium/state_trackers/d3d1x/gd3dapi/
galliumdxgi.idl 70 * *window and *rect are the window and subrectangle
84 * However, the rect field should still be set as normal if possible (especially
99 [out] RECT* rect,
  /external/chromium_org/remoting/host/
disconnect_window_win.cc 59 bool GetControlRect(HWND control, RECT* rect);
97 RECT rect = {0, 0, 0, 0}; local
101 if (!DrawText(dc, text.c_str(), -1, &rect, DT_CALCRECT | DT_SINGLELINE))
104 *width = rect.right;
212 RECT rect; local
213 GetClientRect(hwnd_, &rect);
217 RoundRect(hdc, rect.left, rect.top, rect.right - 1, rect.bottom - 1
    [all...]
verify_config_window_win.cc 60 RECT rect; local
61 if (!GetWindowRect(&rect)) {
75 RECT area_rect;
81 RECT owner_rect = area_rect;
93 LONG width = rect.right - rect.left;
94 LONG height = rect.bottom - rect.top;
  /external/chromium_org/ui/native_theme/
native_theme_win.h 98 RECT* rect,
110 const gfx::Rect& rect,
128 const gfx::Rect& rect,
137 const gfx::Rect& rect,
144 RECT* rect,
    [all...]
  /frameworks/native/include/private/ui/
RegionHelper.h 26 template<typename RECT>
30 typedef typename RECT::value_type TYPE;
50 RECT const* rects;
56 inline region(RECT const* r, size_t c)
58 inline region(RECT const* r, size_t c, TYPE dx, TYPE dy)
64 virtual void operator()(const RECT& rect) = 0;
75 RECT current;
201 RECT const * rects = reg.rects;
202 RECT const * const end = rects + count
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_drop_info.cc 34 RECT client_rect;

Completed in 541 milliseconds

1 2 3 4 5 6 7 8 910