OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rot13
(Results
1 - 5
of
5
) sorted by null
/external/compiler-rt/BlocksRuntime/tests/
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/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/core/
product.mk
263
$(eval $(strip $(1))_$(call
rot13
,$(v)):=$$($$(v))) \
275
$(if $(call streq,$($(v)),$($(strip $(1))_$(call
rot13
,$(v)))),, \
277
$(eval $(warning previous value: $($(strip $(1))_$(call
rot13
,$(v))))) \
definitions.mk
567
## Run
rot13
on a string
570
define
rot13
macro
[
all
...]
Completed in 65 milliseconds