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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/JSON/out/lib/perl5/x86_64-linux-gnu-thread-multi/auto/JSON/
.packlist 1 /w/chr/src/third_party/JSON/out/lib/perl5/JSON.pm
2 /w/chr/src/third_party/JSON/out/lib/perl5/JSON/backportPP.pm
3 /w/chr/src/third_party/JSON/out/lib/perl5/JSON/backportPP/Boolean.pm
4 /w/chr/src/third_party/JSON/out/lib/perl5/JSON/backportPP/Compat5005.pm
5 /w/chr/src/third_party/JSON/out/lib/perl5/JSON/backportPP/Compat5006.pm
6 /w/chr/src/third_party/JSON/out/man/man3/JSON.3pm
7 /w/chr/src/third_party/JSON/out/man/man3/JSON::backportPP.3pm
8 /w/chr/src/third_party/JSON/out/man/man3/JSON::backportPP::Boolean.3pm
9 /w/chr/src/third_party/JSON/out/man/man3/JSON::backportPP::Compat5005.3pm
10 /w/chr/src/third_party/JSON/out/man/man3/JSON::backportPP::Compat5006.3p
    [all...]
  /external/chromium_org/third_party/JSON/JSON-2.59/t/
e09_encode.t 32 is($json->encode(chr hex 3042 ), q|"\u3042"|);
33 is($json->encode(chr hex 12345 ), q|"\ud808\udf45"|);
36 is($json->encode(chr hex 3042 ), $json->encode(chr 66));
37 is($json->encode(chr hex 12345 ), $json->encode(chr 69));
e12_upgrade.t 23 is( $value, chr 0xc8 );
30 eval { $json->decode( '"' . chr(0xc8) . '"' ) };
99_binary.t 47 test join "", map chr ($_ & 255), 0..$_;
48 test join "", map chr rand 255, 0..$_;
49 test join "", map chr ($_ * 97 & ~0x4000), 0..$_;
50 test join "", map chr (rand (2**20) & ~0x800), 0..$_;
01_utf8.t 25 ok (JSON->new->allow_nonref (1)->ascii (1)->utf8 (1)->encode (chr 0x8000) eq '"\u8000"');
26 ok (JSON->new->allow_nonref (1)->ascii (1)->utf8 (1)->pretty (1)->encode (chr 0x10402) eq "\"\\ud801\\udc02\"\n");
  /external/qemu/
