HomeSort by relevance Sort by last modified time
    Searched defs:glyph_id (Results 1 - 13 of 13) sorted by null

  /external/sfntly/cpp/src/sfntly/table/bitmap/
bitmap_glyph_info.h 37 BitmapGlyphInfo(int32_t glyph_id,
49 BitmapGlyphInfo(int32_t glyph_id,
54 int32_t glyph_id() const { return glyph_id_; } function in class:sfntly::BitmapGlyphInfo
  /external/sfntly/cpp/src/test/autogenerated/
cmap_basic_test.cc 113 int32_t glyph_id = GetAttribute(*jt, "gid")->IntValue(); local
114 ASSERT_EQ(cmap->GlyphId(character), glyph_id);
  /frameworks/minikin/include/minikin/
Layout.h 56 unsigned int glyph_id; member in struct:android::LayoutGlyph
  /external/sfntly/cpp/src/sample/subtly/
font_assembler.cc 104 int32_t glyph_id = it->second.glyph_id(); local
118 glyph_id_array->push_back(glyph_id);
184 int32_t resolved_glyph_id = it->glyph_id();
211 // If there are missing glyphs between the last glyph_id and the
font_info.cc 41 GlyphId::GlyphId(int32_t glyph_id, FontId font_id)
42 : glyph_id_(glyph_id),
47 return glyph_id_ == other.glyph_id();
51 return glyph_id_ < other.glyph_id();
207 unresolved_glyph_ids->insert(it->second.glyph_id());
212 int32_t glyph_id = *(unresolved_glyph_ids->begin()); local
214 if (glyph_id < 0 || glyph_id > loca_table_->num_glyphs()) {
216 fprintf(stderr, "%d larger than %d or smaller than 0\n", glyph_id,
221 int32_t length = loca_table_->GlyphLength(glyph_id);
245 int32_t glyph_id = composite_glyph->GlyphIndex(i); local
    [all...]
font_info.h 40 GlyphId(int32_t glyph_id, FontId font_id);
46 int32_t glyph_id() const { return glyph_id_; } function in class:subtly::GlyphId
47 void set_glyph_id(const int32_t glyph_id) { glyph_id_ = glyph_id; }
  /external/harfbuzz_ng/src/
hb-ot-layout-gsub-table.hh 45 hb_codepoint_t glyph_id = iter.get_glyph (); local
46 if (c->glyphs->has (glyph_id))
47 c->glyphs->add ((glyph_id + deltaGlyphID) & 0xFFFFu);
56 hb_codepoint_t glyph_id = iter.get_glyph (); local
57 c->input->add (glyph_id);
58 c->output->add ((glyph_id + deltaGlyphID) & 0xFFFFu);
76 hb_codepoint_t glyph_id = c->buffer->cur().codepoint; local
77 unsigned int index = (this+coverage).get_coverage (glyph_id);
82 glyph_id = (glyph_id + deltaGlyphID) & 0xFFFFu
153 hb_codepoint_t glyph_id = c->buffer->cur().codepoint; local
482 hb_codepoint_t glyph_id = c->buffer->cur().codepoint; local
802 hb_codepoint_t glyph_id = c->buffer->cur().codepoint; local
    [all...]
  /external/sfntly/cpp/src/sample/chromium/
subsetter_impl.cc 206 int32_t glyph_id = comp_glyph->GlyphIndex(j); local
207 if (glyph_id_processed->find(glyph_id) == glyph_id_processed->end() &&
208 glyph_id_remaining.find(glyph_id) == glyph_id_remaining.end()) {
294 // Initialize builder, returns false if glyph_id subset is not covered.
  /external/freetype/src/sfnt/
ttcmap.c 2426 FT_ULong n, start, end, glyph_id, last = 0; local
2462 FT_ULong start, end, glyph_id, char_code; local
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/sfnt/
ttcmap.c 2553 FT_ULong n, start, end, glyph_id, last = 0; local
2590 FT_ULong start, end, glyph_id, char_code; local
    [all...]
  /external/pdfium/third_party/freetype/src/sfnt/
ttcmap.c 2547 FT_ULong n, start, end, glyph_id, last = 0; local
2584 FT_ULong start, end, glyph_id, char_code; local
    [all...]
  /external/skia/src/ports/
SkFontHost_FreeType.cpp 427 const FT_UInt glyph_id = FT_Get_Char_Index(face, letter); local
428 if (!glyph_id)
430 if (FT_Load_Glyph(face, glyph_id, FT_LOAD_NO_SCALE) != 0)
1080 const FT_UInt glyph_id = FT_Get_Char_Index(fFace, letter); local
    [all...]
  /frameworks/minikin/libs/minikin/
Layout.cpp 329 std::cout << glyph.glyph_id << ": " << glyph.x << ", " << glyph.y << std::endl;
879 unsigned int glyph_id = srcGlyph.glyph_id; local
882 LayoutGlyph glyph = {font_ix, glyph_id, x, y};
914 bool ok = face->Render(glyph.glyph_id, paint, &glyphBitmap);
    [all...]

Completed in 3775 milliseconds