HomeSort by relevance Sort by last modified time
    Searched refs:ord (Results 251 - 275 of 327) sorted by null

<<11121314

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
string.py 75 fromstr = map(ord, fromstr)
sunau.py 140 x = x*256 + ord(byte)
aifc.py 172 length = ord(file.read(1))
468 length = ord(chunk.file.read(1))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_float.py 590 for format_spec in ([chr(x) for x in range(ord('a'), ord('z')+1)] +
591 [chr(x) for x in range(ord('A'), ord('Z')+1)]):
    [all...]
test_hashlib.py 31 i = ord(c)
test_memoryview.py 144 self.assertEqual(l, map(ord, b"abcdef"))
260 #rw_type = lambda self, b: array.array('i', map(ord, b))
261 #getitem_type = lambda self, b: array.array('i', map(ord, b)).tostring()
mapping_tests.py 251 self.i = ord('a')
255 if self.i <= ord('z'):
test_dict.py 183 self.i = ord('a')
187 if self.i <= ord('z'):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
encoder.py 53 n = ord(s)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
string.py 75 fromstr = map(ord, fromstr)
sunau.py 140 x = x*256 + ord(byte)
aifc.py 172 length = ord(file.read(1))
468 length = ord(chunk.file.read(1))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_float.py 590 for format_spec in ([chr(x) for x in range(ord('a'), ord('z')+1)] +
591 [chr(x) for x in range(ord('A'), ord('Z')+1)]):
    [all...]
test_hashlib.py 31 i = ord(c)
test_memoryview.py 144 self.assertEqual(l, map(ord, b"abcdef"))
260 #rw_type = lambda self, b: array.array('i', map(ord, b))
261 #getitem_type = lambda self, b: array.array('i', map(ord, b)).tostring()
mapping_tests.py 251 self.i = ord('a')
255 if self.i <= ord('z'):
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_mux.py 693 (ord(control_blocks[3][0]) & 0xf0)) or
695 (ord(control_blocks[4][0]) & 0xf0)))
  /external/chromium_org/third_party/gtk+/gtk/
compose-parse.py 755 ch = ord(sequence[-1:][0])
763 print '0x%(cp)04X, %(uni)s, seq: [ <0x%(base)04X>,' % { 'cp': ord(unicode(letter)), 'uni': letter.encode('utf-8'), 'base': sequence[-2] },
    [all...]
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/tools/
miniterm.py 28 ascii_code = ord(character)
30 return 'Ctrl+%c' % (ord('@') + ascii_code)
  /external/dnsmasq/contrib/dnslist/
dnslist.pl 160 if (ord($char) >= 32 and ord($char) <= 127) {
  /external/llvm/test/tools/llvm-readobj/Inputs/
relocs.py 107 return ord(self.read(1))
110 return ord(self.read(1))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/
test_email.py     [all...]
test_email_renamed.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/
test_email.py     [all...]
test_email_renamed.py     [all...]

Completed in 1078 milliseconds

<<11121314