HomeSort by relevance Sort by last modified time
    Searched defs:struct (Results 301 - 325 of 453) sorted by null

<<111213141516171819

  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
rpc.py 35 import struct namespace
328 s = struct.pack("<i", len(s)) + s
364 self.bufneed = struct.unpack("<i", s)[0]
  /prebuilts/gdb/darwin-x86/lib/python2.7/logging/
config.py 27 import sys, logging, logging.handlers, socket, struct, os, traceback, re namespace
831 struct.pack(">L", n), followed by the config file.
839 slen = struct.unpack(">L", chunk)[0]
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
string_tests.py 5 import unittest, string, sys, struct namespace
328 if sys.maxint < (1 << 32) and struct.calcsize('P') == 4:
    [all...]
test_deque.py 9 import struct namespace
527 blocksize = struct.calcsize('2P%dP' % BLOCKLEN)
test_math.py 10 import struct namespace
46 n = struct.unpack('<q', struct.pack('<d', x))[0]
    [all...]
test_parser.py 4 import struct namespace
617 nodesize = struct.calcsize('hP3iP0h')
test_zipimport.py 5 import struct namespace
36 pyc = imp.get_magic() + struct.pack("<i", int(mtime)) + data
436 fp.write(struct.pack('=I', 0x06054B50))
  /prebuilts/gdb/linux-x86/lib/python2.7/
aifc.py 137 import struct namespace
149 return struct.unpack('>l', file.read(4))[0]
150 except struct.error:
155 return struct.unpack('>L', file.read(4))[0]
156 except struct.error:
161 return struct.unpack('>h', file.read(2))[0]
162 except struct.error:
167 return struct.unpack('>H', file.read(2))[0]
168 except struct.error:
201 f.write(struct.pack('>h', x)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
rpc.py 35 import struct namespace
328 s = struct.pack("<i", len(s)) + s
364 self.bufneed = struct.unpack("<i", s)[0]
  /prebuilts/gdb/linux-x86/lib/python2.7/logging/
config.py 27 import sys, logging, logging.handlers, socket, struct, os, traceback, re namespace
831 struct.pack(">L", n), followed by the config file.
839 slen = struct.unpack(">L", chunk)[0]
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
string_tests.py 5 import unittest, string, sys, struct namespace
328 if sys.maxint < (1 << 32) and struct.calcsize('P') == 4:
    [all...]
test_deque.py 9 import struct namespace
527 blocksize = struct.calcsize('2P%dP' % BLOCKLEN)
test_math.py 10 import struct namespace
46 n = struct.unpack('<q', struct.pack('<d', x))[0]
    [all...]
test_parser.py 4 import struct namespace
617 nodesize = struct.calcsize('hP3iP0h')
test_zipimport.py 5 import struct namespace
36 pyc = imp.get_magic() + struct.pack("<i", int(mtime)) + data
436 fp.write(struct.pack('=I', 0x06054B50))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
aifc.py 137 import struct namespace
149 return struct.unpack('>l', file.read(4))[0]
150 except struct.error:
155 return struct.unpack('>L', file.read(4))[0]
156 except struct.error:
161 return struct.unpack('>h', file.read(2))[0]
162 except struct.error:
167 return struct.unpack('>H', file.read(2))[0]
168 except struct.error:
201 f.write(struct.pack('>h', x)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
rpc.py 35 import struct namespace
328 s = struct.pack("<i", len(s)) + s
364 self.bufneed = struct.unpack("<i", s)[0]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
config.py 27 import sys, logging, logging.handlers, socket, struct, os, traceback, re namespace
831 struct.pack(">L", n), followed by the config file.
839 slen = struct.unpack(">L", chunk)[0]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
string_tests.py 5 import unittest, string, sys, struct namespace
328 if sys.maxint < (1 << 32) and struct.calcsize('P') == 4:
    [all...]
test_deque.py 9 import struct namespace
527 blocksize = struct.calcsize('2P%dP' % BLOCKLEN)
test_math.py 10 import struct namespace
46 n = struct.unpack('<q', struct.pack('<d', x))[0]
    [all...]
test_parser.py 4 import struct namespace
617 nodesize = struct.calcsize('hP3iP0h')
test_zipimport.py 5 import struct namespace
36 pyc = imp.get_magic() + struct.pack("<i", int(mtime)) + data
436 fp.write(struct.pack('=I', 0x06054B50))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
aifc.py 137 import struct namespace
149 return struct.unpack('>l', file.read(4))[0]
150 except struct.error:
155 return struct.unpack('>L', file.read(4))[0]
156 except struct.error:
161 return struct.unpack('>h', file.read(2))[0]
162 except struct.error:
167 return struct.unpack('>H', file.read(2))[0]
168 except struct.error:
201 f.write(struct.pack('>h', x)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
rpc.py 35 import struct namespace
328 s = struct.pack("<i", len(s)) + s
364 self.bufneed = struct.unpack("<i", s)[0]

Completed in 1791 milliseconds

<<111213141516171819