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

1 2 3 4

  /external/icu/icu4c/source/samples/layout/
GDIFontMap.cpp 22 GDIFontMap::GDIFontMap(GDISurface *surface, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status)
23 : FontMap(fileName, pointSize, guiSupport, status), fSurface(surface)
33 const LEFontInstance *GDIFontMap::openFont(const char *fontName, le_int16 pointSize, LEErrorCode &status)
35 LEFontInstance *result = new GDIFontInstance(fSurface, fontName, pointSize, status);
GnomeFontMap.cpp 24 GnomeFontMap::GnomeFontMap(FT_Library engine, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status)
25 : FontMap(fileName, pointSize, guiSupport, status), fEngine(engine)
35 const LEFontInstance *GnomeFontMap::openFont(const char *fontName, le_int16 pointSize, LEErrorCode &status)
37 LEFontInstance *result = new GnomeFontInstance(fEngine, fontName, pointSize, status);
GDIFontMap.h 31 GDIFontMap(GDISurface *surface, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status);
36 virtual const LEFontInstance *openFont(const char *fontName, le_int16 pointSize, LEErrorCode &status);
GnomeFontMap.h 31 GnomeFontMap(FT_Library engine, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status);
36 virtual const LEFontInstance *openFont(const char *fontName, le_int16 pointSize, LEErrorCode &status);
FontMap.h 26 FontMap(const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status);
41 virtual const LEFontInstance *openFont(const char *fontName, le_int16 pointSize, LEErrorCode &status) = 0;
gnomeglue.cpp 55 fm_fontMap *fm_gnomeFontMapOpen(FT_Library engine, const char *fileName, le_int16 pointSize, gs_guiSupport *guiSupport, LEErrorCode *status)
57 return (fm_fontMap *) new GnomeFontMap(engine, fileName, pointSize, (GnomeGUISupport *) guiSupport, *status);
gdiglue.h 33 fm_fontMap *fm_gdiFontMapOpen(rs_surface *surface, const char *fileName, le_int16 pointSize, gs_guiSupport *guiSupport, LEErrorCode *status);
gnomeglue.h 34 fm_fontMap *fm_gnomeFontMapOpen(FT_Library engine, const char *fileName, le_int16 pointSize, gs_guiSupport *guiSupport, LEErrorCode *status);
gdiglue.cpp 59 fm_fontMap *fm_gdiFontMapOpen(rs_surface *surface, const char *fileName, le_int16 pointSize, gs_guiSupport *guiSupport, LEErrorCode *status)
61 return (fm_fontMap *) new GDIFontMap((GDISurface *) surface, fileName, pointSize, (GDIGUISupport *) guiSupport, *status);
GDIFontInstance.h 79 GDIFontInstance(GDISurface *surface, TCHAR *faceName, le_int16 pointSize, LEErrorCode &status);
80 GDIFontInstance(GDISurface *surface, const char *faceName, le_int16 pointSize, LEErrorCode &status);
81 //GDIFontInstance(GDISurface *surface, le_int16 pointSize);
  /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;
rrPrimitivePacket.hpp 58 void EmitVertex (const tcu::Vec4& position, float pointSize, const GenericVec4* varyings, int primitiveID);
rrVertexPacket.hpp 61 float pointSize; //!< Point size, required when rendering points.
  /external/icu/icu4c/source/test/letest/
cfonts.h 18 float pointSize,
21 le_font *le_simpleFontOpen(float pointSize,
cfonts.cpp 19 float pointSize,
22 return (le_font *) new PortableFontInstance(fileName, pointSize, *status);
25 le_font *le_simpleFontOpen(float pointSize,
28 return (le_font *) new SimpleFontInstance(pointSize, *status);
SimpleFontInstance.cpp 28 SimpleFontInstance::SimpleFontInstance(float pointSize, LEErrorCode &status)
29 : fPointSize(pointSize), fAscent(0), fDescent(0)
SimpleFontInstance.h 35 SimpleFontInstance(float pointSize, LEErrorCode &status);
  /external/icu/icu4c/source/test/perf/leperf/
cfonts.h 17 float pointSize,
20 le_font *le_simpleFontOpen(float pointSize,
cfonts.cpp 18 float pointSize,
21 return (le_font *) new PortableFontInstance(fileName, pointSize, *status);
24 le_font *le_simpleFontOpen(float pointSize,
27 return (le_font *) new SimpleFontInstance(pointSize, *status);
SimpleFontInstance.cpp 29 SimpleFontInstance::SimpleFontInstance(float pointSize, LEErrorCode &status)
30 : fPointSize(pointSize), fAscent(0), fDescent(0)
SimpleFontInstance.h 39 SimpleFontInstance(float pointSize, LEErrorCode &status);
  /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/external/vulkancts/modules/vulkan/geometry/
vktGeometryEmitGeometryShaderTests.cpp 106 string shaderGeometry (bool pointSize) const;
158 string EmitTest::shaderGeometry (bool pointSize) const
163 if (pointSize)
179 if (pointSize)
193 if (pointSize)
  /external/ImageMagick/Magick++/lib/Magick++/
Montage.h 61 void pointSize(size_t pointSize_);
62 size_t pointSize(void) const;
  /external/mesa3d/src/mesa/tnl/
t_vb_points.c 38 GLvector4f PointSize;
61 const GLfloat pointSize = ctx->Point.Size;
62 GLfloat (*size)[4] = store->PointSize.data;
69 size[i][0] = pointSize * atten; /* clamping done in rasterization */
73 VB->AttribPtr[_TNL_ATTRIB_POINTSIZE] = &store->PointSize;
90 _mesa_vector4f_alloc( &store->PointSize, 0, VB->Size, 32 );
100 _mesa_vector4f_free( &store->PointSize );

Completed in 537 milliseconds

1 2 3 4