HomeSort by relevance Sort by last modified time
    Searched refs:memoryview (Results 76 - 100 of 164) sorted by null

1 2 34 5 6 7

  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_StringIO.py 213 constructor = memoryview
test_binascii.py 226 type2test = memoryview
test_bytes.py 445 self.assertEqual(self.type2test(b'abc').strip(memoryview(b'ac')), b'b')
446 self.assertEqual(self.type2test(b'abc').lstrip(memoryview(b'ac')), b'bc')
447 self.assertEqual(self.type2test(b'abc').rstrip(memoryview(b'ac')), b'ab')
641 b[:3] = memoryview(b'foo')
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_StringIO.py 213 constructor = memoryview
test_binascii.py 226 type2test = memoryview
test_bytes.py 445 self.assertEqual(self.type2test(b'abc').strip(memoryview(b'ac')), b'b')
446 self.assertEqual(self.type2test(b'abc').lstrip(memoryview(b'ac')), b'bc')
447 self.assertEqual(self.type2test(b'abc').rstrip(memoryview(b'ac')), b'ab')
641 b[:3] = memoryview(b'foo')
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_StringIO.py 213 constructor = memoryview
test_binascii.py 226 type2test = memoryview
test_bytes.py 445 self.assertEqual(self.type2test(b'abc').strip(memoryview(b'ac')), b'b')
446 self.assertEqual(self.type2test(b'abc').lstrip(memoryview(b'ac')), b'bc')
447 self.assertEqual(self.type2test(b'abc').rstrip(memoryview(b'ac')), b'ab')
641 b[:3] = memoryview(b'foo')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_StringIO.py 213 constructor = memoryview
test_binascii.py 226 type2test = memoryview
test_bytes.py 445 self.assertEqual(self.type2test(b'abc').strip(memoryview(b'ac')), b'b')
446 self.assertEqual(self.type2test(b'abc').lstrip(memoryview(b'ac')), b'bc')
447 self.assertEqual(self.type2test(b'abc').rstrip(memoryview(b'ac')), b'ab')
641 b[:3] = memoryview(b'foo')
    [all...]
  /external/python/cpython3/Lib/multiprocessing/
connection.py 185 m = memoryview(buf)
188 m = memoryview(bytes(m))
228 with memoryview(buf) as m:
  /external/python/cpython2/Lib/test/
test_bytes.py 376 self.assertEqual(self.type2test(b'abc').strip(memoryview(b'ac')), b'b')
377 self.assertEqual(self.type2test(b'abc').lstrip(memoryview(b'ac')), b'bc')
378 self.assertEqual(self.type2test(b'abc').rstrip(memoryview(b'ac')), b'ab')
576 b[:3] = memoryview(b'foo')
809 v = memoryview(b)
    [all...]
  /external/python/cpython3/Lib/
_pyio.py 690 if not isinstance(b, memoryview):
691 b = memoryview(b)
860 return memoryview(self._buffer)
890 with memoryview(b) as view:
    [all...]
socketserver.py 776 with memoryview(b) as view:
wave.py 415 data = memoryview(data).cast('B')
  /external/python/cpython3/Lib/asyncio/
selector_events.py 745 if not isinstance(data, (bytes, bytearray, memoryview)):
    [all...]
unix_events.py 533 assert isinstance(data, (bytes, bytearray, memoryview)), repr(data)
535 data = memoryview(data)
559 data = memoryview(data)[n:]
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_bytes.py 445 self.assertEqual(self.type2test(b'abc').strip(memoryview(b'ac')), b'b')
446 self.assertEqual(self.type2test(b'abc').lstrip(memoryview(b'ac')), b'bc')
447 self.assertEqual(self.type2test(b'abc').rstrip(memoryview(b'ac')), b'ab')
    [all...]
  /external/python/cpython2/Lib/ctypes/test/
test_byteswap.py 7 return hexlify(memoryview(s)).upper()
  /external/python/cpython3/Lib/ctypes/test/
test_byteswap.py 7 return hexlify(memoryview(s)).decode().upper()
  /external/python/cpython3/Lib/email/
contentmanager.py 249 for typ in (bytes, bytearray, memoryview):
  /external/python/cpython3/Lib/test/
test_asynchat.py 265 c.push(memoryview(data))
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_byteswap.py 7 return hexlify(memoryview(s)).upper()

Completed in 640 milliseconds

1 2 34 5 6 7