HomeSort by relevance Sort by last modified time
    Searched refs:HDC (Results 126 - 150 of 182) sorted by null

1 2 3 4 56 7 8

  /external/chromium/chrome/browser/renderer_host/
render_widget_host_view_win.h 184 void OnPaint(HDC unused_dc);
186 LRESULT OnEraseBkgnd(HDC dc);
260 // Draw our background over the given HDC in the given |rect|. The background
  /external/skia/legacy/src/core/
SkAdvancedTypefaceMetrics.cpp 256 HDC hdc,
260 bool (*getAdvance)(HDC hdc, int gId, int16_t* data));
  /external/skia/src/core/
SkAdvancedTypefaceMetrics.cpp 262 HDC hdc,
266 bool (*getAdvance)(HDC hdc, int gId, int16_t* data));
  /external/skia/legacy/src/ports/
SkFontHost_win.cpp 117 static unsigned calculateGlyphCount(HDC hdc) {
122 if (GetFontData(hdc, maxpTag, 4, &glyphs, sizeof(glyphs)) != GDI_ERROR) {
133 if (GetGlyphOutlineW(hdc, mid, GGO_METRICS | GGO_GLYPH_INDEX, &gm, 0,
226 static void populate_glyph_to_unicode(HDC fontHdc, const unsigned glyphCount,
312 HDC fDC;
432 HDC fDDC;
1051 HDC hdc = CreateCompatibleDC(NULL); local
1203 HDC hdc = ::CreateCompatibleDC(NULL); local
    [all...]
  /external/skia/src/ports/
SkFontHost_win.cpp 184 static unsigned calculateOutlineGlyphCount(HDC hdc) {
189 if (GetFontData(hdc, maxpTag, 4, &glyphs, sizeof(glyphs)) != GDI_ERROR) {
200 if (GetGlyphOutlineW(hdc, mid, GGO_METRICS | GGO_GLYPH_INDEX, &gm, 0,
219 HDC deviceContext = ::CreateCompatibleDC(NULL);
365 static void populate_glyph_to_unicode(HDC fontHdc, const unsigned glyphCount,
449 HDC fDC;
561 HDC fDDC;
1423 HDC hdc = CreateCompatibleDC(NULL); local
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderThemeWinCE.cpp 65 typedef HRESULT (WINAPI*drawThemeBackgroundPtr)(HANDLE hTheme, HDC hdc, int iPartId,
68 typedef HRESULT (WINAPI*drawThemeEdgePtr)(HANDLE hTheme, HDC hdc, int iPartId,
72 typedef HRESULT (WINAPI*getThemeContentRectPtr)(HANDLE hTheme, HDC hdc, int iPartId,
75 typedef HRESULT (WINAPI*getThemePartSizePtr)(HANDLE hTheme, HDC hdc, int iPartId,
79 typedef HRESULT (WINAPI*getThemeColorPtr)(HANDLE hTheme, HDC hdc, int iPartId
    [all...]
  /external/webkit/Source/WebKit/win/
WebView.h 847 void paint(HDC, LPARAM);
848 void paintIntoWindow(HDC bitmapDC, HDC windowDC, const WebCore::IntRect& dirtyRect);
    [all...]
WebNodeHighlight.cpp 137 HDC hdc = ::CreateCompatibleDC(::GetDC(m_overlay)); local
138 if (!hdc)
151 OwnPtr<HBITMAP> hbmp(::CreateDIBSection(hdc, &bitmapInfo, DIB_RGB_COLORS, &pixels, 0, 0));
153 ::SelectObject(hdc, hbmp.get());
155 GraphicsContext context(hdc);
173 ::UpdateLayeredWindow(m_overlay, ::GetDC(0), &dstPoint, &size, hdc, &srcPoint, 0, &bf, ULW_ALPHA);
175 ::DeleteDC(hdc);
WebScrollBar.cpp 160 /* [in] */ HDC dc,
  /external/quake/quake/src/QW/client/
in_win.c 424 HDC hdc; local
583 HDC hdc; local
753 HDC hdc; local
  /external/quake/quake/src/WinQuake/
in_win.cpp 425 HDC hdc; local
584 HDC hdc; local
757 HDC hdc; local
  /external/webkit/Source/WebCore/platform/graphics/chromium/
UniscribeHelper.cpp 267 HDC dc, int x, int y, int from, int to)
523 HDC tempDC = 0;
722 HDC tempDC = 0;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/gapi/
SDL_gapivideo.c 107 static void GAPI_WinPAINT(_THIS, HDC hdc);
162 HDC hdc = GetDC(NULL); local
163 int result = ExtEscape(hdc, GETRAWFRAMEBUFFER, 0, NULL, sizeof(RawFrameBufferInfo), (char *)&g_RawFrameBufferInfo);
164 ReleaseDC(NULL, hdc);
416 HDC hdc = GetDC(NULL); local
420 result = ExtEscape(hdc, GETGXINFO, 0, NULL, sizeof(gxInfo), (char *)&gxInfo);
496 HDC hdc local
    [all...]
  /external/openssl/crypto/rand/
rand_win.c 741 HDC hScrDC; /* screen DC */
742 HDC hMemDC; /* memory DC */
  /external/webkit/Source/WebCore/platform/graphics/win/
UniscribeController.cpp 251 HDC hdc = GetDC(0); local
253 HFONT oldFont = (HFONT)SelectObject(hdc, hfont);
254 placeResult = ScriptPlace(hdc, fontData->scriptCache(), glyphs.data(), glyphs.size(), visualAttributes.data(),
256 SelectObject(hdc, oldFont);
257 ReleaseDC(0, hdc);
383 HDC hdc = 0; local
388 shapeResult = ScriptShape(hdc, fontData->scriptCache(), str, len, glyphs.size(), &item.a,
393 ASSERT(!hdc);
    [all...]
  /external/webkit/Source/WebKit/wince/
WebView.cpp 233 void WebView::paint(HDC hDC, const IntRect& clipRect)
240 SelectClipRgn(hDC, clipRgn.get());
244 GraphicsContext gc(hDC);
255 HDC hDC = BeginPaint(m_windowHandle, &ps);
264 m_doubleBufferDC = adoptPtr(CreateCompatibleDC(hDC));
265 m_doubleBufferBitmap = adoptPtr(CreateCompatibleBitmap(hDC, rcClient.right, rcClient.bottom));
271 BitBlt(hDC, clipRect.x(), clipRect.y(), clipRect.width(), clipRect.height(), m_doubleBufferDC.get(), clipRect.x(), clipRect.y(), SRCCOPY);
273 paint(hDC, clipRect)
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/win/
WebView.cpp 619 static void drawPageBackground(HDC dc, const RECT& rect)
627 void WebView::paint(HDC hdc, const IntRect& dirtyRect)
634 drawingArea->paint(hdc, dirtyRect, unpaintedRegion);
639 drawPageBackground(hdc, unpaintedRects[i]);
642 drawPageBackground(hdc, dirtyRect);
646 if (m_page->isValid() && m_page->drawingArea() && m_page->drawingArea()->paint(dirtyRect, hdc))
649 drawPageBackground(hdc, dirtyRect);
653 static void flashRects(HDC dc, const IntRect rects[], size_t rectCount, HBRUSH brush)
672 HDC hdc = ::BeginPaint(m_window, &paintStruct) local
690 HDC hdc = reinterpret_cast<HDC>(wParam); local
1402 HDC hdc = ::CreateCompatibleDC(0); local
    [all...]
WebPopupMenuProxyWin.cpp 755 paint(paintStruct.rcPaint, paintStruct.hdc);
765 HDC hdc = reinterpret_cast<HDC>(wParam); local
766 paint(clientRect(), hdc); local
805 void WebPopupMenuProxyWin::paint(const IntRect& damageRect, HDC hdc)
851 HDC localDC = hdc ? hdc : ::GetDC(m_popup)
    [all...]
  /external/webkit/Tools/DumpRenderTree/win/
UIDelegate.cpp 396 /* [in] */ HDC hDC,
411 /* [in] */ HDC hDC,
647 HRESULT STDMETHODCALLTYPE UIDelegate::drawBackground(IWebView* sender, OLE_HANDLE hdc, const RECT* dirtyRect)
UIDelegate.h 313 /* [in] */ HDC hDC,
325 /* [in] */ HDC hDC,
330 virtual HRESULT STDMETHODCALLTYPE drawBackground(IWebView* sender, OLE_HANDLE hdc, const RECT* dirtyRect);
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
app-win32.c 104 HDC dc;
  /external/opencv/otherlibs/highgui/
image.cpp 206 void CImage::DrawToHDC( HDC hDCDst, RECT* pDstRect )
  /external/webkit/Source/WebCore/platform/graphics/wince/
ImageWinCE.cpp 73 OwnPtr<HDC> hdc(CreateCompatibleDC(0));
74 HGDIOBJ hOldBmp = SelectObject(hdc.get(), bmp);
77 GraphicsContext gc(hdc.get());
86 SelectObject(hdc.get(), hOldBmp);
  /external/webkit/Source/WebCore/platform/wince/
PasteboardWinCE.cpp 53 extern HDC hScreenDC;
  /external/webkit/Source/WebKit/win/Interfaces/
IWebUIDelegate.idl     [all...]

Completed in 5930 milliseconds

1 2 3 4 56 7 8