HomeSort by relevance Sort by last modified time
    Searched full:glyph_index (Results 1 - 25 of 103) sorted by null

1 2 3 4 5

  /external/harfbuzz/src/
harfbuzz-buffer-private.h 57 HB_UInt glyph_index,
66 HB_UInt glyph_index,
95 #define ADD_Glyph( buffer, glyph_index, component, ligID ) \
97 (glyph_index), (component), (ligID) \
99 #define REPLACE_Glyph( buffer, glyph_index, nesting_level ) \
100 ( ( error = _hb_buffer_replace_output_glyph( (buffer), (glyph_index), \
harfbuzz-buffer.c 173 HB_UInt glyph_index,
185 glyph->gindex = glyph_index;
320 HB_UInt glyph_index,
324 HB_UShort glyph_data = glyph_index;
353 HB_UInt glyph_index,
365 buffer->out_string[buffer->out_pos-1].gindex = glyph_index;
369 return _hb_buffer_add_output_glyph( buffer, glyph_index, 0xFFFF, 0xFFFF );
harfbuzz-gdef.c 654 HB_UShort glyph_index, array_index, count; local
672 glyph_index = glyphID;
674 glyph_index = glyphID - gcrr[index - 1].End - 1;
679 glyph_index = glyphID - gcrr[index].End - 1;
682 byte = ngc[array_index][glyph_index / 4];
683 bits = byte >> ( 16 - ( glyph_index % 4 + 1 ) * 4 );
989 HB_UShort array_index, glyph_index, count; local
1038 glyph_index = glyphID;
1040 glyph_index = glyphID - gcrr[index - 1].End - 1;
1045 glyph_index = glyphID - gcrr[index].End - 1
    [all...]
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-buffer-private.h 57 HB_UInt glyph_index,
66 HB_UInt glyph_index,
95 #define ADD_Glyph( buffer, glyph_index, component, ligID ) \
97 (glyph_index), (component), (ligID) \
99 #define REPLACE_Glyph( buffer, glyph_index, nesting_level ) \
100 ( ( error = _hb_buffer_replace_output_glyph( (buffer), (glyph_index), \
harfbuzz-buffer.c 173 HB_UInt glyph_index,
185 glyph->gindex = glyph_index;
320 HB_UInt glyph_index,
324 HB_UShort glyph_data = glyph_index;
353 HB_UInt glyph_index,
365 buffer->out_string[buffer->out_pos-1].gindex = glyph_index;
369 return _hb_buffer_add_output_glyph( buffer, glyph_index, 0xFFFF, 0xFFFF );
  /external/chromium_org/third_party/ots/src/
vorg.h 15 uint16_t glyph_index; member in struct:ots::OpenTypeVORGMetrics
vorg.cc 50 if (!table.ReadU16(&rec.glyph_index) ||
54 if ((i != 0) && (rec.glyph_index <= last_glyph_index)) {
59 last_glyph_index = rec.glyph_index;
84 if (!out->WriteU16(rec.glyph_index) ||
  /external/freetype/src/truetype/
ttsubpix.h 80 FT_UInt glyph_index,
89 FT_UInt glyph_index );
93 FT_UInt glyph_index );
ttgload.h 52 FT_UInt glyph_index,
  /external/chromium_org/third_party/freetype/src/autofit/
afmodule.c 59 FT_UInt glyph_index,
65 glyph_index, load_flags );
  /external/chromium_org/third_party/freetype/src/sfnt/
ttsbit.h 51 FT_UInt glyph_index,
67 FT_UInt glyph_index,
  /external/chromium_org/third_party/freetype/src/psaux/
t1decode.h 37 FT_UInt glyph_index );
  /external/chromium_org/third_party/freetype/src/truetype/
ttgload.h 52 FT_UInt glyph_index,
  /external/freetype/src/cff/
cffgload.h 135 FT_UInt glyph_index,
194 CFF_SubFont current_subfont; /* for current glyph_index */
210 FT_UInt glyph_index );
231 FT_UInt glyph_index,
cffload.h 75 FT_UInt glyph_index );
  /external/freetype/src/psaux/
t1decode.h 37 FT_UInt glyph_index );
  /external/freetype/src/sfnt/
ttsbit.h 51 FT_UInt glyph_index,
  /external/chromium_org/ui/gfx/
render_text_linux.cc 423 int glyph_index = 0; local
424 int style_start_glyph_index = glyph_index;
434 const PangoGlyphInfo& glyph = run->glyphs->glyphs[glyph_index];
435 glyphs[glyph_index] = static_cast<uint16>(glyph.glyph);
438 pos[glyph_index].set(x + pango_units_to_double(glyph.geometry.x_offset),
442 ++glyph_index;
443 const size_t glyph_text_index = (glyph_index == glyph_count) ?
444 style_range.end() : GetGlyphTextIndex(run, glyph_index);
456 glyph_index - style_start_glyph_index);
464 style_start_glyph_index = glyph_index;
    [all...]
render_text_linux.h 67 // Get the text index corresponding to the |run|'s |glyph_index|.
68 size_t GetGlyphTextIndex(PangoLayoutRun* run, int glyph_index) const;
  /external/chromium_org/third_party/freetype/src/cff/
cffdrivr.c 141 /* glyph_index :: The index of the glyph in the font file. */
155 FT_UInt glyph_index,
182 error = cff_slot_load( slot, size, glyph_index, load_flags );
227 FT_UInt glyph_index,
248 sid = font->charset.sids[glyph_index];
523 FT_UInt glyph_index,
544 if ( glyph_index > cff->num_glyphs )
550 c = cff->charset.sids[glyph_index];
cffload.h 75 FT_UInt glyph_index );
  /external/chromium_org/third_party/freetype/include/freetype/internal/services/
svcid.h 39 FT_UInt glyph_index,
svgldict.h 39 FT_UInt glyph_index,
  /external/freetype/include/freetype/internal/services/
svcid.h 39 FT_UInt glyph_index,
svgldict.h 39 FT_UInt glyph_index,

Completed in 901 milliseconds

1 2 3 4 5