/external/icu/icu4c/source/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.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...] |
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);
|
/external/ImageMagick/PerlMagick/demo/ |
shadow-text.pl | 10 pointsize=>60, text=>'Works like magick!',geometry=>'+30+90'); 12 $image->Annotate(font=>'Generic.ttf',fill=>'red',stroke=>'blue',pointsize=>60,
|
shapes.pl | 29 pointsize=>18,text=>'Hello world!'); 31 pointsize=>14,text=>'Goodbye cruel world!'); 33 pointsize=>14,text=>"I'm climbing the wall!",rotate=>90.0);
|
button.pl | 13 gravity=>'Center',pointsize=>18);
|
settings.pl | 20 pointsize => 48,
|
annotate_words.pl | 33 pointsize => 24, 46 pointsize => 24,
|
/external/icu/icu4c/source/test/letest/ |
cfonts.h | 16 float pointSize, 19 le_font *le_simpleFontOpen(float pointSize,
|
cfonts.cpp | 17 float pointSize, 20 return (le_font *) new PortableFontInstance(fileName, pointSize, *status); 23 le_font *le_simpleFontOpen(float pointSize, 26 return (le_font *) new SimpleFontInstance(pointSize, *status);
|
/external/icu/icu4c/source/test/perf/leperf/ |
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);
|
/external/mesa3d/src/mesa/tnl/ |
t_vb_points.c | 37 GLvector4f PointSize; 60 const GLfloat pointSize = ctx->Point.Size; 61 GLfloat (*size)[4] = store->PointSize.data; 68 size[i][0] = pointSize * atten; /* clamping done in rasterization */ 72 VB->AttribPtr[_TNL_ATTRIB_POINTSIZE] = &store->PointSize; 89 _mesa_vector4f_alloc( &store->PointSize, 0, VB->Size, 32 ); 99 _mesa_vector4f_free( &store->PointSize );
|
/external/ImageMagick/PerlMagick/t/ttf/ |
read.t | 32 q!font=>'input.ttf', fill=>'#0000FF', pointsize=>14, size=>'245x16', depth=>8!, 48 pointsize=>14!,
|
/frameworks/base/rs/java/android/renderscript/ |
Font.java | 160 static public Font createFromFile(RenderScript rs, Resources res, String path, float pointSize) { 163 long fontId = rs.nFontCreateFromFile(path, pointSize, dpi); 176 static public Font createFromFile(RenderScript rs, Resources res, File path, float pointSize) { 177 return createFromFile(rs, res, path.getAbsolutePath(), pointSize); 183 static public Font createFromAsset(RenderScript rs, Resources res, String path, float pointSize) { 188 long fontId = rs.nFontCreateFromAsset(mgr, path, pointSize, dpi); 199 static public Font createFromResource(RenderScript rs, Resources res, int id, float pointSize) { 215 fontId = rs.nFontCreateFromAssetStream(name, pointSize, dpi, asset); 239 static public Font create(RenderScript rs, Resources res, String familyName, Style fontStyle, float pointSize) { 243 return createFromFile(rs, res, fontPath, pointSize); [all...] |
/external/deqp/framework/referencerenderer/ |
rrPrimitivePacket.cpp | 38 void GeometryEmitter::EmitVertex (const tcu::Vec4& position, float pointSize, const GenericVec4* varyings, int primitiveID) 51 packet->pointSize = pointSize;
|
/external/ImageMagick/coders/ |
label.c | 147 (fabs(image_info->pointsize) < MagickEpsilon))) 156 for ( ; ; draw_info->pointsize*=2.0) 175 high=draw_info->pointsize; 178 draw_info->pointsize=(low+high)/2.0; 189 low=draw_info->pointsize+0.5; 191 high=draw_info->pointsize-0.5; 196 low=draw_info->pointsize+0.5; 198 high=draw_info->pointsize-0.5; 200 draw_info->pointsize=(low+high)/2.0-0.5; 212 image->columns=(size_t) floor(draw_info->pointsize+draw_info->stroke_width 242 pointsize[MagickPathExtent]; local [all...] |