Home
last modified time | relevance | path

Searched refs:glyphSet (Results 1 – 10 of 10) sorted by relevance

/external/icu/icu4c/source/layout/
DThaiShaping.cpp43 LEUnicode ThaiShaping::leftAboveVowel(LEUnicode vowel, le_uint8 glyphSet) in leftAboveVowel() argument
53 return leftAboveVowels[glyphSet][vowel - CH_MAI_HANAKAT]; in leftAboveVowel()
56 if (vowel == CH_YAMAKKAN && glyphSet == 0) { in leftAboveVowel()
63 LEUnicode ThaiShaping::lowerRightTone(LEUnicode tone, le_uint8 glyphSet) in lowerRightTone() argument
73 return lowerRightTones[glyphSet][tone - CH_MAITAIKHU]; in lowerRightTone()
79 LEUnicode ThaiShaping::lowerLeftTone(LEUnicode tone, le_uint8 glyphSet) in lowerLeftTone() argument
89 return lowerLeftTones[glyphSet][tone - CH_MAITAIKHU]; in lowerLeftTone()
95 LEUnicode ThaiShaping::upperLeftTone(LEUnicode tone, le_uint8 glyphSet) in upperLeftTone() argument
105 return upperLeftTones[glyphSet][tone - CH_MAITAIKHU]; in upperLeftTone()
111 LEUnicode ThaiShaping::lowerBelowVowel(LEUnicode vowel, le_uint8 glyphSet) in lowerBelowVowel() argument
[all …]
DThaiShaping.h70 …ic le_int32 compose(const LEUnicode *input, le_int32 offset, le_int32 charCount, le_uint8 glyphSet,
82 …oTransition(StateTransition transition, LEUnicode currChar, le_int32 inputIndex, le_uint8 glyphSet,
85 …etNextState(LEUnicode ch, le_uint8 state, le_int32 inputIndex, le_uint8 glyphSet, LEUnicode errorC…
91 static LEUnicode noDescenderCOD(LEUnicode cod, le_uint8 glyphSet);
92 static LEUnicode leftAboveVowel(LEUnicode vowel, le_uint8 glyphSet);
93 static LEUnicode lowerBelowVowel(LEUnicode vowel, le_uint8 glyphSet);
94 static LEUnicode lowerRightTone(LEUnicode tone, le_uint8 glyphSet);
95 static LEUnicode lowerLeftTone(LEUnicode tone, le_uint8 glyphSet);
96 static LEUnicode upperLeftTone(LEUnicode tone, le_uint8 glyphSet);
/external/fonttools/Lib/fontTools/pens/
DcocoaPen.py11 def __init__(self, glyphSet, path=None): argument
12 BasePen.__init__(self, glyphSet)
DbasePen.py152 def __init__(self, glyphSet): argument
153 self.glyphSet = glyphSet
195 glyph = self.glyphSet[glyphName]
DreportLabPen.py11 def __init__(self, glyphSet, path=None): argument
12 BasePen.__init__(self, glyphSet)
DboundsPen.py23 def __init__(self, glyphSet): argument
24 BasePen.__init__(self, glyphSet)
DpointInsidePen.py49 def __init__(self, glyphSet, testPoint, evenOdd=0): argument
50 BasePen.__init__(self, glyphSet)
/external/skia/src/pdf/
DSkPDFFont.h40 FontGlyphSetPair(SkPDFFont* font, SkPDFGlyphSet* glyphSet);
DSkPDFFont.cpp664 SkPDFGlyphSet* glyphSet) in FontGlyphSetPair() argument
666 fGlyphSet(glyphSet) { in FontGlyphSetPair()
/external/skia/src/ports/
DSkFontHost_win.cpp368 GLYPHSET* glyphSet = in populate_glyph_to_unicode() local
370 if (GetFontUnicodeRanges(fontHdc, glyphSet) != glyphSetBufferSize) { in populate_glyph_to_unicode()
376 for (DWORD i = 0; i < glyphSet->cRanges; ++i) { in populate_glyph_to_unicode()
381 int count = glyphSet->ranges[i].cGlyphs; in populate_glyph_to_unicode()
386 chars[j] = glyphSet->ranges[i].wcLow + j; in populate_glyph_to_unicode()