Home
last modified time | relevance | path

Searched refs:source_bytes (Results 1 – 9 of 9) sorted by relevance

/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/test/
Dopen_type_data_test.cc46 ByteVector source_bytes(1024); in TestOTFCopy() local
47 for (size_t i = 0; i < source_bytes.size(); ++i) { in TestOTFCopy()
48 source_bytes[i] = (uint8_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()
/third_party/skia/third_party/externals/sfntly/cpp/src/test/
Dopen_type_data_test.cc46 ByteVector source_bytes(1024); in TestOTFCopy() local
47 for (size_t i = 0; i < source_bytes.size(); ++i) { in TestOTFCopy()
48 source_bytes[i] = (uint8_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()
/third_party/python/Lib/
Dpy_compile.py142 source_bytes = loader.get_data(file)
144 code = loader.source_to_code(source_bytes, dfile or file,
165 source_hash = importlib.util.source_hash(source_bytes)
Dzipimport.py648 source_bytes = _get_pyc_source(self, fullpath)
649 if source_bytes is not None:
652 source_bytes,
/third_party/python/Lib/importlib/
D_bootstrap_external.py704 def decode_source(source_bytes): argument
710 source_bytes_readline = _io.BytesIO(source_bytes).readline
713 return newline_decoder.decode(source_bytes.decode(encoding[0]))
936 source_bytes = self.get_data(path)
940 return decode_source(source_bytes)
959 source_bytes = None
992 source_bytes = self.get_data(source_path)
995 source_bytes,
1015 if source_bytes is None:
1016 source_bytes = self.get_data(source_path)
[all …]
Dutil.py22 def source_hash(source_bytes): argument
24 return _imp.source_hash(_RAW_MAGIC_NUMBER, source_bytes)
/third_party/python/Lib/test/test_importlib/
Dtest_util.py24 source_bytes = self.source.encode('utf-8')
25 self.assertEqual(self.util.decode_source(source_bytes), self.source)
29 source_bytes = source.encode('latin-1')
30 assert source_bytes != source.encode('utf-8')
31 self.assertEqual(self.util.decode_source(source_bytes), source)
35 source_bytes = source.encode('utf-8')
36 self.assertEqual(self.util.decode_source(source_bytes),
/third_party/python/Lib/test/
Dtest_memoryview.py21 source_bytes = b"abcdef" variable in AbstractMemoryTests
25 return self.source_bytes
439 source_bytes = b"XabcdefY" variable in BaseMemorySliceTests
456 source_bytes = b"XabcdefY" variable in BaseMemorySliceSliceTests
/third_party/python/Doc/library/
Dimportlib.rst1534 .. function:: decode_source(source_bytes)
1683 .. function:: source_hash(source_bytes)
1685 Return the hash of *source_bytes* as bytes. A hash-based ``.pyc`` file embeds