Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dunicodeobject.c6467 #define WRITE_ASCII_CHAR(ch) \ in _PyUnicode_DecodeUnicodeEscapeInternal() macro
6504 case '\\': WRITE_ASCII_CHAR('\\'); continue; in _PyUnicode_DecodeUnicodeEscapeInternal()
6505 case '\'': WRITE_ASCII_CHAR('\''); continue; in _PyUnicode_DecodeUnicodeEscapeInternal()
6506 case '\"': WRITE_ASCII_CHAR('\"'); continue; in _PyUnicode_DecodeUnicodeEscapeInternal()
6507 case 'b': WRITE_ASCII_CHAR('\b'); continue; in _PyUnicode_DecodeUnicodeEscapeInternal()
6509 case 'f': WRITE_ASCII_CHAR('\014'); continue; in _PyUnicode_DecodeUnicodeEscapeInternal()
6510 case 't': WRITE_ASCII_CHAR('\t'); continue; in _PyUnicode_DecodeUnicodeEscapeInternal()
6511 case 'n': WRITE_ASCII_CHAR('\n'); continue; in _PyUnicode_DecodeUnicodeEscapeInternal()
6512 case 'r': WRITE_ASCII_CHAR('\r'); continue; in _PyUnicode_DecodeUnicodeEscapeInternal()
6514 case 'v': WRITE_ASCII_CHAR('\013'); continue; in _PyUnicode_DecodeUnicodeEscapeInternal()
[all …]