OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:GlyphTable
(Results
1 - 2
of
2
) sorted by null
/external/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
...]
Completed in 3660 milliseconds