Searched refs:firstCodePointLen (Results 1 – 1 of 1) sorted by relevance
72 final int firstCodePointLen = str.offsetByCodePoints(0, 1); in toSentenceCase() local73 return str.substring(0, firstCodePointLen).toUpperCase(locale) in toSentenceCase()74 + str.substring(firstCodePointLen); in toSentenceCase()