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

  /external/webkit/Source/WebCore/platform/graphics/chromium/
CrossProcessFontLoading.h 37 typedef struct CGFont* CGFontRef;
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;
CrossProcessFontLoading.mm 76 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/
FontCustomPlatformData.h 32 typedef struct CGFont* CGFontRef;
44 FontCustomPlatformData(ATSFontContainerRef container, CGFontRef cgFont)
57 CGFontRef m_cgFont;
GlyphPageTreeNodeMac.cpp 89 RetainPtr<CGFontRef> cgFont(AdoptCF, CTFontCopyGraphicsFont(fontData->platformData().ctFont(), 0));
99 RetainPtr<CGFontRef> runCGFont(AdoptCF, CTFontCopyGraphicsFont(runFont, 0));
FontCustomPlatformData.cpp 70 RetainPtr<CGFontRef> cgFontRef;
76 cgFontRef.adoptCF(CGFontCreateWithDataProvider(dataProvider.get()));
77 if (!cgFontRef)
102 cgFontRef.adoptCF(CGFontCreateWithPlatformFont(&fontRef));
105 if (cgFontRef && !CGFontGetNumberOfGlyphs(cgFontRef.get()))
106 cgFontRef = 0;
108 if (!cgFontRef) {
114 return new FontCustomPlatformData(containerRef, cgFontRef.releaseRef())
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/win/
FontCustomPlatformData.h 32 typedef struct CGFont* CGFontRef;
SimpleFontDataCGWin.cpp 62 CGFontRef font = m_platformData.cgFont();
146 CGFontRef font = m_platformData.cgFont();
FontPlatformDataCGWin.cpp 117 FontPlatformData::FontPlatformData(HFONT hfont, CGFontRef font, float size, bool bold, bool oblique, bool useGDI)
FontCustomPlatformData.cpp 90 RetainPtr<CGFontRef> cgFont(AdoptCF, CGFontCreateWithPlatformFont(&logFont));
  /external/webkit/Source/WebCore/platform/graphics/
FontPlatformData.h 66 typedef struct CGFont* CGFontRef;
90 typedef struct CGFont* CGFontRef;
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_cgFont
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wx/
FontPlatformDataWx.cpp 163 CGFontRef FontPlatformData::cgFont() const
165 CGFontRef cgFont = 0;
FontPlatformData.h 165 CGFontRef cgFont() const;
  /external/webkit/Source/WebCore/platform/wx/wxcode/mac/carbon/
non-kerned-drawing.cpp 55 CGFontRef cgFont = font->platformData().cgFont();
fontprops.mm 46 CGFontRef cgFont;
  /external/webkit/Source/WebCore/platform/mac/
WebCoreSystemInterface.mm 43 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);
WebCoreSystemInterface.h 116 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/
FontPlatformDataCocoa.mm 37 void FontPlatformData::loadFont(NSFont* nsFont, float, NSFont*& outNSFont, CGFontRef& cgFont)
67 CGFontRef cgFont = 0;
135 CGFontRef cgFont = 0;
  /external/webkit/WebKitLibraries/win/include/WebKitSystemInterface/
WebKitSystemInterface.h 45 typedef struct CGFont* CGFontRef;
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/
WebKitSystemInterface.h 138 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/
gammatext.cpp 57 static CGFontRef typefaceToCGFont(const SkTypeface* face) {
  /external/webkit/Source/WebCore/platform/chromium/
PlatformBridge.h 54 typedef struct CGFont* CGFontRef;
  /external/skia/src/ports/
SkFontHost_mac_coretext.cpp 261 static SkScalar getFontScale(CGFontRef cgFont) {
345 CGFontRef cgFont = CTFontCopyGraphicsFont(fontRef, NULL);
607 CGFontRef fCGFont;
    [all...]
SkFontHost_mac_atsui.cpp 275 CGFontRef fontRef = CGFontCreateWithPlatformFont(&fRec.fFontID);

Completed in 669 milliseconds