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

  /external/icu/icu4c/source/layout/
MorphTables.cpp 37 le_int16 subtable; local
39 for (subtable = 0; LE_SUCCESS(success) && (subtable < nSubtables); subtable += 1) {
MorphTables2.cpp 44 le_uint32 subtable; local
163 for (subtable = 0; LE_SUCCESS(success) && subtable < nSubtables; subtable++) {
164 if(subtable>0) {
ContextualSubstSubtables.cpp 167 const ContextualSubstitutionFormat1Subtable *subtable = (const ContextualSubstitutionFormat1Subtable *) this; local
168 return subtable->process(lookupProcessor, glyphIterator, fontInstance, success);
173 const ContextualSubstitutionFormat2Subtable *subtable = (const ContextualSubstitutionFormat2Subtable *) this; local
174 return subtable->process(lookupProcessor, glyphIterator, fontInstance, success);
179 const ContextualSubstitutionFormat3Subtable *subtable = (const ContextualSubstitutionFormat3Subtable *) this; local
180 return subtable->process(lookupProcessor, glyphIterator, fontInstance, success);
343 const ChainingContextualSubstitutionFormat1Subtable *subtable = (const ChainingContextualSubstitutionFormat1Subtable *) this; local
344 return subtable->process(lookupProcessor, glyphIterator, fontInstance, success);
349 const ChainingContextualSubstitutionFormat2Subtable *subtable = (const ChainingContextualSubstitutionFormat2Subtable *) this; local
350 return subtable->process(lookupProcessor, glyphIterator, fontInstance, success)
355 const ChainingContextualSubstitutionFormat3Subtable *subtable = (const ChainingContextualSubstitutionFormat3Subtable *) this; local
    [all...]
  /external/chromium_org/third_party/icu/source/samples/layout/
cmaps.cpp 63 const CMAPEncodingSubtable *subtable = NULL; local
85 subtable = (const CMAPEncodingSubtable *) ((const char *) cmap + offset10);
87 subtable = (const CMAPEncodingSubtable *) ((const char *) cmap + offset1);
92 switch (SWAPW(subtable->format)) {
94 return new CMAPFormat4Mapper(cmap, (const CMAPFormat4Encoding *) subtable);
98 const CMAPFormat12Encoding *encoding = (const CMAPFormat12Encoding *) subtable;
  /external/chromium_org/third_party/ots/src/
kern.cc 40 OpenTypeKERNFormat0 subtable; local
43 if (!table.ReadU16(&subtable.version) ||
48 if (subtable.version > 0) {
49 OTS_WARNING("Bad subtable version: %d", subtable.version);
58 if (!table.ReadU16(&subtable.coverage)) {
62 if (!(subtable.coverage & 0x1)) {
67 if (subtable.coverage & 0xF0) {
72 const uint32_t format = (subtable.coverage & 0xFF00) >> 8;
81 !table.ReadU16(&subtable.search_range) |
    [all...]
  /external/icu/icu4c/source/samples/layout/
cmaps.cpp 63 const CMAPEncodingSubtable *subtable = NULL; local
85 subtable = (const CMAPEncodingSubtable *) ((const char *) cmap + offset10);
87 subtable = (const CMAPEncodingSubtable *) ((const char *) cmap + offset1);
92 switch (SWAPW(subtable->format)) {
94 return new CMAPFormat4Mapper(cmap, (const CMAPFormat4Encoding *) subtable);
98 const CMAPFormat12Encoding *encoding = (const CMAPFormat12Encoding *) subtable;
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-font.cc 80 const OT::CmapSubtable *subtable = NULL; local
84 if (!subtable) subtable = cmap->find_subtable (3, 10);
85 if (!subtable) subtable = cmap->find_subtable (0, 6);
86 if (!subtable) subtable = cmap->find_subtable (0, 4);
88 if (!subtable) subtable = cmap->find_subtable (3, 1);
89 if (!subtable) subtable = cmap->find_subtable (0, 3)
    [all...]
hb-ot-cmap-table.hh 61 USHORT lengthZ; /* Byte length of this subtable. */
138 * the subtable at the end of the blob. */
152 * subtable. */
195 * subtable format. */
219 UINT formatReserved; /* Subtable format and (maybe) padding. */
220 UINT lengthZ; /* Byte length of this subtable. */
251 USHORT format; /* Subtable format; set to 12. */
253 ULONG lengthZ; /* Byte length of this subtable. */
384 ULONG lengthZ; /* Byte length of this subtable. */
394 /* Note: We intentionally do NOT implement subtable formats 2 and 8. *
473 subtable; \/* Byte offset from beginning of table to the subtable for this encoding. *\/ member in struct:OT::EncodingRecord
    [all...]
  /external/chromium_org/third_party/icu/source/test/letest/
cmaps.cpp 58 const CMAPEncodingSubtable *subtable = NULL; local
82 // printf("%s:%d: microsoft (3) platform specific ID %d (wanted 1 or 10) for subtable %d/%d\n", __FILE__, __LINE__, (SWAPW(esh->platformSpecificID)), i, nSubtables);
85 //printf("%s:%d: platform ID %d (wanted 3, microsoft) for subtable %d/%d\n", __FILE__, __LINE__, (SWAPW(esh->platformID)), i, nSubtables);
122 subtable = (const CMAPEncodingSubtable *) ((const char *) cmap + foundOffset);
123 //printf("%s:%d: using subtable #%d/%d type %d:%d\n", __FILE__, __LINE__, foundTable, nSubtables, foundPlatformID, foundPlatformSpecificID);
125 printf("%s:%d: could not find subtable.\n", __FILE__, __LINE__);
129 le_uint16 tableFormat = SWAPW(subtable->format);
134 return new CMAPFormat4Mapper(cmap, (const CMAPFormat4Encoding *) subtable);
138 const CMAPFormat12Encoding *encoding = (const CMAPFormat12Encoding *) subtable;
147 printf("%s:%d: Unknown format %x.\n", __FILE__, __LINE__, (SWAPW(subtable->format)))
    [all...]
  /external/chromium_org/third_party/icu/source/test/perf/leperf/
cmaps.cpp 58 const CMAPEncodingSubtable *subtable = NULL; local
82 // printf("%s:%d: microsoft (3) platform specific ID %d (wanted 1 or 10) for subtable %d/%d\n", __FILE__, __LINE__, (SWAPW(esh->platformSpecificID)), i, nSubtables);
85 //printf("%s:%d: platform ID %d (wanted 3, microsoft) for subtable %d/%d\n", __FILE__, __LINE__, (SWAPW(esh->platformID)), i, nSubtables);
122 subtable = (const CMAPEncodingSubtable *) ((const char *) cmap + foundOffset);
123 //printf("%s:%d: using subtable #%d/%d type %d:%d\n", __FILE__, __LINE__, foundTable, nSubtables, foundPlatformID, foundPlatformSpecificID);
125 printf("%s:%d: could not find subtable.\n", __FILE__, __LINE__);
129 le_uint16 tableFormat = SWAPW(subtable->format);
134 return new CMAPFormat4Mapper(cmap, (const CMAPFormat4Encoding *) subtable);
138 const CMAPFormat12Encoding *encoding = (const CMAPFormat12Encoding *) subtable;
147 printf("%s:%d: Unknown format %x.\n", __FILE__, __LINE__, (SWAPW(subtable->format)))
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-font.cc 80 const OT::CmapSubtable *subtable = NULL; local
84 if (!subtable) subtable = cmap->find_subtable (0, 6);
85 if (!subtable) subtable = cmap->find_subtable (0, 4);
86 if (!subtable) subtable = cmap->find_subtable (3, 10);
88 if (!subtable) subtable = cmap->find_subtable (0, 3);
89 if (!subtable) subtable = cmap->find_subtable (3, 1)
    [all...]
hb-ot-cmap-table.hh 61 USHORT lengthZ; /* Byte length of this subtable. */
138 * the subtable at the end of the blob. */
152 * subtable. */
195 * subtable format. */
219 UINT formatReserved; /* Subtable format and (maybe) padding. */
220 UINT lengthZ; /* Byte length of this subtable. */
251 USHORT format; /* Subtable format; set to 12. */
253 ULONG lengthZ; /* Byte length of this subtable. */
384 ULONG lengthZ; /* Byte length of this subtable. */
394 /* Note: We intentionally do NOT implement subtable formats 2 and 8. *
473 subtable; \/* Byte offset from beginning of table to the subtable for this encoding. *\/ member in struct:OT::EncodingRecord
    [all...]
  /external/icu/icu4c/source/test/letest/
cmaps.cpp 58 const CMAPEncodingSubtable *subtable = NULL; local
82 // printf("%s:%d: microsoft (3) platform specific ID %d (wanted 1 or 10) for subtable %d/%d\n", __FILE__, __LINE__, (SWAPW(esh->platformSpecificID)), i, nSubtables);
85 //printf("%s:%d: platform ID %d (wanted 3, microsoft) for subtable %d/%d\n", __FILE__, __LINE__, (SWAPW(esh->platformID)), i, nSubtables);
122 subtable = (const CMAPEncodingSubtable *) ((const char *) cmap + foundOffset);
123 //printf("%s:%d: using subtable #%d/%d type %d:%d\n", __FILE__, __LINE__, foundTable, nSubtables, foundPlatformID, foundPlatformSpecificID);
125 printf("%s:%d: could not find subtable.\n", __FILE__, __LINE__);
129 le_uint16 tableFormat = SWAPW(subtable->format);
134 return new CMAPFormat4Mapper(cmap, (const CMAPFormat4Encoding *) subtable);
138 const CMAPFormat12Encoding *encoding = (const CMAPFormat12Encoding *) subtable;
147 printf("%s:%d: Unknown format %x.\n", __FILE__, __LINE__, (SWAPW(subtable->format)))
    [all...]
  /external/icu/icu4c/source/test/perf/leperf/
cmaps.cpp 58 const CMAPEncodingSubtable *subtable = NULL; local
82 // printf("%s:%d: microsoft (3) platform specific ID %d (wanted 1 or 10) for subtable %d/%d\n", __FILE__, __LINE__, (SWAPW(esh->platformSpecificID)), i, nSubtables);
85 //printf("%s:%d: platform ID %d (wanted 3, microsoft) for subtable %d/%d\n", __FILE__, __LINE__, (SWAPW(esh->platformID)), i, nSubtables);
122 subtable = (const CMAPEncodingSubtable *) ((const char *) cmap + foundOffset);
123 //printf("%s:%d: using subtable #%d/%d type %d:%d\n", __FILE__, __LINE__, foundTable, nSubtables, foundPlatformID, foundPlatformSpecificID);
125 printf("%s:%d: could not find subtable.\n", __FILE__, __LINE__);
129 le_uint16 tableFormat = SWAPW(subtable->format);
134 return new CMAPFormat4Mapper(cmap, (const CMAPFormat4Encoding *) subtable);
138 const CMAPFormat12Encoding *encoding = (const CMAPFormat12Encoding *) subtable;
147 printf("%s:%d: Unknown format %x.\n", __FILE__, __LINE__, (SWAPW(subtable->format)))
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
bitmap_size_table.cc 88 IndexSubTable* subtable = SearchIndexSubTables(glyph_id); local
89 if (subtable == NULL) {
92 return subtable->GlyphOffset(glyph_id);
96 IndexSubTable* subtable = SearchIndexSubTables(glyph_id); local
97 if (subtable == NULL) {
100 return subtable->GlyphLength(glyph_id);
112 IndexSubTable* subtable = SearchIndexSubTables(glyph_id); local
113 if (subtable == NULL) {
116 return subtable->image_format();
121 : SubTable(data, master_data)
160 IndexSubTable* subtable = (*subtable_list)[index]; local
339 IndexSubTable::Builder* subtable = SearchIndexSubTables(glyph_id); local
347 IndexSubTable::Builder* subtable = SearchIndexSubTables(glyph_id); local
355 IndexSubTable::Builder* subtable = SearchIndexSubTables(glyph_id); local
437 IndexSubTable::Builder* subtable = subtable_list->at(index); local
    [all...]
  /external/sfntly/cpp/src/sfntly/table/bitmap/
bitmap_size_table.cc 88 IndexSubTable* subtable = SearchIndexSubTables(glyph_id); local
89 if (subtable == NULL) {
92 return subtable->GlyphOffset(glyph_id);
96 IndexSubTable* subtable = SearchIndexSubTables(glyph_id); local
97 if (subtable == NULL) {
100 return subtable->GlyphLength(glyph_id);
112 IndexSubTable* subtable = SearchIndexSubTables(glyph_id); local
113 if (subtable == NULL) {
116 return subtable->image_format();
121 : SubTable(data, master_data)
160 IndexSubTable* subtable = (*subtable_list)[index]; local
339 IndexSubTable::Builder* subtable = SearchIndexSubTables(glyph_id); local
347 IndexSubTable::Builder* subtable = SearchIndexSubTables(glyph_id); local
355 IndexSubTable::Builder* subtable = SearchIndexSubTables(glyph_id); local
437 IndexSubTable::Builder* subtable = subtable_list->at(index); local
    [all...]

Completed in 945 milliseconds