/external/compiler-rt/test/BlocksRuntime/ |
k-and-r.c | 15 char (^rot13)(); 16 rot13 = ^(char c) { return (char)(((c - 'a' + 13) % 26) + 'a'); }; 17 char n = rot13('a'); 18 char c = rot13('p'); 20 printf("%s: rot13('a') returned %c, rot13('p') returns %c\n", argv[0], n, c);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/encodings/ |
rot_13.py | 2 """ Python Character Mapping Codec for ROT13.
4 See http://ucsub.colorado.edu/~kominek/rot13/ for details.
113 def rot13(infile, outfile):
function 118 rot13(sys.stdin, sys.stdout)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/encodings/ |
rot_13.py | 2 """ Python Character Mapping Codec for ROT13.
4 See http://ucsub.colorado.edu/~kominek/rot13/ for details.
113 def rot13(infile, outfile):
function 118 rot13(sys.stdin, sys.stdout)
|
/external/python/cpython2/Lib/encodings/ |
rot_13.py | 2 """ Python Character Mapping Codec for ROT13. 4 See http://ucsub.colorado.edu/~kominek/rot13/ for details. 114 def rot13(infile, outfile): function 119 rot13(sys.stdin, sys.stdout)
|
/external/python/cpython3/Lib/encodings/ |
rot_13.py | 2 """ Python Character Mapping Codec for ROT13. 108 def rot13(infile, outfile): function 113 rot13(sys.stdin, sys.stdout)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/encodings/ |
rot_13.py | 2 """ Python Character Mapping Codec for ROT13. 4 See http://ucsub.colorado.edu/~kominek/rot13/ for details. 113 def rot13(infile, outfile): function 118 rot13(sys.stdin, sys.stdout)
|
/prebuilts/gdb/linux-x86/lib/python2.7/encodings/ |
rot_13.py | 2 """ Python Character Mapping Codec for ROT13. 4 See http://ucsub.colorado.edu/~kominek/rot13/ for details. 113 def rot13(infile, outfile): function 118 rot13(sys.stdin, sys.stdout)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
rot_13.py | 2 """ Python Character Mapping Codec for ROT13. 4 See http://ucsub.colorado.edu/~kominek/rot13/ for details. 113 def rot13(infile, outfile): function 118 rot13(sys.stdin, sys.stdout)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
rot_13.py | 2 """ Python Character Mapping Codec for ROT13. 4 See http://ucsub.colorado.edu/~kominek/rot13/ for details. 113 def rot13(infile, outfile): function 118 rot13(sys.stdin, sys.stdout)
|
/build/kati/ |
shellutil_test.go | 37 rot13(buf) 39 t.Errorf("rot13(%q) got=%q; want=%q", tc.in, got, want)
|
shellutil.go | 31 name: "android:rot13", 67 func rot13(buf []byte) { func 91 rot13(fargs[0])
|
/prebuilts/go/darwin-x86/src/strings/ |
example_test.go | 259 rot13 := func(r rune) rune { 268 fmt.Println(strings.Map(rot13, "'Twas brillig and the slithy gopher..."))
|
strings_test.go | 573 func rot13(r rune) rune { func 603 // 3. Rot13 604 m = Map(rot13, "a to zed") 607 t.Errorf("rot13: expected %q got %q", expect, m) 610 // 4. Rot13^2 611 m = Map(rot13, Map(rot13, "a to zed")) 614 t.Errorf("rot13: expected %q got %q", expect, m) [all...] |
/prebuilts/go/linux-x86/src/strings/ |
example_test.go | 259 rot13 := func(r rune) rune { 268 fmt.Println(strings.Map(rot13, "'Twas brillig and the slithy gopher..."))
|
strings_test.go | 573 func rot13(r rune) rune { func 603 // 3. Rot13 604 m = Map(rot13, "a to zed") 607 t.Errorf("rot13: expected %q got %q", expect, m) 610 // 4. Rot13^2 611 m = Map(rot13, Map(rot13, "a to zed")) 614 t.Errorf("rot13: expected %q got %q", expect, m) [all...] |
/prebuilts/go/darwin-x86/src/bytes/ |
example_test.go | 372 rot13 := func(r rune) rune { 381 fmt.Printf("%s", bytes.Map(rot13, []byte("'Twas brillig and the slithy gopher...")))
|
bytes_test.go | 982 func rot13(r rune) rune { func 1013 // 3. Rot13 1014 m = Map(rot13, []byte("a to zed")) 1017 t.Errorf("rot13: expected %q got %q", expect, m) 1020 // 4. Rot13^2 1021 m = Map(rot13, Map(rot13, []byte("a to zed"))) 1024 t.Errorf("rot13: expected %q got %q", expect, m) [all...] |
/prebuilts/go/linux-x86/src/bytes/ |
example_test.go | 372 rot13 := func(r rune) rune { 381 fmt.Printf("%s", bytes.Map(rot13, []byte("'Twas brillig and the slithy gopher...")))
|
bytes_test.go | 982 func rot13(r rune) rune { func 1013 // 3. Rot13 1014 m = Map(rot13, []byte("a to zed")) 1017 t.Errorf("rot13: expected %q got %q", expect, m) 1020 // 4. Rot13^2 1021 m = Map(rot13, Map(rot13, []byte("a to zed"))) 1024 t.Errorf("rot13: expected %q got %q", expect, m) [all...] |
/external/python/cpython3/Lib/test/ |
test_codecs.py | [all...] |
/prebuilts/go/darwin-x86/src/bufio/ |
bufio_test.go | 73 t.Errorf("rot13 hello world test failed: got %q", s) [all...] |
/prebuilts/go/linux-x86/src/bufio/ |
bufio_test.go | 73 t.Errorf("rot13 hello world test failed: got %q", s) [all...] |