HomeSort by relevance Sort by last modified time
    Searched refs:rot13 (Results 1 - 10 of 10) sorted by null

  /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)
  /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])
  /external/python/cpython2/Lib/test/
test_io.py     [all...]
  /external/python/cpython3/Lib/test/
test_codecs.py     [all...]
test_io.py     [all...]

Completed in 1523 milliseconds