Searched defs:HDC (Results 1 - 8 of 8) sorted by relevance

/external/chromium/base/win/
H A Dscoped_hdc.h16 // Like ScopedHandle but for HDC. Only use this on HDCs returned from
17 // CreateCompatibleDC. For an HDC returned by GetDC, use ReleaseDC instead.
21 explicit ScopedHDC(HDC h) : hdc_(h) { }
27 HDC Get() {
31 void Set(HDC h) {
36 operator HDC() { return hdc_; }
48 HDC hdc_;
/external/webkit/Source/JavaScriptCore/wtf/
H A DOwnPtrCommon.h34 typedef struct HDC__* HDC; typedef in typeref:struct:HDC__
65 void deleteOwnedPtr(HDC);
/external/webkit/Source/JavaScriptCore/wtf/wince/
H A DMemoryManager.h25 typedef struct HDC__* HDC; typedef in typeref:struct:HDC__
39 static HBITMAP createCompatibleBitmap(HDC hdc, int width, int height);
/external/webkit/Source/WebKit2/UIProcess/win/
H A DBackingStoreWin.cpp43 BitmapDC(HBITMAP, HDC destinationDC);
46 operator HDC() const { return m_dc.get(); }
49 OwnPtr<HDC> m_dc;
53 BitmapDC::BitmapDC(HBITMAP bitmap, HDC destinationDC)
64 void BackingStore::paint(HDC dc, const IntRect& rect)
H A DWebPopupMenuProxyWin.h36 typedef struct HDC__* HDC; typedef in typeref:struct:HDC__
111 void paint(const WebCore::IntRect& damageRect, HDC = 0);
128 HDC m_DC;
/external/webkit/Source/WebCore/platform/win/
H A DPopupMenuWin.h34 typedef struct HDC__* HDC; typedef in typeref:struct:HDC__
75 void paint(const IntRect& damageRect, HDC = 0);
117 HDC m_DC;
/external/webkit/Source/WebCore/platform/wx/wxcode/win/
H A Dscrollbar_render.cpp100 operator HDC() const { return m_hdc; }
103 HDC m_hdc;
/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsContext.h103 typedef struct HDC__* HDC; typedef in typeref:struct:HDC__
467 HDC getWindowsContext(const IntRect&, bool supportAlphaBlend = false, bool mayCreateBitmap = true); // The passed in rect is used to create a bitmap for compositing inside transparency layers.
468 void releaseWindowsContext(HDC, const IntRect&, bool supportAlphaBlend = false, bool mayCreateBitmap = true); // The passed in HDC should be the one handed back by getWindowsContext.
469 void drawRoundCorner(bool newClip, RECT clipRect, RECT rectWin, HDC dc, int width, int height);
471 GraphicsContext(HDC, bool hasAlpha = false); // FIXME: To be removed.
473 HDC getWindowsContext(const IntRect&, bool supportAlphaBlend = true, bool mayCreateBitmap = true); // The passed in rect is used to create a bitmap for compositing inside transparency layers.
474 void releaseWindowsContext(HDC, const IntRect&, bool supportAlphaBlend = true, bool mayCreateBitmap = true); // The passed in HDC should be the one handed back by getWindowsContext.
490 WindowsBitmap(HDC, IntSiz
[all...]

Completed in 229 milliseconds