Home
last modified time | relevance | path

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

/external/llvm-project/compiler-rt/test/BlocksRuntime/
Dk-and-r.c14 char (^rot13)(); in main() local
15 rot13 = ^(char c) { return (char)(((c - 'a' + 13) % 26) + 'a'); }; in main()
16 char n = rot13('a'); in main()
17 char c = rot13('p'); in main()
/external/compiler-rt/test/BlocksRuntime/
Dk-and-r.c15 char (^rot13)(); in main() local
16 rot13 = ^(char c) { return (char)(((c - 'a' + 13) % 26) + 'a'); }; in main()
17 char n = rot13('a'); in main()
18 char c = rot13('p'); in main()
/external/python/cpython2/Lib/encodings/
Drot_13.py114 def rot13(infile, outfile): function
119 rot13(sys.stdin, sys.stdout)
/external/python/cpython3/Lib/encodings/
Drot_13.py108 def rot13(infile, outfile): function
113 rot13(sys.stdin, sys.stdout)
/external/mksh/src/
Ddot.mkshrc100 \\builtin command -v rot13 >/dev/null || \\builtin alias rot13='tr \
535 …i_alias[nalias]=rot13; b_alias[nalias++]='tr abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ …
/external/python/cpython2/Lib/test/
Dtest_io.py2690 rot13 = codecs.lookup("rot13")
2691 with support.swap_attr(rot13, '_is_text_encoding', True), \
2692 support.swap_attr(rot13, 'incrementalencoder', get_bad_encoder):
/external/python/cpython3/Doc/library/
Dcodecs.rst1393 | rot_13 | rot13 | Return the Caesar-cypher |
1402 Restoration of the ``rot13`` alias.
/external/python/cpython3/Lib/test/
Dtest_io.py3445 rot13 = codecs.lookup("rot13")
3446 with support.swap_attr(rot13, '_is_text_encoding', True):
Dtest_codecs.py3408 encodings.rot_13.rot13(infile, outfile)
/external/python/cpython2/Doc/library/
Dcodecs.rst1166 | rot_13 | rot13 | Returns the Caesar-cypher |
/external/python/cpython3/Doc/whatsnew/
D3.4.rst316 >>> "hello".encode("rot13")
319 LookupError: 'rot13' is not a text encoding; use codecs.encode() to handle arbitrary codecs
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst4052 Fixed undocumented filter API of the rot13 codec. Patch by Berker Peksag.
/external/python/cpython3/Misc/
DHISTORY1985 - Issue #21171: Fixed undocumented filter API of the rot13 codec.
10926 - Issue #10807: Remove base64, bz2, hex, quopri, rot13, uu and zlib codecs from