/external/sfntly/cpp/src/test/ |
D | open_type_data_test.cc | 46 ByteVector source_bytes(1024); in TestOTFCopy() local 47 for (size_t i = 0; i < source_bytes.size(); ++i) { in TestOTFCopy() 48 source_bytes[i] = (byte_t)(i & 0xff); in TestOTFCopy() 50 ByteArrayPtr source_array = new MemoryByteArray(&(source_bytes[0]), 1024); in TestOTFCopy() 60 EXPECT_TRUE(std::equal(source_bytes.begin(), source_bytes.end(), in TestOTFCopy()
|
/external/python/cpython3/Lib/importlib/ |
D | _bootstrap_external.py | 557 def decode_source(source_bytes): argument 563 source_bytes_readline = _io.BytesIO(source_bytes).readline 566 return newline_decoder.decode(source_bytes.decode(encoding[0])) 779 source_bytes = self.get_data(path) 783 return decode_source(source_bytes) 802 source_bytes = None 835 source_bytes = self.get_data(source_path) 838 source_bytes, 858 if source_bytes is None: 859 source_bytes = self.get_data(source_path) [all …]
|
D | util.py | 22 def source_hash(source_bytes): argument 24 return _imp.source_hash(_RAW_MAGIC_NUMBER, source_bytes)
|
/external/python/cpython3/Lib/ |
D | py_compile.py | 140 source_bytes = loader.get_data(file) 142 code = loader.source_to_code(source_bytes, dfile or file, 162 source_hash = importlib.util.source_hash(source_bytes)
|
/external/llvm/bindings/python/llvm/ |
D | disassembler.py | 122 source_bytes = c_char_p(source) 126 buf = cast(source_bytes, POINTER(c_ubyte * len(source))).contents
|
/external/swiftshader/third_party/llvm-7.0/llvm/bindings/python/llvm/ |
D | disassembler.py | 122 source_bytes = c_char_p(source) 126 buf = cast(source_bytes, POINTER(c_ubyte * len(source))).contents
|
/external/python/cpython2/Lib/test/ |
D | test_memoryview.py | 19 source_bytes = b"abcdef" variable in AbstractMemoryTests 23 return self.source_bytes 289 source_bytes = b"XabcdefY" variable in BaseMemorySliceTests 306 source_bytes = b"XabcdefY" variable in BaseMemorySliceSliceTests
|
/external/python/cpython3/Lib/test/test_importlib/ |
D | test_util.py | 23 source_bytes = self.source.encode('utf-8') 24 self.assertEqual(self.util.decode_source(source_bytes), self.source) 28 source_bytes = source.encode('latin-1') 29 assert source_bytes != source.encode('utf-8') 30 self.assertEqual(self.util.decode_source(source_bytes), source) 34 source_bytes = source.encode('utf-8') 35 self.assertEqual(self.util.decode_source(source_bytes),
|
/external/python/cpython3/Lib/test/ |
D | test_memoryview.py | 19 source_bytes = b"abcdef" variable in AbstractMemoryTests 23 return self.source_bytes 426 source_bytes = b"XabcdefY" variable in BaseMemorySliceTests 443 source_bytes = b"XabcdefY" variable in BaseMemorySliceSliceTests
|
/external/v8/tools/ |
D | js2c.py | 445 def BuildMetadata(sources, source_bytes, native_type): argument 457 total_length = len(source_bytes) 487 "sources_declaration": SOURCES_DECLARATION % ToCArray(source_bytes),
|
/external/python/cpython3/Doc/library/ |
D | importlib.rst | 1419 .. function:: decode_source(source_bytes) 1563 .. function:: source_hash(source_bytes) 1565 Return the hash of *source_bytes* as bytes. A hash-based ``.pyc`` file embeds
|