HomeSort by relevance Sort by last modified time
    Searched full:chr (Results 51 - 75 of 570) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_multibytecodec_support.py 298 csetch = chr(csetval & 0xff)
300 csetch = chr(csetval >> 24) + chr((csetval >> 16) & 0xff) + \
301 chr((csetval >> 8) & 0xff) + chr(csetval & 0xff)
303 csetch = chr(csetval >> 16) + \
304 chr((csetval >> 8) & 0xff) + chr(csetval & 0xff)
306 csetch = chr(csetval >> 8) + chr(csetval & 0xff
    [all...]
test_codecmaps_jp.py 24 supmaps.append((chr(i), unichr(i+0xfec0)))
test_sha.py 48 self.check(chr(0xAA) * 80,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_multibytecodec_support.py 298 csetch = chr(csetval & 0xff)
300 csetch = chr(csetval >> 24) + chr((csetval >> 16) & 0xff) + \
301 chr((csetval >> 8) & 0xff) + chr(csetval & 0xff)
303 csetch = chr(csetval >> 16) + \
304 chr((csetval >> 8) & 0xff) + chr(csetval & 0xff)
306 csetch = chr(csetval >> 8) + chr(csetval & 0xff
    [all...]
test_codecmaps_jp.py 24 supmaps.append((chr(i), unichr(i+0xfec0)))
test_sha.py 48 self.check(chr(0xAA) * 80,
  /external/chromium/chrome/browser/ui/cocoa/
nsmenuitem_additions.mm 54 unichar chr = NSBackspaceCharacter;
55 eventString = [NSString stringWithCharacters:&chr length:1];
62 unichar chr = NSDeleteCharacter;
63 eventString = [NSString stringWithCharacters:&chr length:1];
  /external/chromium_org/chrome/browser/ui/cocoa/
nsmenuitem_additions.mm 54 unichar chr = NSBackspaceCharacter;
55 eventString = [NSString stringWithCharacters:&chr length:1];
62 unichar chr = NSDeleteCharacter;
63 eventString = [NSString stringWithCharacters:&chr length:1];
  /external/chromium_org/third_party/JSON/JSON-2.59/t/
xe08_decode.t 39 my $utf8 = $json->decode(q|"\ud808\udf45"|); # chr 12345
  /external/qemu/hw/
devices.h 68 CharDriverState *chr);
  /external/qemu/
monitor-android.h 46 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
monitor.h 46 void monitor_init(CharDriverState *chr, int flags);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
py_compile.py 66 f.write(chr( x & 0xff))
67 f.write(chr((x >> 8) & 0xff))
68 f.write(chr((x >> 16) & 0xff))
69 f.write(chr((x >> 24) & 0xff))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
py_compile.py 66 f.write(chr( x & 0xff))
67 f.write(chr((x >> 8) & 0xff))
68 f.write(chr((x >> 16) & 0xff))
69 f.write(chr((x >> 24) & 0xff))
  /external/jsilver/src/com/google/streamhtmlparser/impl/
ParserStateTable.java 162 private void setDestination(InternalState from, char chr, InternalState to) {
165 Preconditions.checkArgument(chr >= 0 && chr < MAX_CHARS,
166 "char must be in ASCII set: %c", chr);
171 stateTable[from.getId()][chr] = to;
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
FileWriterWithEncoding.java 271 * @param chr the characters to write
274 public void write(char[] chr) throws IOException {
275 out.write(chr);
280 * @param chr the characters to write
285 public void write(char[] chr, int st, int end) throws IOException {
286 out.write(chr, st, end);
LockableFileWriter.java 287 * @param chr the characters to write
290 public void write(char[] chr) throws IOException {
291 out.write(chr);
296 * @param chr the characters to write
301 public void write(char[] chr, int st, int end) throws IOException {
302 out.write(chr, st, end);
  /external/chromium_org/third_party/JSON/JSON-2.59/blib/lib/JSON/backportPP/
Compat5005.pm 46 join('', map { $_ <= 127 ? chr($_) : sprintf('\u%04x', $_) } unpack('C*', $_[0]) );
51 join('', map { chr($_) } unpack('C*', $_[0]) );
Compat5006.pm 86 chr($_) :
98 chr($_) :
  /external/chromium_org/third_party/JSON/JSON-2.59/lib/JSON/backportPP/
Compat5005.pm 46 join('', map { $_ <= 127 ? chr($_) : sprintf('\u%04x', $_) } unpack('C*', $_[0]) );
51 join('', map { chr($_) } unpack('C*', $_[0]) );
Compat5006.pm 86 chr($_) :
98 chr($_) :
  /external/chromium_org/third_party/JSON/out/lib/perl5/JSON/backportPP/
Compat5005.pm 46 join('', map { $_ <= 127 ? chr($_) : sprintf('\u%04x', $_) } unpack('C*', $_[0]) );
51 join('', map { chr($_) } unpack('C*', $_[0]) );
Compat5006.pm 86 chr($_) :
98 chr($_) :
  /external/chromium_org/third_party/tlslite/tlslite/utils/
hmac.py 12 return "".join(map(lambda x, y: chr(ord(x) ^ ord(y)), s1, s2))
50 key = key + chr(0) * (blocksize - len(key))
  /external/wpa_supplicant_8/wpa_supplicant/utils/
log2pcap.py 50 data = ''.join([chr(int(x, 16)) for x in hexdata])

Completed in 399 milliseconds

1 23 4 5 6 7 8 91011>>