HomeSort by relevance Sort by last modified time
    Searched refs:HFONT (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/public/platform/win/
WebSandboxSupport.h 34 typedef struct HFONT__* HFONT;
47 virtual bool ensureFontLoaded(HFONT) = 0;
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-uniscribe.h 40 HFONT
hb-uniscribe.cc 481 HFONT hfont; member in struct:hb_uniscribe_shaper_font_data_t
518 data->hfont = CreateFontIndirectW (&data->log_font);
519 if (unlikely (!data->hfont)) {
525 if (!SelectObject (data->hdc, data->hfont)) {
539 if (data->hfont)
540 DeleteObject (data->hfont);
554 HFONT
559 return font_data->hfont;
  /external/harfbuzz_ng/src/
hb-uniscribe.h 40 HFONT
hb-uniscribe.cc 480 HFONT hfont; member in struct:hb_uniscribe_shaper_font_data_t
517 data->hfont = CreateFontIndirectW (&data->log_font);
518 if (unlikely (!data->hfont)) {
524 if (!SelectObject (data->hdc, data->hfont)) {
538 if (data->hfont)
539 DeleteObject (data->hfont);
553 HFONT
558 return font_data->hfont;
  /external/chromium_org/ui/gfx/
platform_font_win.h 73 // HFONT (an opaque handle into Windows). To avoid lots of GDI object
74 // allocation and destruction, Font indirectly refers to the HFONT by way of
75 // an HFontRef. That is, every Font has an HFontRef, which has an HFONT.
77 // HFontRef is reference counted. Upon deletion, it deletes the HFONT.
78 // By making HFontRef maintain the reference to the HFONT, multiple
79 // HFontRefs can share the same HFONT, and Font can provide value semantics.
82 // This constructor takes control of the HFONT, and will delete it when
84 HFontRef(HFONT hfont,
93 HFONT hfont() const { return hfont_; function in class:gfx::PlatformFontWin::HFontRef
    [all...]
platform_font_win.cc 66 void GetTextMetricsForFont(HDC hdc, HFONT font, TEXTMETRIC* text_metrics) {
126 HFONT hfont = CreateFontIndirect(&font_info); local
127 return DeriveWithCorrectedSize(hfont);
140 HFONT hfont = CreateFontIndirect(&font_info); local
141 return Font(new PlatformFontWin(CreateHFontRef(hfont)));
171 // the font name taken from the HFONT handle, but it's not the name that comes
183 base::win::ScopedSelectObject font(memory_dc.Get(), font_ref_->hfont());
203 return font_ref_->hfont();
    [all...]
native_widget_types.h 58 typedef struct HFONT__* HFONT;
138 typedef HFONT NativeFont;
  /external/chromium_org/third_party/icu/source/samples/layout/
GDIFontInstance.h 55 HFONT fFont;
79 HFONT getFont() const;
106 inline HFONT GDIFontInstance::getFont() const
  /external/icu/icu4c/source/samples/layout/
GDIFontInstance.h 55 HFONT fFont;
79 HFONT getFont() const;
106 inline HFONT GDIFontInstance::getFont() const
  /external/chromium_org/base/win/
scoped_gdi_object.h 71 typedef ScopedGDIObject<HFONT> ScopedHFONT;
  /external/chromium_org/ui/base/l10n/
l10n_util_win.cc 50 HFONT hfont = CreateFont(12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, local
52 if (hfont == NULL)
55 HGDIOBJ oldFont = static_cast<HFONT>(SelectObject(dc, hfont));
60 DeleteObject(hfont);
182 HFONT hfont = CreateFontIndirect(&logfont); local
183 if (hfont)
184 SetWindowFont(hwnd, hfont, FALSE)
    [all...]
  /external/chromium_org/content/common/
font_cache_dispatcher_win.cc 34 HFONT font_handle = CreateFontIndirect(&font);
118 HFONT font_;
  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_win.cpp 224 HFONT font = CreateFontIndirect(&lf);
227 HFONT savefont = (HFONT)SelectObject(deviceContext, font);
450 void init(HFONT font, const XFORM& xform) {
460 HFONT fFont;
579 HFONT fSavefont;
580 HFONT fFont;
692 fSavefont = (HFONT)SelectObject(fDDC, fFont);
    [all...]
  /external/chromium_org/content/ppapi_plugin/
ppapi_webkitplatformsupport_impl.cc 47 virtual bool ensureFontLoaded(HFONT);
75 HFONT font) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderThemeChromiumFontProviderWin.cpp 93 HFONT hFont = CreateFontIndirect(&font);
94 if (hFont) {
97 HGDIOBJ hObject = SelectObject(hdc, hFont);
103 DeleteObject(hFont);
  /external/chromium_org/chrome/renderer/
chrome_render_process_observer.cc 140 HFONT font = static_cast<HFONT>(GetCurrentObject(hdc, OBJ_FONT));
  /external/chromium_org/third_party/npapi/npspy/windows/
dirpick.cpp 535 HFONT hFont = (HFONT)SendMessage(hWnd, WM_GETFONT, 0, 0L);
536 if(hFont == NULL)
537 hFont = GetStockFont(SYSTEM_FONT);
539 HFONT hFontOld = SelectFont(hDC, hFont);
gui_main.cpp 172 HFONT hFont = GetStockFont(ANSI_FIXED_FONT);
173 SetWindowFont(GetDlgItem(hWnd, IDC_MAIN_OUTPUT), hFont, FALSE);
  /external/chromium_org/chrome/utility/
printing_handler.cc 163 HFONT font = static_cast<HFONT>(GetCurrentObject(hdc, OBJ_FONT));
  /external/chromium_org/remoting/host/
disconnect_window_win.cc 100 dc, (HFONT)SendMessage(control, WM_GETFONT, 0, 0));
  /external/chromium_org/skia/ext/
vector_platform_device_emf_win.cc 377 HFONT fNewFont;
378 HFONT fSavedFont;
397 fSavedFont = (HFONT)::SelectObject(hdc, fNewFont);
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
main_wnd.cc 65 HFONT GetDefaultFont() {
66 static HFONT font = reinterpret_cast<HFONT>(GetStockObject(DEFAULT_GUI_FONT));
  /external/chromium_org/content/renderer/
renderer_webkitplatformsupport_impl.cc 199 virtual bool ensureFontLoaded(HFONT);
539 HFONT font) {
    [all...]
  /external/chromium_org/content/browser/renderer_host/
render_message_filter.cc     [all...]

Completed in 1899 milliseconds

1 2