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

1 2 3 4 56 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_binascii.py 22 rawdata += "".join(map(chr, xrange(256)))
90 c = chr(i)
test_iterlen.py 227 self.assertRaises(RuntimeError, map, chr, BadLen())
228 self.assertRaises(RuntimeError, map, chr, BadLengthHint())
test_codecs.py 741 b = chr(b)
771 b = chr(b)
    [all...]
test_types.py 425 for format_spec in ([chr(x) for x in range(ord('a'), ord('z')+1)] +
426 [chr(x) for x in range(ord('A'), ord('Z')+1)]):
534 for format_spec in ([chr(x) for x in range(ord('a'), ord('z')+1)] +
535 [chr(x) for x in range(ord('A'), ord('Z')+1)]):
699 for format_spec in ([chr(x) for x in range(ord('a'), ord('z')+1)] +
700 [chr(x) for x in range(ord('A'), ord('Z')+1)]):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_binascii.py 22 rawdata += "".join(map(chr, xrange(256)))
90 c = chr(i)
test_iterlen.py 227 self.assertRaises(RuntimeError, map, chr, BadLen())
228 self.assertRaises(RuntimeError, map, chr, BadLengthHint())
test_codecs.py 741 b = chr(b)
771 b = chr(b)
    [all...]
test_types.py 425 for format_spec in ([chr(x) for x in range(ord('a'), ord('z')+1)] +
426 [chr(x) for x in range(ord('A'), ord('Z')+1)]):
534 for format_spec in ([chr(x) for x in range(ord('a'), ord('z')+1)] +
535 [chr(x) for x in range(ord('A'), ord('Z')+1)]):
699 for format_spec in ([chr(x) for x in range(ord('a'), ord('z')+1)] +
700 [chr(x) for x in range(ord('A'), ord('Z')+1)]):
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
chvr_filter.cpp 28 int chr,
74 if (!chr)
107 if (chr)
266 if (chr)
435 if (chr)
519 if (chr)
chv_filter.cpp 152 int chr,
160 chr : luma or color indication
181 int chr,
206 if (!chr)
223 if (chr) QP = QP_store[jVal0];
339 if (chr) QP = QP_store[jVal0];
458 int chr,
483 if (!chr)
500 if (chr) QP = QP_store[jVal0];
578 if (chr) QP = QP_store[jVal0]
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/utility/
TextUtilities.java 593 char chr = text.charAt(i); local
595 if (!inTag && (chr == '<')) {
622 chr = text.charAt(i);
628 } else if (inTag && (chr == '>')) {
633 sb.append(chr);
639 char chrLowerCase = Character.toLowerCase(chr);
710 sb.append(chr);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
modulefinder.py 19 LOAD_CONST = chr(dis.opname.index('LOAD_CONST'))
20 IMPORT_NAME = chr(dis.opname.index('IMPORT_NAME'))
21 STORE_NAME = chr(dis.opname.index('STORE_NAME'))
22 STORE_GLOBAL = chr(dis.opname.index('STORE_GLOBAL'))
24 HAVE_ARGUMENT = chr(dis.HAVE_ARGUMENT)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
modulefinder.py 19 LOAD_CONST = chr(dis.opname.index('LOAD_CONST'))
20 IMPORT_NAME = chr(dis.opname.index('IMPORT_NAME'))
21 STORE_NAME = chr(dis.opname.index('STORE_NAME'))
22 STORE_GLOBAL = chr(dis.opname.index('STORE_GLOBAL'))
24 HAVE_ARGUMENT = chr(dis.HAVE_ARGUMENT)
  /external/qemu/
gdbstub.c 289 CharDriverState *chr; member in struct:GDBState
379 qemu_chr_write(s->chr, buf, len);
2389 CharDriverState *chr = NULL; local
    [all...]
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
genlingware.pl 282 push @svoxheader, chr(ord($ch)-ord(' '));
547 # @x = map {chr(48+$_) } (0..9);
551 # @x = map +(chr(65+$_)), (0..9);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
types.py 83 self.cur.execute("select ?", (chr(150),))
92 self.cur.execute("select ?", (chr(150),))
101 self.cur.execute("select ?", (chr(150),))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
types.py 83 self.cur.execute("select ?", (chr(150),))
92 self.cur.execute("select ?", (chr(150),))
101 self.cur.execute("select ?", (chr(150),))
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
socket.rb 345 @buffer.read( 3 ).to_i( 8 ).chr
347 @buffer.read( 2 ).to_i( 16 ).chr
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
mux.py 114 return chr(channel_id)
118 first = chr(0xc0 + (channel_id >> 16))
145 return chr(number)
149 return chr(number >> 16) + struct.pack('!H', number & 0xffff)
185 return (chr(first_byte) + _encode_channel_id(channel_id) +
220 payload = (_encode_channel_id(_CONTROL_CHANNEL_ID) + chr(first_byte) +
236 payload = (_encode_channel_id(_CONTROL_CHANNEL_ID) + chr(first_byte) +
677 chr(first_byte) + payload)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/gdb/
webkit.py 84 string = ''.join([chr((ptr + i).dereference()) for i in xrange(length)])
121 return ''.join([chr((data + i).dereference()) for i in xrange(length)])
  /external/chromium_org/tools/clang/scripts/
run_tool.py 249 char_before = chr(byte)
258 char_after = chr(byte)
  /external/chromium_org/v8/tools/
jsmin.py 132 return chr(number + 97)
134 return chr(number + 65)
  /external/ipsec-tools/src/racoon/
prsa_par.y 133 char *chr;
147 %type <chr> ADDR4 ADDR6 BASE64
  /external/v8/tools/
jsmin.py 132 return chr(number + 97)
134 return chr(number + 65)
  /hardware/invensense/60xx/mlsdk/mlutils/
mputest.c 129 #define USHORT_TO_CHARS(chr,shrt) (chr)[0]=(unsigned char)(shrt>>8); \
130 (chr)[1]=(unsigned char)(shrt);
132 #define UINT_TO_CHARS(chr,ui) (chr)[0]=(unsigned char)(ui>>24); \
133 (chr)[1]=(unsigned char)(ui>>16); \
134 (chr)[2]=(unsigned char)(ui>>8); \
135 (chr)[3]=(unsigned char)(ui);
    [all...]

Completed in 850 milliseconds

1 2 3 4 56 7 8 91011>>