OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CMapTable
(Results
1 - 10
of
10
) sorted by null
/external/sfntly/cpp/src/test/
cmap_editing_test.cc
42
Ptr<
CMapTable
::Builder> cmap_table_builder =
43
(
CMapTable
::Builder*)font_builder->GetTableBuilder(Tag::cmap);
44
ASSERT_NE(cmap_table_builder, reinterpret_cast<
CMapTable
::Builder*>(NULL));
45
CMapTable
::CMapBuilderMap*
49
for (
CMapTable
::CMapBuilderMap::iterator
51
if (it->second->cmap_id() ==
CMapTable
::WINDOWS_BMP) {
59
CMapTablePtr cmap_table = down_cast<
CMapTable
*>(font->GetTable(Tag::cmap));
61
CMapTable
::CMapPtr cmap;
62
cmap.Attach(cmap_table->GetCMap(
CMapTable
::WINDOWS_BMP));
63
ASSERT_EQ(
CMapTable
::WINDOWS_BMP, cmap->cmap_id())
[
all
...]
cmap_iterator_test.cc
68
int32_t CompareCMapIterAndBitSet(
CMapTable
::CMap::CharacterIterator*
72
Ptr<
CMapTable
::CMap> cmap_;
82
Ptr<
CMapTable
> cmap_table = down_cast<
CMapTable
*>(font->GetTable(Tag::cmap));
93
if (g !=
CMapTable
::NOTDEF)
101
CompareCMapIterAndBitSet(
CMapTable
::CMap::CharacterIterator* character_iterator,
132
CMapTable
::CMap::CharacterIterator* character_iterator = NULL;
135
reinterpret_cast<
CMapTable
::CMap::CharacterIterator*>(NULL));
142
CMapIteratorTestCase(
CMapTable
::WINDOWS_BMP.platform_id,
143
CMapTable
::WINDOWS_BMP.encoding_id
[
all
...]
cmap_test.cc
97
Ptr<
CMapTable
::CMap> cmap1_;
98
Ptr<
CMapTable
::CMap> cmap2_;
123
Ptr<
CMapTable
> cmap_table =
124
down_cast<
CMapTable
*>(font->GetTable(Tag::cmap));
127
ASSERT_NE((cmap1_), reinterpret_cast<
CMapTable
::CMap*>(NULL));
130
ASSERT_NE((cmap2_), reinterpret_cast<
CMapTable
::CMap*>(NULL));
/external/sfntly/cpp/src/sfntly/table/core/
cmap_table.cc
36
const int32_t
CMapTable
::NOTDEF = 0;
38
CMapTable
::CMapId
CMapTable
::WINDOWS_BMP = {
42
CMapTable
::CMapId
CMapTable
::WINDOWS_UCS4 = {
46
CMapTable
::CMapId
CMapTable
::MAC_ROMAN = {
52
*
CMapTable
class
54
CMapTable
::
CMapTable
(Header* header, ReadableFontData* data
[
all
...]
cmap_table.h
49
class
CMapTable
: public SubTableContainerTable, public RefCounted<
CMapTable
> {
51
//
CMapTable
::CMapId
63
//
CMapTable
::CMapIdComparator
70
//
CMapTable
::CMapFilter
81
// Filters CMaps by CMapId to implement
CMapTable
::get()
85
//
CMapTable
::CMapIdFilter
120
//
CMapTable
::CMap::Builder
159
friend class
CMapTable
::Builder;
162
// The fully qualified name is
CMapTable
::CMap::CharacterIterato
[
all
...]
/external/sfntly/cpp/src/sample/subtly/
font_assembler.cc
76
// Creating the new
CMapTable
and the new format 4 CMap
77
Ptr<
CMapTable
::Builder> cmap_table_builder =
78
down_cast<
CMapTable
::Builder*>
82
Ptr<
CMapTable
::CMapFormat4::Builder> cmap_builder =
83
down_cast<
CMapTable
::CMapFormat4::Builder*>
85
CMapTable
::WINDOWS_BMP));
94
Ptr<
CMapTable
::CMapFormat4::Builder::Segment> current_segment;
115
new
CMapTable
::CMapFormat4::Builder::
127
Ptr<
CMapTable
::CMapFormat4::Builder::Segment> segment = segment_list->at(i);
133
new
CMapTable
::CMapFormat4::Builder::Segment(0xffff, 0xffff, 1, 0)
[
all
...]
font_info.cc
129
Ptr<
CMapTable
> cmap_table = down_cast<
CMapTable
*>(font_->GetTable(Tag::cmap));
131
cmap_.Attach(cmap_table->GetCMap(
CMapTable
::WINDOWS_BMP));
176
CMapTable
::CMap::CharacterIterator* character_iterator = cmap_->Iterator();
font_info.h
123
sfntly::Ptr<sfntly::
CMapTable
::CMap> cmap_;
/external/sfntly/cpp/src/test/autogenerated/
cmap_basic_test.cc
53
Ptr<
CMapTable
> cmap_table_;
71
cmap_table_ = down_cast<
CMapTable
*>(font->GetTable(Tag::cmap));
74
ASSERT_NE(cmap_table_, reinterpret_cast<
CMapTable
*>(NULL));
95
Ptr<
CMapTable
::CMap> cmap;
/external/sfntly/cpp/src/sfntly/table/
table.cc
90
CMapTable
::Builder::CreateBuilder(header, table_data));
Completed in 88 milliseconds