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

1 2 3

  /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)
quopri_codec.py 3 Like base64 and rot13, this returns Python strings, not Unicode.
  /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)
quopri_codec.py 3 Like base64 and rot13, this returns Python strings, not Unicode.
  /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)
quopri_codec.py 3 Like base64 and rot13, this returns Python strings, not Unicode.
  /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.
  /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.
  /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.
  /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 199 rot13 := func(r rune) rune {
208 fmt.Println(strings.Map(rot13, "'Twas brillig and the slithy gopher..."))
strings_test.go 561 func rot13(r rune) rune { func
591 // 3. Rot13
592 m = Map(rot13, "a to zed")
595 t.Errorf("rot13: expected %q got %q", expect, m)
598 // 4. Rot13^2
599 m = Map(rot13, Map(rot13, "a to zed"))
602 t.Errorf("rot13: expected %q got %q", expect, m)
    [all...]
  /prebuilts/go/linux-x86/src/strings/
example_test.go 199 rot13 := func(r rune) rune {
208 fmt.Println(strings.Map(rot13, "'Twas brillig and the slithy gopher..."))
  /frameworks/native/libs/vr/libpdx_uds/
remote_method_tests.cpp 40 std::string Rot13(const std::string& s) {
167 PDX_REMOTE_METHOD(Rot13, kOpRot13, std::string(const std::string&));
183 SendTestType, SendVector, Rot13, NoArgs, SendFile, GetFile,
258 std::string Rot13(const std::string& string) {
260 InvokeRemoteMethod<TestInterface::Rot13>(string);
382 case TestInterface::Rot13::Opcode:
383 DispatchRemoteMethod<TestInterface::Rot13>(*this, &TestService::OnRot13,
470 return {Rot13(s)};
604 const auto rot13_alphabet = client->Rot13(alphabet);
605 EXPECT_EQ(Rot13(alphabet), rot13_alphabet)
    [all...]
  /prebuilts/go/darwin-x86/src/bytes/
example_test.go 262 rot13 := func(r rune) rune {
271 fmt.Printf("%s", bytes.Map(rot13, []byte("'Twas brillig and the slithy gopher...")))
bytes_test.go 828 func rot13(r rune) rune { func
859 // 3. Rot13
860 m = Map(rot13, []byte("a to zed"))
863 t.Errorf("rot13: expected %q got %q", expect, m)
866 // 4. Rot13^2
867 m = Map(rot13, Map(rot13, []byte("a to zed")))
870 t.Errorf("rot13: expected %q got %q", expect, m)
    [all...]
  /prebuilts/go/linux-x86/src/bytes/
example_test.go 262 rot13 := func(r rune) rune {
271 fmt.Printf("%s", bytes.Map(rot13, []byte("'Twas brillig and the slithy gopher...")))
bytes_test.go 828 func rot13(r rune) rune { func
859 // 3. Rot13
860 m = Map(rot13, []byte("a to zed"))
863 t.Errorf("rot13: expected %q got %q", expect, m)
866 // 4. Rot13^2
867 m = Map(rot13, Map(rot13, []byte("a to zed")))
870 t.Errorf("rot13: expected %q got %q", expect, m)
    [all...]

Completed in 1465 milliseconds

1 2 3