Searched refs:rot13 (Results 1 – 13 of 13) sorted by relevance
/external/llvm-project/compiler-rt/test/BlocksRuntime/ |
D | k-and-r.c | 14 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/ |
D | k-and-r.c | 15 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/ |
D | rot_13.py | 114 def rot13(infile, outfile): function 119 rot13(sys.stdin, sys.stdout)
|
/external/python/cpython3/Lib/encodings/ |
D | rot_13.py | 108 def rot13(infile, outfile): function 113 rot13(sys.stdin, sys.stdout)
|
/external/mksh/src/ |
D | dot.mkshrc | 100 \\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/ |
D | test_io.py | 2690 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/ |
D | codecs.rst | 1393 | rot_13 | rot13 | Return the Caesar-cypher | 1402 Restoration of the ``rot13`` alias.
|
/external/python/cpython3/Lib/test/ |
D | test_io.py | 3445 rot13 = codecs.lookup("rot13") 3446 with support.swap_attr(rot13, '_is_text_encoding', True):
|
D | test_codecs.py | 3408 encodings.rot_13.rot13(infile, outfile)
|
/external/python/cpython2/Doc/library/ |
D | codecs.rst | 1166 | rot_13 | rot13 | Returns the Caesar-cypher |
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.4.rst | 316 >>> "hello".encode("rot13") 319 LookupError: 'rot13' is not a text encoding; use codecs.encode() to handle arbitrary codecs
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0a1.rst | 4052 Fixed undocumented filter API of the rot13 codec. Patch by Berker Peksag.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 1985 - Issue #21171: Fixed undocumented filter API of the rot13 codec. 10926 - Issue #10807: Remove base64, bz2, hex, quopri, rot13, uu and zlib codecs from
|