OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GlyphTable
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/truetype/
glyph_table.cc
27
const int32_t
GlyphTable
::SimpleGlyph::kFLAG_ONCURVE = 1;
28
const int32_t
GlyphTable
::SimpleGlyph::kFLAG_XSHORT = 1 << 1;
29
const int32_t
GlyphTable
::SimpleGlyph::kFLAG_YSHORT = 1 << 2;
30
const int32_t
GlyphTable
::SimpleGlyph::kFLAG_REPEAT = 1 << 3;
31
const int32_t
GlyphTable
::SimpleGlyph::kFLAG_XREPEATSIGN = 1 << 4;
32
const int32_t
GlyphTable
::SimpleGlyph::kFLAG_YREPEATSIGN = 1 << 5;
34
const int32_t
GlyphTable
::CompositeGlyph::kFLAG_ARG_1_AND_2_ARE_WORDS = 1 << 0;
35
const int32_t
GlyphTable
::CompositeGlyph::kFLAG_ARGS_ARE_XY_VALUES = 1 << 1;
36
const int32_t
GlyphTable
::CompositeGlyph::kFLAG_ROUND_XY_TO_GRID = 1 << 2;
37
const int32_t
GlyphTable
::CompositeGlyph::kFLAG_WE_HAVE_A_SCALE = 1 << 3
[
all
...]
glyph_table.h
35
class
GlyphTable
: public SubTableContainerTable,
36
public RefCounted<
GlyphTable
> {
53
// Incoming table_builder is
GlyphTable
::Builder*.
60
GetBuilder(
GlyphTable
::Builder* table_builder,
63
GetBuilder(
GlyphTable
::Builder* table_builder,
73
friend class
GlyphTable
::Builder;
77
static CALLER_ATTACH Glyph* GetGlyph(
GlyphTable
* table,
107
}; // class
GlyphTable
::Glyph
108
typedef Ptr<
GlyphTable
::Glyph::Builder> GlyphBuilderPtr;
112
public RefCounted<
GlyphTable
::Builder>
[
all
...]
/external/chromium_org/third_party/sfntly/cpp/src/sample/chromium/
subsetter_impl.h
66
GlyphTable
* glyf, LocaTable* loca);
subsetter_impl.cc
160
bool ResolveCompositeGlyphs(
GlyphTable
* glyph_table,
203
Ptr<
GlyphTable
::CompositeGlyph> comp_glyph =
204
down_cast<
GlyphTable
::CompositeGlyph*>(glyph.p_);
225
GlyphTable
* glyph_table,
233
down_cast<
GlyphTable
::Builder*>(font_builder->NewTableBuilder(Tag::glyf));
247
GlyphTable
::GlyphBuilderList* glyph_builders =
647
down_cast<
GlyphTable
*>(font_->GetTable(Tag::glyf));
724
Font* SubsetterImpl::Subset(const IntegerSet& glyph_ids,
GlyphTable
* glyf,
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/tools/subsetter/
glyph_table_subsetter.cc
46
GlyphTablePtr glyph_table = down_cast<
GlyphTable
*>(font->GetTable(Tag::glyf));
56
down_cast<
GlyphTable
::Builder*>
67
GlyphTable
::GlyphBuilderList* glyph_builders =
/external/chromium_org/third_party/sfntly/cpp/src/test/
verify_glyf.cc
34
GlyphTablePtr glyf_table = down_cast<
GlyphTable
*>(table);
/external/chromium_org/third_party/sfntly/cpp/src/sample/subtly/
font_assembler.cc
147
Ptr<
GlyphTable
::Builder> glyph_table_builder =
148
down_cast<
GlyphTable
::Builder*>
178
GlyphTable
::GlyphBuilderList* glyph_builders =
194
Ptr<
GlyphTable
> glyph_table =
195
down_cast<
GlyphTable
*>
font_info.h
125
sfntly::Ptr<sfntly::
GlyphTable
> glyph_table_;
font_info.cc
137
glyph_table_ = down_cast<
GlyphTable
*>(font_->GetTable(Tag::glyf));
241
Ptr<
GlyphTable
::CompositeGlyph> composite_glyph =
242
down_cast<
GlyphTable
::CompositeGlyph*>(glyph.p_);
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/
table.cc
115
GlyphTable
::Builder::CreateBuilder(header, table_data));
Completed in 34 milliseconds