Searched refs:get_magic (Results 1 – 25 of 26) sorted by relevance
12
/external/python/cpython2/Lib/test/ |
D | test_compileall.py | 31 compare = struct.pack('<4sl', imp.get_magic(), mtime) 51 self.recreation_check(struct.pack('<4sl', imp.get_magic(), 1))
|
D | test_import_magic.py | 35 raw_magic = imp.get_magic()
|
D | test_zipimport.py | 36 pyc = imp.get_magic() + struct.pack("<i", int(mtime)) + data
|
/external/python/cpython2/Tools/scripts/ |
D | checkpyc.py | 18 MAGIC = imp.get_magic()
|
/external/python/cpython2/Lib/ |
D | py_compile.py | 13 MAGIC = imp.get_magic()
|
D | imputil.py | 441 f.write(imp.get_magic()) 590 if f.read(4) == imp.get_magic():
|
D | compileall.py | 88 expect = struct.pack('<4sl', imp.get_magic(), mtime)
|
D | pkgutil.py | 21 if magic != imp.get_magic():
|
D | modulefinder.py | 311 if fp.read(4) != imp.get_magic():
|
D | pydoc.py | 283 magic = imp.get_magic()
|
/external/swiftshader/third_party/LLVM/lib/Archive/ |
D | Archive.cpp | 121 sys::fs::get_magic(path.str(), magic.capacity(), magic); in replaceWith()
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | FileSystem.h | 397 error_code get_magic(const Twine &path, uint32_t len,
|
/external/python/cpython3/Lib/ |
D | imp.py | 59 def get_magic(): function
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | PathV2.cpp | 728 if (error_code ec = get_magic(path, Magic.size(), Buffer)) { in has_magic() 743 error_code ec = get_magic(path, Magic.capacity(), Magic); in identify_magic()
|
/external/python/cpython2/Lib/plat-mac/ |
D | buildtools.py | 28 MAGIC = imp.get_magic()
|
D | bundlebuilder.py | 237 MAGIC = imp.get_magic()
|
/external/python/cpython3/Doc/library/ |
D | imp.rst | 21 .. function:: get_magic() 247 magic number, as returned by :func:`get_magic`.
|
/external/blktrace/ |
D | blkparse.c | 2210 static inline __u32 get_magic(struct blk_io_trace *bit) in get_magic() function 2248 magic = get_magic(bit); in read_events() 2394 magic = get_magic(bit); in ms_prime()
|
/external/swiftshader/third_party/LLVM/lib/Support/Unix/ |
D | PathV2.inc | 480 error_code get_magic(const Twine &path, uint32_t len,
|
/external/libchrome/third_party/jinja2/ |
D | environment.py | 676 py_header = imp.get_magic() + \
|
/external/python/cpython2/Doc/library/ |
D | imp.rst | 15 .. function:: get_magic()
|
/external/swiftshader/third_party/LLVM/lib/Support/Windows/ |
D | PathV2.inc | 652 error_code get_magic(const Twine &path, uint32_t len,
|
/external/python/cpython2/Lib/compiler/ |
D | pycodegen.py | 123 MAGIC = imp.get_magic()
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.4.rst | 1000 :func:`~imp.get_magic` function in the deprecated :mod:`imp` module.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 4888 imp.get_magic(). 25537 magic = string.join(["\\x%.2x" % ord(c) for c in imp.get_magic()],"")
|
12