Lines Matching refs:codePoint
22 bool isBreakable(unsigned long codePoint) { in isBreakable() argument
23 switch (codePoint) { in isBreakable()
56 bool isNewline(unsigned long codePoint) { in isNewline() argument
57 return codePoint == '\n'; in isNewline()
75 GlyphIndex TextFace::getCharIndex(unsigned long codePoint) { in getCharIndex() argument
77 return FT_Get_Char_Index(*face_, codePoint); in getCharIndex()
146 if (isBreakable((*rangeBegin).codePoint())) { in findLongestWordSequence()
157 auto codePoint = UTF8Range<const char*>::codePoint(**wordStart); in findLongestWordSequence() local
158 if (isBreakable(codePoint)) { in findLongestWordSequence()
167 codePoint = c.codePoint(); in findLongestWordSequence()
168 auto gindex = face->getCharIndex(codePoint); in findLongestWordSequence()
222 auto codePoint = UTF8Range<const char*>::codePoint(c); in drawText() local
223 auto gindex = face->getCharIndex(codePoint); in drawText()