Home
last modified time | relevance | path

Searched refs:_PyUnicode_ExtendedCase (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/python/cpython3/Objects/
Dunicodectype.c67 return _PyUnicode_ExtendedCase[ctype->title & 0xFFFF]; in _PyUnicode_ToTitlecase()
193 return _PyUnicode_ExtendedCase[ctype->upper & 0xFFFF]; in _PyUnicode_ToUppercase()
205 return _PyUnicode_ExtendedCase[ctype->lower & 0xFFFF]; in _PyUnicode_ToLowercase()
218 res[i] = _PyUnicode_ExtendedCase[index + i]; in _PyUnicode_ToLowerFull()
234 res[i] = _PyUnicode_ExtendedCase[index + i]; in _PyUnicode_ToTitleFull()
250 res[i] = _PyUnicode_ExtendedCase[index + i]; in _PyUnicode_ToUpperFull()
266 res[i] = _PyUnicode_ExtendedCase[index + i]; in _PyUnicode_ToFoldedFull()
Dunicodetype_db.h514 const Py_UCS4 _PyUnicode_ExtendedCase[] = { variable