OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fontRef
(Results
1 - 8
of
8
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/mac/
FontCustomPlatformData.cpp
95
ATSFontRef
fontRef
= 0;
96
ATSFontFindFromContainer(containerRef, kATSOptionFlagsDefault, 1, &
fontRef
, NULL);
97
if (!
fontRef
) {
102
cgFontRef.adoptCF(CGFontCreateWithPlatformFont(&
fontRef
));
/external/webkit/Source/WebCore/platform/graphics/wx/
FontPlatformDataWx.cpp
169
ATSFontRef
fontRef
;
171
fontRef
= FMGetATSFontRefFromFont(m_atsuFontID);
173
if (
fontRef
)
174
cgFont = CGFontCreateWithPlatformFont((void*)&
fontRef
);
/external/webkit/Source/WebCore/platform/wx/wxcode/mac/carbon/
fontprops.mm
51
ATSFontRef
fontRef
;
53
fontRef
= FMGetATSFontRefFromFont(font->MacGetATSUFontID());
55
if (
fontRef
)
56
cgFont = CGFontCreateWithPlatformFont((void*)&
fontRef
);
/external/webkit/Source/WebCore/platform/graphics/chromium/
CrossProcessFontLoading.mm
65
ATSFontRef
fontRef
= CTFontGetPlatformFont(toCTFontRef(srcFont), 0);
66
if (!
fontRef
)
69
if (ATSFontGetContainer(
fontRef
, 0, &fontContainer) != noErr)
/external/skia/src/ports/
SkFontHost_freetype_mac.cpp
103
SkTypeface* SkCreateTypefaceFromCTFont(CTFontRef
fontRef
) {
SkFontHost_mac_coretext.cpp
336
static SkFontID CTFontRef_to_SkFontID(CTFontRef
fontRef
) {
337
ATSFontRef ats = CTFontGetPlatformFont(
fontRef
, NULL);
345
CGFontRef cgFont = CTFontCopyGraphicsFont(
fontRef
, NULL);
354
id = (SkFontID) (uintptr_t)
fontRef
;
364
CTFontRef
fontRef
, const char name[])
366
SkASSERT(
fontRef
);
367
fFontRef =
fontRef
; // caller has already called CFRetain for us
377
static SkTypeface* NewFromFontRef(CTFontRef
fontRef
, const char name[]) {
378
SkASSERT(
fontRef
);
380
SkTypeface::Style style = computeStyleBits(
fontRef
, &isMonospace)
[
all
...]
SkFontHost_mac_atsui.cpp
275
CGFontRef
fontRef
= CGFontCreateWithPlatformFont(&fRec.fFontID);
276
CGContextSetFont(contextRef,
fontRef
);
/external/skia/samplecode/
SampleXfermodesBlur.cpp
36
SkTypeface* SkCreateTypefaceFromCTFont(CTFontRef
fontRef
);
Completed in 92 milliseconds