Home
last modified time | relevance | path

Searched refs:HBRUSH (Results 1 – 21 of 21) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/
DOwnPtrCommon.h33 typedef struct HBRUSH__* HBRUSH; typedef
64 void deleteOwnedPtr(HBRUSH);
/external/webkit/Source/WebCore/rendering/
DRenderThemeWin.cpp632 ::FillRect(hdc, &widgetRect, (HBRUSH)(COLOR_BTNFACE+1)); in drawControl()
634 ::FillRect(hdc, &widgetRect, (HBRUSH)(COLOR_WINDOW+1)); in drawControl()
637 ::FillRect(hdc, &widgetRect, (HBRUSH)GetStockObject(GRAY_BRUSH)); in drawControl()
647 HBRUSH brush = (HBRUSH) ::CreatePatternBrush(patternBmp); in drawControl()
653 HBRUSH oldBrush = (HBRUSH) ::SelectObject(hdc, brush); in drawControl()
660 ::FillRect(hdc, &widgetRect, (HBRUSH)COLOR_3DHILIGHT); in drawControl()
666 HBRUSH brush = ::GetSysColorBrush(COLOR_3DDKSHADOW); in drawControl()
/external/webkit/Source/JavaScriptCore/wtf/win/
DOwnPtrWin.cpp40 void deleteOwnedPtr(HBRUSH ptr) in deleteOwnedPtr()
/external/webkit/Source/WebKit2/WebProcess/WebPage/win/
DChunkedUpdateDrawingAreaWin.cpp53 ::FillRect(hdc.get(), &rect, (HBRUSH)::GetStockObject(WHITE_BRUSH)); in paintIntoUpdateChunk()
/external/webkit/Tools/WinCELauncher/
Dmain.cpp95 wc.hbrBackground = static_cast<HBRUSH>(GetStockObject(WHITE_BRUSH)); in _tWinMain()
/external/openssl/apps/
Dwinrand.c93 wndclass.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH); in WinMain()
/external/webkit/Source/WebCore/platform/win/
DScrollbarThemeWin.cpp256 ::FillRect(hdc, &themeRect, HBRUSH(COLOR_SCROLLBAR+1)); in paintTrackPiece()
260 HBRUSH brush = ::CreatePatternBrush(patternBitmap); in paintTrackPiece()
/external/webkit/Source/WebCore/platform/graphics/wince/
DGraphicsContextWinCE.cpp371 static inline PassOwnPtr<HBRUSH> createBrush(const Color& col) in createBrush()
641 OwnPtr<HBRUSH> brush; in drawRect()
716 OwnPtr<HBRUSH> brush; in drawEllipse()
898 OwnPtr<HBRUSH> brush; in drawConvexPolygon()
951 OwnPtr<HBRUSH> hbrush(CreateSolidBrush(RGB(color.red(), color.green(), color.blue()))); in fillRect()
1244 OwnPtr<HBRUSH> brush = createBrush(shadowColor); in fillRoundedRect()
1339 OwnPtr<HBRUSH> brush = createBrush(c); in fillPath()
1814 …FillRect(dc, &rectWin, reinterpret_cast<HBRUSH>(((state & DFCS_INACTIVE) ? COLOR_BTNFACE : COLOR_W… in paintTextField()
DSharedBitmap.cpp348 OwnPtr<HBRUSH> hBrush = adoptPtr(CreatePatternBrush(hbmp)); in drawPatternSimple()
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/win/
DNetscapePluginWin.cpp55 windowClass.hbrBackground = reinterpret_cast<HBRUSH>(COLOR_WINDOW + 1); in registerPluginView()
/external/webkit/Source/WebKit2/UIProcess/win/
DWebView.cpp624 ::FillRect(dc, &rect, reinterpret_cast<HBRUSH>(COLOR_WINDOW + 1)); in drawPageBackground()
653 static void flashRects(HDC dc, const IntRect rects[], size_t rectCount, HBRUSH brush) in flashRects()
664 static OwnPtr<HBRUSH> createBrush(const Color& color) in createBrush()
675 static HBRUSH brush = createBrush(WebPageProxy::viewUpdatesFlashColor().rgb()).leakPtr(); in onPaintEvent()
942 … static HBRUSH brush = createBrush(WebPageProxy::backingStoreUpdatesFlashColor().rgb()).leakPtr(); in flashBackingStoreUpdates()
/external/webkit/Tools/MiniBrowser/win/
DBrowserWindow.cpp117 windowClass.hbrBackground = (HBRUSH)::GetStockObject(WHITE_BRUSH); in createWindow()
/external/icu4c/samples/layout/
Dlayout.cpp85 wndclass.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH); in WinMain()
Dclayout.c86 wndclass.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH); in WinMain()
/external/chromium/chrome/browser/renderer_host/
Drender_widget_host_view_win.cc433 wcex.hbrBackground = reinterpret_cast<HBRUSH>(COLOR_WINDOW+1); in ReparentWindow()
967 HBRUSH white_brush = reinterpret_cast<HBRUSH>(GetStockObject(WHITE_BRUSH)); in DrawBackground()
/external/libpng/contrib/gregbook/
Drpng-win.c503 wndclass.hbrBackground = (HBRUSH)GetStockObject(DKGRAY_BRUSH); in rpng_win_create_window()
Drpng2-win.c735 wndclass.hbrBackground = (HBRUSH)GetStockObject(DKGRAY_BRUSH); in rpng2_win_create_window()
/external/webkit/Source/WebKit/chromium/tests/
DTransparencyWinTest.cpp62 reinterpret_cast<HBRUSH>(GetStockObject(BLACK_BRUSH))); in drawNativeRect()
/external/webkit/Source/WebCore/plugins/win/
DPluginViewWin.cpp319 wcex.hbrBackground = (HBRUSH)COLOR_WINDOW; in registerPluginView()
/external/webkit/Source/WebKit/win/
DWebView.cpp1032 ::FillRect(hdc, &rcPaint, (HBRUSH)GetStockObject(WHITE_BRUSH)); in paint()
1096 OwnPtr<HBRUSH> yellowBrush(CreateSolidBrush(RGB(255, 255, 0))); in paintIntoBackingStore()
1110 FillRect(bitmapDC, &rect, (HBRUSH)GetStockObject(WHITE_BRUSH)); in paintIntoBackingStore()
1131 OwnPtr<HBRUSH> greenBrush = CreateSolidBrush(RGB(0, 255, 0)); in paintIntoWindow()
/external/webkit/Source/WebCore/
DChangeLog-2010-12-0642280 [WINCE] Use OwnPtr for HBRUSH and HPEN in GraphicsContext