HomeSort by relevance Sort by last modified time
    Searched full:subtable (Results 1 - 25 of 34) sorted by null

1 2

  /external/icu4c/layout/
GlyphSubstLookupProc.cpp 67 const SingleSubstitutionSubtable *subtable = (const SingleSubstitutionSubtable *) lookupSubtable; local
69 delta = subtable->process(glyphIterator, fFilter);
75 const MultipleSubstitutionSubtable *subtable = (const MultipleSubstitutionSubtable *) lookupSubtable; local
77 delta = subtable->process(glyphIterator, success, fFilter);
83 const AlternateSubstitutionSubtable *subtable = (const AlternateSubstitutionSubtable *) lookupSubtable; local
85 delta = subtable->process(glyphIterator, fFilter);
91 const LigatureSubstitutionSubtable *subtable = (const LigatureSubstitutionSubtable *) lookupSubtable; local
93 delta = subtable->process(glyphIterator, fFilter);
99 const ContextualSubstitutionSubtable *subtable = (const ContextualSubstitutionSubtable *) lookupSubtable; local
101 delta = subtable->process(this, glyphIterator, fontInstance, success)
107 const ChainingContextualSubstitutionSubtable *subtable = (const ChainingContextualSubstitutionSubtable *) lookupSubtable; local
115 const ExtensionSubtable *subtable = (const ExtensionSubtable *) lookupSubtable; local
    [all...]
GlyphPosnLookupProc.cpp 80 const SinglePositioningSubtable *subtable = (const SinglePositioningSubtable *) lookupSubtable; local
82 delta = subtable->process(glyphIterator, fontInstance);
88 const PairPositioningSubtable *subtable = (const PairPositioningSubtable *) lookupSubtable; local
90 delta = subtable->process(glyphIterator, fontInstance);
96 const CursiveAttachmentSubtable *subtable = (const CursiveAttachmentSubtable *) lookupSubtable; local
98 delta = subtable->process(glyphIterator, fontInstance);
104 const MarkToBasePositioningSubtable *subtable = (const MarkToBasePositioningSubtable *) lookupSubtable; local
106 delta = subtable->process(glyphIterator, fontInstance);
112 const MarkToLigaturePositioningSubtable *subtable = (const MarkToLigaturePositioningSubtable *) lookupSubtable; local
114 delta = subtable->process(glyphIterator, fontInstance)
120 const MarkToMarkPositioningSubtable *subtable = (const MarkToMarkPositioningSubtable *) lookupSubtable; local
128 const ContextualPositioningSubtable *subtable = (const ContextualPositioningSubtable *) lookupSubtable; local
136 const ChainingContextualPositioningSubtable *subtable = (const ChainingContextualPositioningSubtable *) lookupSubtable; local
144 const ExtensionSubtable *subtable = (const ExtensionSubtable *) lookupSubtable; local
    [all...]
