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

  /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)
  /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)
  /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.go 31 name: "android:rot13",
67 func rot13(buf []byte) { func
91 rot13(fargs[0])
  /prebuilts/go/darwin-x86/src/bytes/
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/darwin-x86/src/strings/
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/bytes/
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/strings/
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...]

Completed in 1446 milliseconds