HomeSort by relevance Sort by last modified time
    Searched full:rot13 (Results 1 - 25 of 40) sorted by null

1 2

  /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);
  /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)
quopri_codec.py 3 Like base64 and rot13, this returns Python strings, not Unicode.
aliases.py 458 'rot13' : 'rot_13',
  /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)
quopri_codec.py 3 Like base64 and rot13, this returns Python strings, not Unicode.
aliases.py 458 'rot13' : 'rot_13',
  /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)
quopri_codec.py 3 Like base64 and rot13, this returns Python strings, not Unicode.
aliases.py 458 'rot13' : 'rot_13',
  /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)
quopri_codec.py 3 Like base64 and rot13, this returns Python strings, not Unicode.
  /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 177 rot13 := func(r rune) rune {
186 fmt.Println(strings.Map(rot13, "'Twas brillig and the slithy gopher..."))
strings_test.go 428 func rot13(r rune) rune { func
458 // 3. Rot13
459 m = Map(rot13, "a to zed")
462 t.Errorf("rot13: expected %q got %q", expect, m)
465 // 4. Rot13^2
466 m = Map(rot13, Map(rot13, "a to zed"))
469 t.Errorf("rot13: expected %q got %q", expect, m)
  /prebuilts/go/linux-x86/src/strings/
example_test.go 177 rot13 := func(r rune) rune {
186 fmt.Println(strings.Map(rot13, "'Twas brillig and the slithy gopher..."))
strings_test.go 428 func rot13(r rune) rune { func
458 // 3. Rot13
459 m = Map(rot13, "a to zed")
462 t.Errorf("rot13: expected %q got %q", expect, m)
465 // 4. Rot13^2
466 m = Map(rot13, Map(rot13, "a to zed"))
469 t.Errorf("rot13: expected %q got %q", expect, m)
  /build/core/
product.mk 301 $(eval $(strip $(1))_$(call rot13,$(v)):=$$($$(v))) \
313 $(if $(call streq,$($(v)),$($(strip $(1))_$(call rot13,$(v)))),, \
315 $(eval $(warning previous value: $($(strip $(1))_$(call rot13,$(v))))) \
  /prebuilts/go/darwin-x86/src/bytes/
bytes_test.go 748 func rot13(r rune) rune { func
779 // 3. Rot13
780 m = Map(rot13, []byte("a to zed"))
783 t.Errorf("rot13: expected %q got %q", expect, m)
786 // 4. Rot13^2
787 m = Map(rot13, Map(rot13, []byte("a to zed")))
790 t.Errorf("rot13: expected %q got %q", expect, m)
  /prebuilts/go/linux-x86/src/bytes/
bytes_test.go 748 func rot13(r rune) rune { func
779 // 3. Rot13
780 m = Map(rot13, []byte("a to zed"))
783 t.Errorf("rot13: expected %q got %q", expect, m)
786 // 4. Rot13^2
787 m = Map(rot13, Map(rot13, []byte("a to zed")))
790 t.Errorf("rot13: expected %q got %q", expect, m)
  /external/v8/benchmarks/
README.txt 41 encoded using ROT13 in a way that does not affect how the regexps
revisions.html 71 encoded using ROT13 in a way that does not affect how the regexps
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_fileinput.py 215 fi = FileInput(files=t1, openhook=hook_encoded("rot13"))
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_fileinput.py 215 fi = FileInput(files=t1, openhook=hook_encoded("rot13"))

Completed in 904 milliseconds

1 2