OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:syntheticBoldOffset
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/win/
FontCGWin.cpp
224
if (font->
syntheticBoldOffset
()) {
226
xform.eDx = font->
syntheticBoldOffset
();
259
if (font->
syntheticBoldOffset
()) {
260
CGContextTranslateCTM(cgContext, font->
syntheticBoldOffset
(), 0);
263
CGContextTranslateCTM(cgContext, -font->
syntheticBoldOffset
(), 0);
269
if (font->
syntheticBoldOffset
()) {
270
CGContextTranslateCTM(cgContext, font->
syntheticBoldOffset
(), 0);
273
CGContextTranslateCTM(cgContext, -font->
syntheticBoldOffset
(), 0);
376
if (font->
syntheticBoldOffset
()) {
377
CGContextSetTextPosition(cgContext, point.x() + translation.width() + shadowOffset.width() + font->
syntheticBoldOffset
(), point.y() + translation.height() + shadowOffset.height())
[
all
...]
UniscribeController.cpp
305
advance += fontData->
syntheticBoldOffset
();
/external/webkit/Source/WebCore/platform/graphics/mac/
FontMac.mm
236
if (font->
syntheticBoldOffset
())
237
showGlyphsWithAdvances(FloatPoint(shadowTextX + font->
syntheticBoldOffset
(), shadowTextY), font, cgContext, glyphBuffer.glyphs(from), glyphBuffer.advances(from), numGlyphs);
242
if (font->
syntheticBoldOffset
())
243
showGlyphsWithAdvances(FloatPoint(point.x() + font->
syntheticBoldOffset
(), point.y()), font, cgContext, glyphBuffer.glyphs(from), glyphBuffer.advances(from), numGlyphs);
ComplexTextController.cpp
469
advance.width += fontData->
syntheticBoldOffset
();
/external/webkit/Source/WebCore/platform/graphics/cairo/
FontCairo.cpp
60
if (font->
syntheticBoldOffset
()) {
62
cairo_translate(context, font->
syntheticBoldOffset
(), 0);
64
cairo_translate(context, -font->
syntheticBoldOffset
(), 0);
/external/webkit/Source/WebCore/platform/graphics/
SimpleFontData.h
119
float
syntheticBoldOffset
() const { return m_syntheticBoldOffset; }
Completed in 1006 milliseconds