HomeSort by relevance Sort by last modified time
    Searched defs:HDC (Results 1 - 8 of 8) sorted by null

  /external/chromium/base/win/
scoped_hdc.h 16 // 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/wince/
MemoryManager.h 25 typedef struct HDC__* HDC;
39 static HBITMAP createCompatibleBitmap(HDC hdc, int width, int height);
  /external/webkit/Source/JavaScriptCore/wtf/
OwnPtrCommon.h 34 typedef struct HDC__* HDC;
65 void deleteOwnedPtr(HDC);
  /external/webkit/Source/WebKit2/UIProcess/win/
BackingStoreWin.cpp 43 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)
WebPopupMenuProxyWin.h 36 typedef struct HDC__* HDC;
111 void paint(const WebCore::IntRect& damageRect, HDC = 0);
128 HDC m_DC;
  /external/webkit/Source/WebCore/platform/win/
PopupMenuWin.h 34 typedef struct HDC__* HDC;
75 void paint(const IntRect& damageRect, HDC = 0);
117 HDC m_DC;
  /external/webkit/Source/WebCore/platform/wx/wxcode/win/
scrollbar_render.cpp 100 operator HDC() const { return m_hdc; }
103 HDC m_hdc;
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext.h 103 typedef struct HDC__* HDC;
465 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.
466 void releaseWindowsContext(HDC, const IntRect&, bool supportAlphaBlend = false, bool mayCreateBitmap = true); // The passed in HDC should be the one handed back by getWindowsContext.
467 void drawRoundCorner(bool newClip, RECT clipRect, RECT rectWin, HDC dc, int width, int height);
469 GraphicsContext(HDC, bool hasAlpha = false); // FIXME: To be removed.
471 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.
472 void releaseWindowsContext(HDC, const IntRect&, bool supportAlphaBlend = true, bool mayCreateBitmap = true); // The passed in HDC should be the one handed back by getWindowsContext.
488 WindowsBitmap(HDC, IntSize)
491 HDC hdc() const { return m_hdc; } function in class:WebCore::GraphicsContext::WindowsBitmap
    [all...]

Completed in 195 milliseconds