Searched refs:num_glyphs (Results 26 - 50 of 52) sorted by relevance

123

/external/freetype/include/freetype/internal/
H A Dtttypes.h579 /* num_glyphs :: For index formats 4 and 5. This is the number of */
600 FT_ULong num_glyphs; member in struct:TT_SBit_RangeRec_
759 /* num_glyphs :: The number of named glyphs in the table. */
769 FT_UShort num_glyphs; member in struct:TT_Post_20Rec_
787 /* num_glyphs :: The number of glyphs in the table. */
794 FT_UShort num_glyphs; member in struct:TT_Post_25_
H A Dt1types.h122 FT_Int num_glyphs; member in struct:T1_FontRec_
H A Dpsaux.h670 FT_UInt num_glyphs; member in struct:T1_DecoderRec_
/external/freetype/src/sfnt/
H A Dsfdriver.c179 if ( root->num_glyphs < 0 )
181 else if ( ( FT_ULong ) root->num_glyphs < FT_UINT_MAX )
182 max_gid = ( FT_UInt ) root->num_glyphs;
185 FT_UINT_MAX, root->num_glyphs ));
H A Dsfobjs.c742 face->root.num_glyphs = face->max_profile.numGlyphs;
/external/skia/include/core/
H A DSkAdvancedTypefaceMetrics.h145 int num_glyphs,
/external/webkit/Source/WebCore/platform/graphics/android/
H A DFontAndroid.cpp426 unsigned length() const { return m_item.num_glyphs; }
779 m_item.num_glyphs = size;
785 int size = m_item.num_glyphs;
798 // HB_ShapeItem() resets m_item.num_glyphs. If the previous call to
800 // the array may be larger than the current value of m_item.num_glyphs.
801 // So, we need to reset the num_glyphs to the capacity of the array.
802 m_item.num_glyphs = m_glyphsArrayCapacity;
806 // HB_ShapeItem fills in m_item.num_glyphs with the needed size.
808 createGlyphArrays(m_item.num_glyphs << 1);
820 unsigned logClustersIndex = isRTL && m_item.num_glyphs
[all...]
/external/freetype/src/autofit/
H A Dafglobal.c68 FT_Long glyph_count; /* same as face->num_glyphs */
191 face->num_glyphs * sizeof ( FT_Byte ) ) )
194 globals->glyph_count = face->num_glyphs;
/external/freetype/src/truetype/
H A Dttdriver.c306 if ( glyph_index >= (FT_UInt)face->num_glyphs &&
309 if ( glyph_index >= (FT_UInt)face->num_glyphs )
/external/webkit/Source/WebCore/platform/wx/wxcode/gtk/
H A Dnon-kerned-drawing.cpp170 if (glyphs->num_glyphs == 1)
173 g_warning("didn't get 1 glyph but %d", glyphs->num_glyphs);
/external/freetype/src/base/
H A Dftpatent.c169 for ( gindex = 0; gindex < (FT_UInt)face->num_glyphs; gindex++ )
H A Dftobjs.c3241 if ( face && face->charmap && face->num_glyphs )
3244 if ( gindex == 0 || gindex >= (FT_UInt)face->num_glyphs )
3266 if ( face && face->charmap && face->num_glyphs )
3274 } while ( gindex >= (FT_UInt)face->num_glyphs );
3508 (FT_Long)glyph_index <= face->num_glyphs &&
/external/freetype/src/cff/
H A Dcffcmap.c152 cff->num_glyphs,
H A Dcffdrivr.c282 for ( i = 0; i < cff->num_glyphs; i++ )
544 if ( glyph_index > cff->num_glyphs )
H A Dcffobjs.c595 cffface->num_glyphs = cff->num_glyphs;
725 cffface->num_glyphs = cff->charset.max_cid + 1;
727 cffface->num_glyphs = cff->charstrings_index.count;
H A Dcffgload.c629 for ( n = 0; n < cff->num_glyphs; n++ )
2550 for ( glyph_index = 0; glyph_index < face->root.num_glyphs;
2617 else if ( glyph_index >= cff->num_glyphs )
/external/harfbuzz/src/
H A Dharfbuzz-shaper-private.h149 shaper_item->glyphs, shaper_item->num_glyphs, \
H A Dharfbuzz-shaper.h277 hb_uint32 num_glyphs; /* input: capacity of output arrays <glyphs>, <attributes>, <advances>, <offsets>, and <log_clusters>; */ member in struct:HB_ShaperItem_
280 HB_Glyph *glyphs; /* output: <num_glyphs> indices of shaped glyphs */
281 HB_GlyphAttributes *attributes; /* output: <num_glyphs> glyph attributes */
282 HB_Fixed *advances; /* output: <num_glyphs> advances */
283 HB_FixedPoint *offsets; /* output: <num_glyphs> offsets */
H A Dharfbuzz-gdef.c788 HB_UShort num_glyphs,
922 if ( gcrr[count - 1].End != num_glyphs - 1 )
925 ( num_glyphs - gcrr[count - 1].End + 2 ) / 4,
930 else if ( num_glyphs > 0 )
933 ( num_glyphs + 3 ) / 4,
938 gdef->LastGlyph = num_glyphs - 1;
787 HB_GDEF_Build_ClassDefinition( HB_GDEFHeader* gdef, HB_UShort num_glyphs, HB_UShort glyph_count, HB_UShort* glyph_array, HB_UShort* class_array ) argument
H A Dharfbuzz-indic.cpp1211 if ((int)item->num_glyphs < len+4) {
1212 item->num_glyphs = len+4;
1521 const int availableGlyphs = item->num_glyphs;
1525 item->glyphs, &item->num_glyphs,
1678 while (i < item->num_glyphs) {
1681 if (i >= item->num_glyphs)
1689 item->num_glyphs = j;
1844 syllable.num_glyphs = item->num_glyphs - first_glyph;
1846 IDEBUG("syllable shaping failed, syllable requests %d glyphs", syllable.num_glyphs);
[all...]
H A Dharfbuzz-shaper.cpp412 int i = item->num_glyphs;
436 assert(length <= item->num_glyphs);
439 // qDebug("QScriptEngine::heuristicSetGlyphAttributes, num_glyphs=%d", item->num_glyphs);
460 // assert(glyph_pos == item->num_glyphs);
561 shaper_item->num_glyphs = shaper_item->initialGlyphCount;
568 shaper_item->glyphs, &shaper_item->num_glyphs,
575 const int availableGlyphs = shaper_item->num_glyphs;
1151 face->length = item->num_glyphs;
1223 item->num_glyphs
[all...]
H A Dharfbuzz-greek.c358 const int availableGlyphs = shaper_item->num_glyphs;
429 shaper_item->glyphs, &shaper_item->num_glyphs,
H A Dharfbuzz-arabic.c1034 const int nglyphs = item->num_glyphs;
1050 HB_INIT_STACKARRAY(hb_uint32, apply, item->num_glyphs);
1070 for (i = 0; i < (int)item->num_glyphs; i++) {
1132 item->glyphs, &item->num_glyphs,
/external/freetype/src/psaux/
H A Dt1decode.c145 for ( n = 0; n < decoder->num_glyphs; n++ )
1587 decoder->num_glyphs = (FT_UInt)face->num_glyphs;
/external/freetype/include/freetype/
H A Dfreetype.h796 /* num_glyphs :: The number of glyphs in the face. If the */
920 FT_Long num_glyphs; member in struct:FT_FaceRec_

Completed in 1081 milliseconds

123