HomeSort by relevance Sort by last modified time
    Searched refs:CGFontRef (Results 1 - 14 of 14) sorted by null

  /external/webkit/WebCore/platform/graphics/mac/
FontCustomPlatformData.h 28 typedef struct CGFont* CGFontRef;
38 FontCustomPlatformData(ATSFontContainerRef container, ATSFontRef atsFont, CGFontRef cgFont)
47 CGFontRef m_cgFont;
FontPlatformData.h 35 typedef struct CGFont* CGFontRef;
69 FontPlatformData(CGFontRef cgFont, ATSUFontID fontID, float size, bool syntheticBold, bool syntheticOblique)
118 CGFontRef cgFont() const { return m_cgFont.get(); }
120 CGFontRef cgFont() const { return m_cgFont; }
132 RetainPtr<CGFontRef> m_cgFont;
134 CGFontRef m_cgFont; // It is not necessary to refcount this, since either an NSFont owns it or some CachedFont has it referenced.
FontCustomPlatformData.cpp 58 RetainPtr<CGFontRef> cgFontRef;
64 cgFontRef.adoptCF(CGFontCreateWithDataProvider(dataProvider.get()));
65 if (!cgFontRef)
89 cgFontRef.adoptCF(CGFontCreateWithPlatformFont(&fontRef));
92 if (cgFontRef && !CGFontGetNumberOfGlyphs(cgFontRef.get()))
93 cgFontRef = 0;
95 if (!cgFontRef) {
101 return new FontCustomPlatformData(containerRef, fontRef, cgFontRef.releaseRef())
    [all...]
  /external/webkit/WebCore/platform/graphics/win/
FontCustomPlatformData.h 28 typedef struct CGFont* CGFontRef;
36 FontCustomPlatformData(CGFontRef cgFont, HANDLE fontReference, const String& name)
47 CGFontRef m_cgFont;
FontPlatformData.h 37 typedef struct CGFont* CGFontRef;
65 FontPlatformData(HFONT, CGFontRef, float size, bool bold, bool oblique, bool useGDI);
79 CGFontRef cgFont() const { return m_cgFont.get(); }
141 RetainPtr<CGFontRef> m_cgFont;
SimpleFontDataCGWin.cpp 63 CGFontRef font = m_platformData.cgFont();
134 CGFontRef font = m_platformData.cgFont();
FontPlatformDataCGWin.cpp 137 FontPlatformData::FontPlatformData(HFONT hfont, CGFontRef font, float size, bool bold, bool oblique, bool useGDI)
FontCustomPlatformData.cpp 92 RetainPtr<CGFontRef> cgFont(AdoptCF, CGFontCreateWithPlatformFont(&logFont));
199 RetainPtr<CGFontRef> cgFont;
  /external/webkit/WebKitLibraries/win/include/WebKitSystemInterface/
WebKitSystemInterface.h 38 typedef struct CGFont* CGFontRef;
59 void wkGetGlyphAdvances(CGFontRef, const CGAffineTransform&, bool isSystemFont, bool isPrinterFont, CGGlyph, CGSize& advance);
60 void wkGetGlyphs(CGFontRef, const UChar[], CGGlyph[], size_t count);
62 void wkSetFontPlatformInfo(CGFontRef, LOGFONT*, void(*)(void*));
  /external/webkit/WebCore/platform/mac/
WebCoreSystemInterface.mm 41 BOOL (*wkGetGlyphTransformedAdvances)(CGFontRef, NSFont*, CGAffineTransform*, ATSGlyphRef*, CGSize* advance);
93 void (*wkGetGlyphsForCharacters)(CGFontRef, const UniChar[], CGGlyph[], size_t);
97 CFStringRef (*wkCopyFullFontName)(CGFontRef font);
99 CGFontRef (*wkGetCGFontFromNSFont)(NSFont*);
100 void (*wkGetFontMetrics)(CGFontRef, int* ascent, int* descent, int* lineGap, unsigned* unitsPerEm);
WebCoreSystemInterface.h 108 extern BOOL (*wkGetGlyphTransformedAdvances)(CGFontRef, NSFont*, CGAffineTransform*, ATSGlyphRef*, CGSize* advance);
151 extern void (*wkGetGlyphsForCharacters)(CGFontRef, const UniChar[], CGGlyph[], size_t);
157 extern CFStringRef (*wkCopyFullFontName)(CGFontRef font);
159 extern CGFontRef (*wkGetCGFontFromNSFont)(NSFont*);
160 extern void (*wkGetFontMetrics)(CGFontRef, int* ascent, int* descent, int* lineGap, unsigned* unitsPerEm);
  /external/webkit/WebCore/platform/wx/wxcode/mac/carbon/
non-kerned-drawing.cpp 47 typedef void (*CGFontGetGlyphsForUnicharsPtr)(CGFontRef, const UniChar[], const CGGlyph[], size_t);
63 CGFontRef cgFont;
fontprops.mm 39 void (*wkGetFontMetrics)(CGFontRef, int* ascent, int* descent, int* lineGap, unsigned* unitsPerEm);
49 CGFontRef cgFont;
  /external/webkit/WebKitLibraries/
WebKitSystemInterface.h 114 BOOL WKGetGlyphTransformedAdvances(CGFontRef, NSFont*, CGAffineTransform *m, ATSGlyphRef *glyph, CGSize *advance);
122 void WKGetFontMetrics(CGFontRef font, int *ascent, int *descent, int *lineGap, unsigned *unitsPerEm);
124 CGFontRef WKGetCGFontFromNSFont(NSFont *font);
128 CFStringRef WKCopyFullFontName(CGFontRef font);
136 void WKGetGlyphsForCharacters(CGFontRef, const UniChar[], CGGlyph[], size_t);

Completed in 219 milliseconds