Home | History | Annotate | Download | only in unicode

Lines Matching refs:Upper

53 // case representing sequences of alternating corresponding Upper and Lower
82 // Upper Lower Upper Lower.
182 // IsUpper reports whether the rune is an upper case letter.
188 return isExcludingLatin(Upper, r)
222 // In an Upper-Lower sequence, which always starts with
225 // {-1, 0, -1} LowerCase (Upper, Title are previous)
227 // sequence are upper case; the ones at odd offsets are lower.
250 // ToUpper maps the rune to upper case.
275 if 'a' <= r && r <= 'z' { // title case is upper case for ASCII
283 // ToUpper maps the rune to upper case giving priority to the special mapping.