HomeSort by relevance Sort by last modified time
    Searched refs:pointSize (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/icu4c/samples/layout/
GDIFontMap.cpp 18 GDIFontMap::GDIFontMap(GDISurface *surface, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status)
19 : FontMap(fileName, pointSize, guiSupport, status), fSurface(surface)
29 const LEFontInstance *GDIFontMap::openFont(const char *fontName, le_int16 pointSize, LEErrorCode &status)
31 LEFontInstance *result = new GDIFontInstance(fSurface, fontName, pointSize, status);
GnomeFontMap.cpp 20 GnomeFontMap::GnomeFontMap(FT_Library engine, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status)
21 : FontMap(fileName, pointSize, guiSupport, status), fEngine(engine)
31 const LEFontInstance *GnomeFontMap::openFont(const char *fontName, le_int16 pointSize, LEErrorCode &status)
33 LEFontInstance *result = new GnomeFontInstance(fEngine, fontName, pointSize, status);
GDIFontMap.h 27 GDIFontMap(GDISurface *surface, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status);
32 virtual const LEFontInstance *openFont(const char *fontName, le_int16 pointSize, LEErrorCode &status);
GnomeFontMap.h 27 GnomeFontMap(FT_Library engine, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status);
32 virtual const LEFontInstance *openFont(const char *fontName, le_int16 pointSize, LEErrorCode &status);
FontMap.h 22 FontMap(const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status);
37 virtual const LEFontInstance *openFont(const char *fontName, le_int16 pointSize, LEErrorCode &status) = 0;
gnomeglue.cpp 52 fm_fontMap *fm_gnomeFontMapOpen(FT_Library engine, const char *fileName, le_int16 pointSize, gs_guiSupport *guiSupport, LEErrorCode *status)
54 return (fm_fontMap *) new GnomeFontMap(engine, fileName, pointSize, (GnomeGUISupport *) guiSupport, *status);
gdiglue.h 30 fm_fontMap *fm_gdiFontMapOpen(rs_surface *surface, const char *fileName, le_int16 pointSize, gs_guiSupport *guiSupport, LEErrorCode *status);
gnomeglue.h 31 fm_fontMap *fm_gnomeFontMapOpen(FT_Library engine, const char *fileName, le_int16 pointSize, gs_guiSupport *guiSupport, LEErrorCode *status);
gdiglue.cpp 56 fm_fontMap *fm_gdiFontMapOpen(rs_surface *surface, const char *fileName, le_int16 pointSize, gs_guiSupport *guiSupport, LEErrorCode *status)
58 return (fm_fontMap *) new GDIFontMap((GDISurface *) surface, fileName, pointSize, (GDIGUISupport *) guiSupport, *status);
GDIFontInstance.h 73 GDIFontInstance(GDISurface *surface, TCHAR *faceName, le_int16 pointSize, LEErrorCode &status);
74 GDIFontInstance(GDISurface *surface, const char *faceName, le_int16 pointSize, LEErrorCode &status);
75 //GDIFontInstance(GDISurface *surface, le_int16 pointSize);
GDIFontInstance.cpp 104 GDIFontInstance::GDIFontInstance(GDISurface *surface, TCHAR *faceName, le_int16 pointSize, LEErrorCode &status)
106 fPointSize(pointSize), fUnitsPerEM(0), fAscent(0), fDescent(0), fLeading(0),
130 pt.x = (int) (pointSize * dpiX / 72);
131 pt.y = (int) (pointSize * dpiY / 72);
135 pt.x = pt.y = pointSize;
189 GDIFontInstance::GDIFontInstance(GDISurface *surface, const char *faceName, le_int16 pointSize, LEErrorCode &status)
191 fPointSize(pointSize), fUnitsPerEM(0), fAscent(0), fDescent(0), fLeading(0),
218 pt.x = (int) (pointSize * fDeviceScaleX);
219 pt.y = (int) (pointSize * fDeviceScaleY);
223 pt.x = pt.y = pointSize;
    [all...]
GnomeFontInstance.cpp 49 GnomeFontInstance::GnomeFontInstance(FT_Library engine, const char *fontPathName, le_int16 pointSize, LEErrorCode &status)
50 : FontTableCache(), fPointSize(pointSize), fUnitsPerEM(0), fAscent(0), fDescent(0), fLeading(0),
70 error = FT_Set_Char_Size(fFace, 0, pointSize << 6, 92, 92);
  /external/icu4c/test/letest/
cfonts.h 14 float pointSize,
17 le_font *le_simpleFontOpen(float pointSize,
cfonts.cpp 15 float pointSize,
18 return (le_font *) new PortableFontInstance(fileName, pointSize, *status);
21 le_font *le_simpleFontOpen(float pointSize,
24 return (le_font *) new SimpleFontInstance(pointSize, *status);
SimpleFontInstance.cpp 23 SimpleFontInstance::SimpleFontInstance(float pointSize, LEErrorCode &status)
24 : fPointSize(pointSize), fAscent(0), fDescent(0)
SimpleFontInstance.h 33 SimpleFontInstance(float pointSize, LEErrorCode &status);
  /external/webkit/Source/WebCore/platform/graphics/win/
SimpleFontDataCGWin.cpp 67 float pointSize = m_platformData.size();
68 float fAscent = scaleEmToUnits(iAscent, unitsPerEm) * pointSize;
69 float fDescent = -scaleEmToUnits(iDescent, unitsPerEm) * pointSize;
70 float fLineGap = scaleEmToUnits(iLineGap, unitsPerEm) * pointSize;
107 m_fontMetrics.setXHeight(scaleEmToUnits(CGRectGetMaxY(xBox), unitsPerEm) * pointSize);
110 m_fontMetrics.setXHeight(scaleEmToUnits(iXHeight, unitsPerEm) * pointSize);
132 float pointSize = m_platformData.size();
133 CGFloat scale = pointSize / fontMetrics().unitsPerEm();
147 float pointSize = m_platformData.size();
149 CGAffineTransform m = CGAffineTransformMakeScale(pointSize, pointSize)
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Font.java 162 static public Font createFromFile(RenderScript rs, Resources res, String path, float pointSize) {
165 int fontId = rs.nFontCreateFromFile(path, pointSize, dpi);
178 static public Font createFromFile(RenderScript rs, Resources res, File path, float pointSize) {
179 return createFromFile(rs, res, path.getAbsolutePath(), pointSize);
185 static public Font createFromAsset(RenderScript rs, Resources res, String path, float pointSize) {
190 int fontId = rs.nFontCreateFromAsset(mgr, path, pointSize, dpi);
201 static public Font createFromResource(RenderScript rs, Resources res, int id, float pointSize) {
217 fontId = rs.nFontCreateFromAssetStream(name, pointSize, dpi, asset);
241 static public Font create(RenderScript rs, Resources res, String familyName, Style fontStyle, float pointSize) {
245 return createFromFile(rs, res, fontPath, pointSize);
    [all...]
  /external/skia/gm/
lcdtext.cpp 21 const int pointSize = 36;
22 textHeight = SkIntToScalar(pointSize);
verttext2.cpp 22 const int pointSize = 24;
23 textHeight = SkIntToScalar(pointSize);
shadertext.cpp 127 const int pointSize = 36;
129 int w = pointSize * textLen;
130 int h = pointSize;
170 paint.setTextSize(SkIntToScalar(pointSize));
  /external/webkit/Source/WebCore/platform/wx/wxcode/mac/carbon/
fontprops.mm 72 float pointSize = font->GetPointSize();
73 float fAscent = scaleEmToUnits(iAscent, unitsPerEm) * pointSize;
74 float fDescent = -scaleEmToUnits(iDescent, unitsPerEm) * pointSize;
75 float fLineGap = scaleEmToUnits(iLineGap, unitsPerEm) * pointSize;
  /external/webkit/Source/WebCore/platform/graphics/mac/
SimpleFontDataMac.mm 213 m_platformData.setFont([NSFont systemFontOfSize:[m_platformData.font() pointSize]]);
231 float pointSize = m_platformData.m_size;
232 float ascent = scaleEmToUnits(iAscent, unitsPerEm) * pointSize;
233 float descent = -scaleEmToUnits(iDescent, unitsPerEm) * pointSize;
234 float lineGap = scaleEmToUnits(iLineGap, unitsPerEm) * pointSize;
287 xHeight = scaleEmToUnits(CGFontGetXHeight(m_platformData.cgFont()), unitsPerEm) * pointSize;
475 float pointSize = platformData().m_size;
476 CGAffineTransform m = CGAffineTransformMakeScale(pointSize, pointSize);
478 LOG_ERROR("Unable to cache glyph widths for %@ %f", [font displayName], pointSize);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wx/
SimpleFontDataWx.cpp 151 float pointSize = m_platformData.size();
152 CGAffineTransform m = CGAffineTransformMakeScale(pointSize, pointSize);
156 // LOG_ERROR("Unable to cache glyph widths for %@ %f", [nsfont displayName], pointSize);
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
RenderContext.java 111 public float pointSize = 1;
283 pointSize = 1;

Completed in 396 milliseconds

1 2 3