qemu-char.c 163 CharDriverState *chr; local
167 QTAILQ_FOREACH(chr, &chardevs, next) {
168 qemu_chr_reset(chr);
230 /* chr driver being released. */
247 static int null_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
254 CharDriverState *chr; local
256 chr = qemu_mallocz(sizeof(CharDriverState));
257 chr->chr_write = null_chr_write;
258 return chr;
287 static int mux_chr_write(CharDriverState *chr, const uint8_t *buf, int len
431 CharDriverState *chr = opaque; local
444 CharDriverState *chr = opaque; local
464 CharDriverState *chr = opaque; local
500 CharDriverState *chr; local
616 CharDriverState *chr = opaque; local
625 CharDriverState *chr = opaque; local
678 CharDriverState *chr; local
756 CharDriverState *chr = opaque; local
774 CharDriverState *chr = opaque; local
835 CharDriverState *chr; local
942 CharDriverState *chr = opaque; local
951 CharDriverState *chr = opaque; local
1012 struct CharDriverState *chr = opaque; local
1042 CharDriverState *chr; local
1285 CharDriverState *chr; local
1422 CharDriverState *chr; local
1492 CharDriverState *chr; local
1694 CharDriverState *chr = opaque; local
1712 CharDriverState *chr; local
1732 CharDriverState *chr = opaque; local
1812 CharDriverState *chr; local
1832 CharDriverState *chr; local
1884 CharDriverState *chr = opaque; local
1902 CharDriverState *chr = opaque; local
1942 CharDriverState *chr = NULL; local
2002 CharDriverState *chr = opaque; local
2127 CharDriverState *chr = opaque; local
2165 CharDriverState *chr = opaque; local
2191 CharDriverState *chr = opaque; local
2230 CharDriverState *chr = NULL; local
2594 CharDriverState *chr; local
2648 CharDriverState *chr; local
2716 CharDriverState *chr; local
2731 CharDriverState *chr; local
    [all...]
qemu-char.h 64 void (*chr_send_event)(struct CharDriverState *chr, int event);
65 void (*chr_close)(struct CharDriverState *chr);
66 void (*chr_accept_input)(struct CharDriverState *chr);
67 void (*chr_set_echo)(struct CharDriverState *chr, bool echo);
68 void (*chr_guest_open)(struct CharDriverState *chr);
69 void (*chr_guest_close)(struct CharDriverState *chr);
83 void qemu_chr_set_echo(struct CharDriverState *chr, bool echo);
84 void qemu_chr_guest_open(struct CharDriverState *chr);
85 void qemu_chr_guest_close(struct CharDriverState *chr);
86 void qemu_chr_close(CharDriverState *chr);
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/
Base64.java 51 byte chr;
55 chr = in[len - 1];
57 if ((chr == '\n') || (chr == '\r') || (chr == ' ') || (chr == '\t')) {
60 if (chr == '=') {
75 chr = in[i];
77 if ((chr == '\n') || (chr == '\r') || (chr == ' ') || (chr == '\t'))
    [all...]
  /libcore/luni/src/main/java/libcore/io/
Base64.java 50 byte chr;
54 chr = in[len-1];
56 if ((chr == '\n') || (chr == '\r') ||
57 (chr == ' ') || (chr == '\t')) {
60 if (chr == '=') {
75 chr = in[i];
77 if ((chr == '\n') || (chr == '\r') |
    [all...]
  /external/qemu/hw/
msmouse.c 36 CharDriverState *chr = (CharDriverState *)opaque; local
53 qemu_chr_read(chr, bytes, 4);
62 static void msmouse_chr_close (struct CharDriverState *chr)
64 qemu_free (chr);
69 CharDriverState *chr; local
71 chr = qemu_mallocz(sizeof(CharDriverState));
72 chr->chr_write = msmouse_chr_write;
73 chr->chr_close = msmouse_chr_close;
75 qemu_add_mouse_event_handler(msmouse_event, chr, 0, "QEMU Microsoft Mouse");
77 return chr;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_dump.c 79 #define CHR(C) ctx->dump_printf( ctx, "%c", C )
104 CHR( '[' );
106 CHR( '[' );
112 CHR( '+' );
115 CHR( ']' );
117 CHR('[');
119 CHR(']');
123 CHR( '[' );
125 CHR( '[' );
131 CHR( '+' )
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_dump.c 79 #define CHR(C) ctx->dump_printf( ctx, "%c", C )
104 CHR( '[' );
106 CHR( '[' );
112 CHR( '+' );
115 CHR( ']' );
117 CHR('[');
119 CHR(']');
123 CHR( '[' );
125 CHR( '[' );
131 CHR( '+' )
    [all...]
  /external/chromium_org/third_party/JSON/out/lib/perl5/x86_64-linux-gnu-thread-multi/
perllocal.pod 7 C<installed into: /w/chr/src/third_party/JSON/out/lib/perl5>
29 C<installed into: /w/chr/src/third_party/JSON/out/lib/perl5>
51 C<installed into: /w/chr/src/third_party/JSON/out/lib/perl5>
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
telnetlib.py 51 IAC = chr(255) # "Interpret As Command"
52 DONT = chr(254)
53 DO = chr(253)
54 WONT = chr(252)
55 WILL = chr(251)
56 theNULL = chr(0)
58 SE = chr(240) # Subnegotiation End
59 NOP = chr(241) # No Operation
60 DM = chr(242) # Data Mark
61 BRK = chr(243) # Brea
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
telnetlib.py 51 IAC = chr(255) # "Interpret As Command"
52 DONT = chr(254)
53 DO = chr(253)
54 WONT = chr(252)
55 WILL = chr(251)
56 theNULL = chr(0)
58 SE = chr(240) # Subnegotiation End
59 NOP = chr(241) # No Operation
60 DM = chr(242) # Data Mark
61 BRK = chr(243) # Brea
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_hmac.py 16 md5test(chr(0x0b) * 16,
24 md5test(chr(0xAA)*16,
25 chr(0xDD)*50,
28 md5test("".join([chr(i) for i in range(1, 26)]),
29 chr(0xCD) * 50,
32 md5test(chr(0x0C) * 16,
36 md5test(chr(0xAA) * 80,
40 md5test(chr(0xAA) * 80,
50 shatest(chr(0x0b) * 20,
58 shatest(chr(0xAA)*20
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_hmac.py 16 md5test(chr(0x0b) * 16,
24 md5test(chr(0xAA)*16,
25 chr(0xDD)*50,
28 md5test("".join([chr(i) for i in range(1, 26)]),
29 chr(0xCD) * 50,
32 md5test(chr(0x0C) * 16,
36 md5test(chr(0xAA) * 80,
40 md5test(chr(0xAA) * 80,
50 shatest(chr(0x0b) * 20,
58 shatest(chr(0xAA)*20
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_unicode.py 1 """Fixer that changes unicode to str, unichr to chr, and u"..." into "...".
9 _mapping = {u"unichr" : u"chr", u"unicode" : u"str"}
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_unicode.py 1 """Fixer that changes unicode to str, unichr to chr, and u"..." into "...".
9 _mapping = {u"unichr" : u"chr", u"unicode" : u"str"}
  /external/chromium_org/third_party/markupsafe/
_compat.py 18 unichr = chr
  /external/jsilver/src/com/google/streamhtmlparser/util/
HtmlUtils.java 246 * @param chr the {@code char} to check
251 public static boolean isHtmlSpace(char chr) {
252 return HTML_WHITESPACE.contains(chr);
274 * @param chr the {@code char} to check
278 public static boolean isJavascriptWhitespace(char chr) {
279 return JAVASCRIPT_WHITESPACE.contains(chr);
298 * @param chr {@code char} to check
299 * @return {@code true} if the {@code chr} is a Javascript whitespace
302 public static boolean isJavascriptIdentifier(char chr) {
303 return ((chr >= 'a' && chr <= 'z'
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
ProxyWriter.java 57 * @param chr the characters to write
60 public void write(char[] chr) throws IOException {
61 out.write(chr);
66 * @param chr the characters to write
71 public void write(char[] chr, int st, int end) throws IOException {
72 out.write(chr, st, end);
NullWriter.java 52 * @param chr The characters to write
54 public void write(char[] chr) {
60 * @param chr The characters to write
64 public void write(char[] chr, int st, int end) {
  /external/skia/tools/
picture_utils.cpp 41 bool is_path_seperator(const char chr) {
43 return chr == '\\' || chr == '/';
45 return chr == '/';
  /external/llvm/test/Transforms/InstCombine/
strchr-2.ll 8 @chr = global i8 zeroinitializer
19 store i8 %dst, i8* @chr

Completed in 1350 milliseconds

1 2 3 4 5 6 7 8 91011>>