Home
last modified time | relevance | path

Searched refs:GlyphOffset (Results 1 – 14 of 14) sorted by relevance

/external/sfntly/cpp/src/sfntly/table/truetype/
Dloca_table.h77 int32_t GlyphOffset(int32_t glyph_id);
153 int32_t GlyphOffset(int32_t glyph_id);
Dloca_table.cc26 int32_t LocaTable::GlyphOffset(int32_t glyph_id) { in GlyphOffset() function in sfntly::LocaTable
128 int32_t LocaTable::Builder::GlyphOffset(int32_t glyph_id) { in GlyphOffset() function in sfntly::LocaTable::Builder
/external/sfntly/cpp/src/sfntly/table/bitmap/
Dindex_sub_table.h66 virtual int32_t GlyphOffset(int32_t glyph_id);
138 virtual int32_t GlyphOffset(int32_t glyph_id);
Dbitmap_size_table.h101 int32_t GlyphOffset(int32_t glyph_id);
145 int32_t GlyphOffset(int32_t glyph_id);
Dbitmap_size_table.cc87 int32_t BitmapSizeTable::GlyphOffset(int32_t glyph_id) { in GlyphOffset() function in sfntly::BitmapSizeTable
92 return subtable->GlyphOffset(glyph_id); in GlyphOffset()
338 int32_t BitmapSizeTable::Builder::GlyphOffset(int32_t glyph_id) { in GlyphOffset() function in sfntly::BitmapSizeTable::Builder
343 return subtable->GlyphOffset(glyph_id); in GlyphOffset()
Dindex_sub_table.cc46 int32_t IndexSubTable::GlyphOffset(int32_t glyph_id) { in GlyphOffset() function in sfntly::IndexSubTable
118 int32_t IndexSubTable::Builder::GlyphOffset(int32_t glyph_id) { in GlyphOffset() function in sfntly::IndexSubTable::Builder
/external/sfntly/cpp/src/test/
Dverify_loca.cc50 EXPECT_EQ(loca->GlyphOffset(i), LOCAS[i]); in VerifyLOCA()
Dbitmap_table_test.cc97 EXPECT_EQ(sub1->GlyphOffset(i), STRIKE4_SUB1_GLYPH_OFFSET[i]); in CommonReadingTest()
/external/sfntly/cpp/src/sfntly/tools/subsetter/
Dglyph_table_subsetter.cc72 int old_offset = loca_table->GlyphOffset(*old_glyph_id); in Subset()
/external/sfntly/cpp/src/sample/subtly/
Dfont_info.cc228 int32_t offset = loca_table_->GlyphOffset(glyph_id); in ResolveCompositeGlyphs()
Dfont_assembler.cc191 int32_t offset = loca_table->GlyphOffset(resolved_glyph_id); in AssembleGlyphAndLocaTables()
/external/sfntly/cpp/src/sample/chromium/
Dsubsetter_impl.cc234 int32_t offset = loca_table->GlyphOffset(*i); in ResolveCompositeGlyphs()
293 int32_t offset = loca_table->GlyphOffset(*i); in SetupGlyfBuilders()
/external/mesa3d/src/imgui/
Dimgui_draw.cpp1368 GlyphOffset = ImVec2(0.0f, 0.0f); in ImFontConfig()
1689 r.GlyphOffset = offset; in AddCustomRectFontGlyph()
2013 const float font_off_x = cfg.GlyphOffset.x; in ImFontAtlasBuildWithStbTruetype()
2014 const float font_off_y = cfg.GlyphOffset.y + (float)(int)(dst_font->Ascent + 0.5f); in ImFontAtlasBuildWithStbTruetype()
2140 …r.Font->AddGlyph((ImWchar)r.ID, r.GlyphOffset.x, r.GlyphOffset.y, r.GlyphOffset.x + r.Width, r.Gly… in ImFontAtlasBuildFinish()
Dimgui.h1923 ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input. member
2038 …ImVec2 GlyphOffset; // Input // For custom font glyphs only (ID<0x10000): glyph dis… member
2040 … 0xFFFFFFFF; Width = Height = 0; X = Y = 0xFFFF; GlyphAdvanceX = 0.0f; GlyphOffset = ImVec2(0,0); … in CustomRect()