Lines Matching refs:codePoint
22 bool isBreakable(unsigned long codePoint) { in isBreakable() argument
23 switch (codePoint) { in isBreakable()
71 GlyphIndex TextFace::getCharIndex(unsigned long codePoint) { in getCharIndex() argument
73 return FT_Get_Char_Index(*face_, codePoint); in getCharIndex()
142 if (isBreakable((*rangeBegin).codePoint())) { in findLongestWordSequence()
153 auto codePoint = UTF8Range<const char*>::codePoint(**wordStart); in findLongestWordSequence() local
154 if (isBreakable(codePoint)) { in findLongestWordSequence()
163 codePoint = c.codePoint(); in findLongestWordSequence()
164 auto gindex = face->getCharIndex(codePoint); in findLongestWordSequence()
218 auto codePoint = UTF8Range<const char*>::codePoint(c); in drawText() local
219 auto gindex = face->getCharIndex(codePoint); in drawText()