Searched refs:CGFontRef (Results 1 - 23 of 23) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DCrossProcessFontLoading.h37 typedef struct CGFont* CGFontRef; typedef in typeref:struct:CGFont
47 // * Holder for the CGFontRef & ATSFontRef belonging to the activated font.
79 // Get cached CGFontRef corresponding to the in-memory font.
80 CGFontRef cgFont() { return m_cgFont.get(); }
93 WTF::RetainPtr<CGFontRef> m_cgFont;
H A DCrossProcessFontLoading.mm76 bool isLastResortFont(CGFontRef cgFont)
180 // * cgFont - on output this contains the CGFontRef corresponding to the NSFont
184 void FontPlatformData::loadFont(NSFont* nsFont, float fontSize, NSFont*& outNSFont, CGFontRef& cgFont)
189 // Release old CGFontRef since it points at the LastResort font which we don't want.
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DFontCustomPlatformData.h32 typedef struct CGFont* CGFontRef; typedef in typeref:struct:CGFont
44 FontCustomPlatformData(ATSFontContainerRef container, CGFontRef cgFont)
57 CGFontRef m_cgFont;
H A DGlyphPageTreeNodeMac.cpp89 RetainPtr<CGFontRef> cgFont(AdoptCF, CTFontCopyGraphicsFont(fontData->platformData().ctFont(), 0));
99 RetainPtr<CGFontRef> runCGFont(AdoptCF, CTFontCopyGraphicsFont(runFont, 0));
H A DFontCustomPlatformData.cpp70 RetainPtr<CGFontRef> cgFontRef;
/external/webkit/Source/WebCore/platform/graphics/win/
H A DFontCustomPlatformData.h32 typedef struct CGFont* CGFontRef; typedef in typeref:struct:CGFont
H A DSimpleFontDataCGWin.cpp62 CGFontRef font = m_platformData.cgFont();
146 CGFontRef font = m_platformData.cgFont();
H A DFontPlatformDataCGWin.cpp117 FontPlatformData::FontPlatformData(HFONT hfont, CGFontRef font, float size, bool bold, bool oblique, bool useGDI)
H A DFontCustomPlatformData.cpp90 RetainPtr<CGFontRef> cgFont(AdoptCF, CGFontCreateWithPlatformFont(&logFont));
/external/webkit/Source/WebCore/platform/graphics/
H A DFontPlatformData.h66 typedef struct CGFont* CGFontRef; typedef in typeref:struct:CGFont
90 typedef struct CGFont* CGFontRef; typedef in typeref:struct:CGFont
185 FontPlatformData(CGFontRef cgFont, float size, bool syntheticBold, bool syntheticOblique, FontOrientation orientation,
203 FontPlatformData(HFONT, CGFontRef, float size, bool syntheticBold, bool syntheticOblique, bool useGDI);
223 CGFontRef cgFont() const { return m_cgFont.get(); }
225 CGFontRef cgFont() const { return m_cgFont; }
232 CGFontRef cgFont() const { return m_cgFont.get(); }
307 // * cgFont - CGFontRef representing the input font at the specified point size.
308 void loadFont(NSFont*, float fontSize, NSFont*& outNSFont, CGFontRef&);
335 RetainPtr<CGFontRef> m_cgFon
[all...]
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DFontPlatformDataWx.cpp163 CGFontRef FontPlatformData::cgFont() const
165 CGFontRef cgFont = 0;
H A DFontPlatformData.h165 CGFontRef cgFont() const;
/external/webkit/Source/WebCore/platform/wx/wxcode/mac/carbon/
H A Dnon-kerned-drawing.cpp55 CGFontRef cgFont = font->platformData().cgFont();
H A Dfontprops.mm46 CGFontRef cgFont;
/external/webkit/Source/WebCore/platform/mac/
H A DWebCoreSystemInterface.mm43 BOOL (*wkGetGlyphTransformedAdvances)(CGFontRef, NSFont*, CGAffineTransform*, ATSGlyphRef*, CGSize* advance);
102 void (*wkGetGlyphsForCharacters)(CGFontRef, const UniChar[], CGGlyph[], size_t);
106 CFStringRef (*wkCopyFullFontName)(CGFontRef font);
108 CGFontRef (*wkGetCGFontFromNSFont)(NSFont*);
109 void (*wkGetFontMetrics)(CGFontRef, int* ascent, int* descent, int* lineGap, unsigned* unitsPerEm);
H A DWebCoreSystemInterface.h116 extern BOOL (*wkGetGlyphTransformedAdvances)(CGFontRef, NSFont*, CGAffineTransform*, ATSGlyphRef*, CGSize* advance);
166 extern void (*wkGetGlyphsForCharacters)(CGFontRef, const UniChar[], CGGlyph[], size_t);
172 extern CFStringRef (*wkCopyFullFontName)(CGFontRef font);
174 extern CGFontRef (*wkGetCGFontFromNSFont)(NSFont*);
175 extern void (*wkGetFontMetrics)(CGFontRef, int* ascent, int* descent, int* lineGap, unsigned* unitsPerEm);
/external/webkit/Source/WebCore/platform/graphics/cocoa/
H A DFontPlatformDataCocoa.mm37 void FontPlatformData::loadFont(NSFont* nsFont, float, NSFont*& outNSFont, CGFontRef& cgFont)
67 CGFontRef cgFont = 0;
135 CGFontRef cgFont = 0;
/external/webkit/WebKitLibraries/win/include/WebKitSystemInterface/
H A DWebKitSystemInterface.h45 typedef struct CGFont* CGFontRef; typedef in typeref:struct:CGFont
78 void wkGetGlyphAdvances(CGFontRef, const CGAffineTransform&, bool isSystemFont, bool isPrinterFont, CGGlyph, CGSize& advance);
79 void wkGetGlyphs(CGFontRef, const UChar[], CGGlyph[], size_t count);
/external/webkit/WebKitLibraries/
H A DWebKitSystemInterface.h138 BOOL WKGetGlyphTransformedAdvances(CGFontRef, NSFont*, CGAffineTransform *m, ATSGlyphRef *glyph, CGSize *advance);
146 void WKGetFontMetrics(CGFontRef font, int *ascent, int *descent, int *lineGap, unsigned *unitsPerEm);
148 CGFontRef WKGetCGFontFromNSFont(NSFont *font);
152 CFStringRef WKCopyFullFontName(CGFontRef font);
160 void WKGetGlyphsForCharacters(CGFontRef, const UniChar[], CGGlyph[], size_t);
/external/skia/gm/
H A Dgammatext.cpp57 static CGFontRef typefaceToCGFont(const SkTypeface* face) {
/external/webkit/Source/WebCore/platform/chromium/
H A DPlatformBridge.h54 typedef struct CGFont* CGFontRef; typedef in typeref:struct:CGFont
/external/skia/src/ports/
H A DSkFontHost_mac_coretext.cpp261 static SkScalar getFontScale(CGFontRef cgFont) {
345 CGFontRef cgFont = CTFontCopyGraphicsFont(fontRef, NULL);
607 CGFontRef fCGFont;
1494 CGFontRef cg = CGFontCreateWithDataProvider(provider);
1964 CGFontRef cgFont = CTFontCopyGraphicsFont(ctFont, NULL);
H A DSkFontHost_mac_atsui.cpp275 CGFontRef fontRef = CGFontCreateWithPlatformFont(&fRec.fFontID);

Completed in 297 milliseconds