OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ctFont
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/harfbuzz/
HarfBuzzFaceCoreText.cpp
50
CTFontRef
ctFont
= reinterpret_cast<FontPlatformData*>(fontData)->
ctFont
();
55
if (!CTFontGetGlyphsForCharacters(
ctFont
, characters, cgGlyphs, length))
63
CTFontRef
ctFont
= reinterpret_cast<FontPlatformData*>(fontData)->
ctFont
();
65
CGFloat advance = CTFontGetAdvancesForGlyphs(
ctFont
, kCTFontHorizontalOrientation, &cgGlyph, 0, 1);
76
CTFontRef
ctFont
= reinterpret_cast<FontPlatformData*>(fontData)->
ctFont
();
79
if (CTFontGetBoundingRectsForGlyphs(
ctFont
, kCTFontDefaultOrientation, &cgGlyph, &cgRect, 1) == CGRectNull)
/external/chromium_org/third_party/skia/src/ports/
SkFontHost_mac.cpp
487
CTFontRef
ctFont
= NULL;
524
ctFont
= CTFontCreateWithFontDescriptor(ctFontDesc, 0, NULL);
528
return
ctFont
? NewFromFontRef(
ctFont
, familyName) : NULL;
735
CTFontRef
ctFont
= typeface->fFontRef.get();
736
CFIndex numGlyphs = CTFontGetGlyphCount(
ctFont
);
758
fCTFont = CTFontCreateCopyWithAttributes(
ctFont
, 1, &transform, ctFontDesc);
763
fCTVerticalFont = CTFontCreateCopyWithAttributes(
ctFont
, 1, &transform, NULL);
[
all
...]
/external/skia/src/ports/
SkFontHost_mac.cpp
487
CTFontRef
ctFont
= NULL;
524
ctFont
= CTFontCreateWithFontDescriptor(ctFontDesc, 0, NULL);
528
return
ctFont
? NewFromFontRef(
ctFont
, familyName) : NULL;
735
CTFontRef
ctFont
= typeface->fFontRef.get();
736
CFIndex numGlyphs = CTFontGetGlyphCount(
ctFont
);
758
fCTFont = CTFontCreateCopyWithAttributes(
ctFont
, 1, &transform, ctFontDesc);
763
fCTVerticalFont = CTFontCreateCopyWithAttributes(
ctFont
, 1, &transform, NULL);
[
all
...]
Completed in 117 milliseconds