Searched refs:fFace (Results 1 - 6 of 6) sorted by relevance
/third_party/icu/icu4c/source/samples/layout/ |
H A D | GnomeFontInstance.cpp | 61 fFace = NULL; in GnomeFontInstance() 64 error = FT_New_Face(engine, fontPathName, 0, &fFace); in GnomeFontInstance() 76 error = FT_Set_Char_Size(fFace, 0, pointSize << 6, 92, 92); in GnomeFontInstance() 78 fCairoFace = cairo_ft_font_face_create_for_ft_face(fFace, 0); in GnomeFontInstance() 80 fUnitsPerEM = fFace->units_per_EM; in GnomeFontInstance() 82 fAscent = (le_int32) (yUnitsToPoints(fFace->ascender) * fDeviceScaleY); in GnomeFontInstance() 83 fDescent = (le_int32) -(yUnitsToPoints(fFace->descender) * fDeviceScaleY); in GnomeFontInstance() 84 fLeading = (le_int32) (yUnitsToPoints(fFace->height) * fDeviceScaleY) - fAscent - fDescent; in GnomeFontInstance() 100 if (fFace != NULL) { in ~GnomeFontInstance() 101 FT_Done_Face(fFace); in ~GnomeFontInstance() [all...] |
H A D | GnomeFontInstance.h | 57 FT_Face fFace; member in GnomeFontInstance
|
/third_party/skia/third_party/externals/icu/source/samples/layout/ |
H A D | GnomeFontInstance.cpp | 61 fFace = NULL; in GnomeFontInstance() 64 error = FT_New_Face(engine, fontPathName, 0, &fFace); in GnomeFontInstance() 76 error = FT_Set_Char_Size(fFace, 0, pointSize << 6, 92, 92); in GnomeFontInstance() 78 fCairoFace = cairo_ft_font_face_create_for_ft_face(fFace, 0); in GnomeFontInstance() 80 fUnitsPerEM = fFace->units_per_EM; in GnomeFontInstance() 82 fAscent = (le_int32) (yUnitsToPoints(fFace->ascender) * fDeviceScaleY); in GnomeFontInstance() 83 fDescent = (le_int32) -(yUnitsToPoints(fFace->descender) * fDeviceScaleY); in GnomeFontInstance() 84 fLeading = (le_int32) (yUnitsToPoints(fFace->height) * fDeviceScaleY) - fAscent - fDescent; in GnomeFontInstance() 100 if (fFace != NULL) { in ~GnomeFontInstance() 101 FT_Done_Face(fFace); in ~GnomeFontInstance() [all...] |
H A D | GnomeFontInstance.h | 57 FT_Face fFace; member in GnomeFontInstance
|
/third_party/skia/src/ports/ |
H A D | SkFontHost_FreeType.cpp | 176 SkUniqueFTFace fFace; member in SkTypeface_FreeType::FaceRec 253 fFace.reset(); // Must release face before the library, the library frees existing faces. in ~FaceRec() 258 if (!(fFace->face_flags & FT_FACE_FLAG_MULTIPLE_MASTERS)) { in setupAxes() 269 if (FT_Get_MM_Var(fFace.get(), &variations)) { in setupAxes() 271 rec->fFace->family_name); in setupAxes() 278 rec->fFace->family_name, variations->num_axis, data.getAxisCount()); in setupAxes() 287 if (FT_Set_Var_Design_Coordinates(fFace.get(), data.getAxisCount(), coords.get())) { in setupAxes() 289 rec->fFace->family_name); in setupAxes() 326 rec->fFace.reset(rawFace); in Make() 328 SkASSERT(rec->fFace); in Make() 384 FT_Face fFace; // Borrowed face from fFaceRec. global() member in SkScalerContext_FreeType [all...] |
H A D | SkFontMgr_FontConfigInterface.cpp | 106 : fRequest(request), fFace(std::move(typeface)) {} in Result() 111 size_t bytesUsed() const override { return fRequest->size() + sizeof(fFace); } 116 sk_sp<SkTypeface> fFace; member 135 *face = result.fFace; in findAndRef()
|
Completed in 4 milliseconds