OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RefCountedGDIHandle
(Results
1 - 5
of
5
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/win/
RefCountedGDIHandle.h
31
template <typename T> class
RefCountedGDIHandle
: public RefCounted<
RefCountedGDIHandle
<T> > {
33
static PassRefPtr<
RefCountedGDIHandle
> create(T handle)
35
return adoptRef(new
RefCountedGDIHandle
<T>(handle));
38
static PassRefPtr<
RefCountedGDIHandle
<T> > createDeleted()
40
return adoptRef(new
RefCountedGDIHandle
<T>(reinterpret_cast<T>(-1)));
43
~
RefCountedGDIHandle
()
60
RefCountedGDIHandle
(T handle)
FontPlatformDataWin.cpp
39
: m_font(
RefCountedGDIHandle
<HFONT>::create(font))
FontPlatformDataCGWin.cpp
124
, m_font(
RefCountedGDIHandle
<HFONT>::create(hfont))
/external/webkit/Source/WebCore/platform/graphics/
FontPlatformData.h
51
#include "
RefCountedGDIHandle
.h"
330
RefPtr<
RefCountedGDIHandle
<HFONT> > m_font;
/external/webkit/Source/WebKit/win/
WebView.h
35
#include <WebCore/
RefCountedGDIHandle
.h>
61
typedef WebCore::
RefCountedGDIHandle
<HBITMAP> RefCountedHBITMAP;
62
typedef WebCore::
RefCountedGDIHandle
<HRGN> RefCountedHRGN;
[
all
...]
Completed in 135 milliseconds