SinglePositioningSubtables.cpp 27 const SinglePositioningFormat1Subtable *subtable = (const SinglePositioningFormat1Subtable *) this; local
29 return subtable->process(glyphIterator, fontInstance);
34 const SinglePositioningFormat2Subtable *subtable = (const SinglePositioningFormat2Subtable *) this; local
36 return subtable->process(glyphIterator, fontInstance);
SingleSubstitutionSubtables.cpp 26 const SingleSubstitutionFormat1Subtable *subtable = (const SingleSubstitutionFormat1Subtable *) this; local
28 return subtable->process(glyphIterator, filter);
33 const SingleSubstitutionFormat2Subtable *subtable = (const SingleSubstitutionFormat2Subtable *) this; local
35 return subtable->process(glyphIterator, filter);
ExtensionSubtables.cpp 33 LookupSubtable *subtable = (LookupSubtable *) ((char *) this + extOffset); local
35 return lookupProcessor->applySubtable(subtable, elt, glyphIterator, fontInstance, success);
MorphTables.cpp 36 le_int16 subtable; local
38 for (subtable = 0; subtable < nSubtables; subtable += 1) {
PairPositioningSubtables.cpp 28 const PairPositioningFormat1Subtable *subtable = (const PairPositioningFormat1Subtable *) this; local
30 return subtable->process(glyphIterator, fontInstance);
35 const PairPositioningFormat2Subtable *subtable = (const PairPositioningFormat2Subtable *) this; local
37 return subtable->process(glyphIterator, fontInstance);
ContextualSubstSubtables.cpp 164 const ContextualSubstitutionFormat1Subtable *subtable = (const ContextualSubstitutionFormat1Subtable *) this; local
165 return subtable->process(lookupProcessor, glyphIterator, fontInstance, success);
170 const ContextualSubstitutionFormat2Subtable *subtable = (const ContextualSubstitutionFormat2Subtable *) this; local
171 return subtable->process(lookupProcessor, glyphIterator, fontInstance, success);
176 const ContextualSubstitutionFormat3Subtable *subtable = (const ContextualSubstitutionFormat3Subtable *) this; local
177 return subtable->process(lookupProcessor, glyphIterator, fontInstance, success);
335 const ChainingContextualSubstitutionFormat1Subtable *subtable = (const ChainingContextualSubstitutionFormat1Subtable *) this; local
336 return subtable->process(lookupProcessor, glyphIterator, fontInstance, success);
341 const ChainingContextualSubstitutionFormat2Subtable *subtable = (const ChainingContextualSubstitutionFormat2Subtable *) this; local
342 return subtable->process(lookupProcessor, glyphIterator, fontInstance, success)
347 const ChainingContextualSubstitutionFormat3Subtable *subtable = (const ChainingContextualSubstitutionFormat3Subtable *) this; local
    [all...]
LookupProcessor.cpp 34 for (le_uint16 subtable = 0; subtable < subtableCount; subtable += 1) {
35 const LookupSubtable *lookupSubtable = lookupTable->getLookupSubtable(subtable);
KernTable.cpp 59 * This implementation has support for only one subtable, so if the font has
  /external/icu4c/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/icu4c/test/letest/
cmaps.cpp 57 const CMAPEncodingSubtable *subtable = NULL; local
79 subtable = (const CMAPEncodingSubtable *) ((const char *) cmap + offset10);
81 subtable = (const CMAPEncodingSubtable *) ((const char *) cmap + offset1);
86 switch (SWAPW(subtable->format)) {
88 return new CMAPFormat4Mapper(cmap, (const CMAPFormat4Encoding *) subtable);
92 const CMAPFormat12Encoding *encoding = (const CMAPFormat12Encoding *) subtable;
  /external/icu4c/common/
locresdata.cpp 50 UResourceBundle *rb=NULL, table, subTable;
75 ures_initStackObject(&subTable);
80 ures_getByKeyWithFallback(&table,subTableKey, &subTable, &errorCode);
81 item = ures_getStringByKeyWithFallback(&subTable, itemKey, pLength, &errorCode);
148 ures_close(&subTable);
  /external/harfbuzz/src/
harfbuzz-dump.c 286 Dump_GSUB_Lookup_Single (HB_SubTable *subtable, FILE *stream, int indent, HB_Type hb_type)
288 HB_SingleSubst *SingleSubst = &subtable->st.gsub.single;
331 Dump_GSUB_Lookup_Ligature (HB_SubTable *subtable, FILE *stream, int indent, HB_Type hb_type)
334 HB_LigatureSubst *LigatureSubst = &subtable->st.gsub.ligature;
370 Dump_GSUB_Lookup_Context (HB_SubTable *subtable, FILE *stream, int indent, HB_Type hb_type)
372 HB_ContextSubst *ContextSubst = &subtable->st.gsub.context;
436 Dump_GSUB_Lookup_Chain (HB_SubTable *subtable, FILE *stream, int indent, HB_Type hb_type)
438 HB_ChainContextSubst *chain = &subtable->st.gsub.chain;
542 Dump_GPOS_Lookup_Single (HB_SubTable *subtable, FILE *stream, int indent, HB_Type hb_type)
544 HB_SinglePos *SinglePos = &subtable->st.gpos.single
    [all...]
harfbuzz-gsub-private.h 427 HB_GSUB_SubTable *subtable; /* referenced subtable */
429 HB_UShort LookuptType; /* lookup-type of referenced subtable */
harfbuzz-open.c 448 /* SubTable */
500 l->SubTable = NULL;
502 if ( ALLOC_ARRAY( l->SubTable, count, HB_SubTable ) )
505 st = l->SubTable;
549 FREE( l->SubTable );
562 if ( l->SubTable )
565 st = l->SubTable;
harfbuzz-gpos-private.h 690 HB_UShort LookuptType; /* lookup-type of referenced subtable */
691 HB_GPOS_SubTable *subtable; /* referenced subtable */
harfbuzz-open.h 134 HB_SubTable* SubTable; /* array of SubTables */
  /external/javassist/src/main/javassist/bytecode/analysis/
SubroutineScanner.java 37 Map subTable = new HashMap();
46 subTable.clear();
105 Subroutine s = (Subroutine) subTable.get(new Integer(target));
108 subTable.put(new Integer(target), s);
  /external/skia/src/core/
SkFilterProc.h 130 /** Given a subtable returned by SkGetBilinearFilterPtrProcYTable(), return the proc for the
  /external/webkit/Source/WebCore/platform/text/
UnicodeRange.h 113 const unsigned char cRangeTertiaryTable = 145; // leave room for 16 subtable
  /external/webkit/Source/WebCore/platform/graphics/
WOFFFileFormat.cpp 165 // Write the sfnt offset subtable.
  /external/freetype/src/sfnt/
ttpost.c 395 /* go to beginning of subtable */
ttcmap.c     [all...]
  /external/opencv/otherlibs/highgui/
bitstrm.cpp 664 /* write header of subtable */
666 /* write jump to subtable */

Completed in 388 milliseconds

1 2