HomeSort by relevance Sort by last modified time
    Searched defs:fontFace (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/win/
FontCustomPlatformDataCairo.cpp 54 cairo_font_face_t* fontFace = cairo_win32_font_face_create_for_hfont(font);
55 if (!fontFace)
59 cairo_font_face_set_user_data(fontFace, &bufferKey, buffer, releaseData);
61 return new FontCustomPlatformData(fontFace);
FontPlatformDataCairoWin.cpp 43 cairo_font_face_t* fontFace = cairo_win32_font_face_create_for_hfont(font);
55 m_scaledFont = cairo_scaled_font_create(fontFace, &sizeMatrix, &ctm, fontOptions);
56 cairo_font_face_destroy(fontFace);
59 FontPlatformData::FontPlatformData(cairo_font_face_t* fontFace, float size, bool bold, bool oblique)
82 m_scaledFont = cairo_scaled_font_create(fontFace, &fontMatrix, &ctm, options);
  /external/webkit/Source/WebCore/platform/graphics/freetype/
FontPlatformDataFreeType.cpp 124 RefPtr<cairo_font_face_t> fontFace = adoptRef(cairo_ft_font_face_create_for_pattern(m_pattern.get()));
125 initializeWithFontFace(fontFace.get());
150 FontPlatformData::FontPlatformData(cairo_font_face_t* fontFace, float size, bool bold, bool italic)
157 initializeWithFontFace(fontFace);
242 void FontPlatformData::initializeWithFontFace(cairo_font_face_t* fontFace)
270 m_scaledFont = cairo_scaled_font_create(fontFace, &fontMatrix, &ctm, options);
  /external/webkit/Source/WebCore/css/
CSSFontSelector.cpp 230 RefPtr<CSSFontFace> fontFace;
261 if (!fontFace)
262 fontFace = CSSFontFace::create(static_cast<FontTraitsMask>(traitsMask));
268 fontFace->addSource(source);
272 ASSERT(fontFace);
274 if (fontFace && !fontFace->isValid())
281 fontFace->addRange(range->from(), range->to());
344 familyFontFaces->append(fontFace);
  /external/webkit/Source/WebCore/editing/
EditingStyle.h 165 String fontFace() { return m_applyFontFace; }

Completed in 50 milliseconds