Home
last modified time | relevance | path

Searched refs:object_file (Results 1 – 13 of 13) sorted by relevance

/external/ImageMagick/coders/
DMake.com172 $ object_file=f$parse(source_file,,,"name")+".obj"
173 $ object_file=f$search( object_file )
174 $ if (object_file .nes. "")
176 $ object_time=f$file_attribute(object_file,"cdt")
179 $ object_file=""
181 $ if (object_file .eqs. "")
/external/libcxx/utils/libcxx/
Dcompiler.py180 def compileLinkTwoSteps(self, source_file, out=None, object_file=None, argument
184 if object_file is None:
189 with_fn = lambda: libcxx.util.nullContext(object_file)
190 with with_fn() as object_file:
192 source_file, object_file, flags=flags, cwd=cwd)
197 object_file, out=out, flags=flags, cwd=cwd)
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Ddisassembler.cc56 const llvm::object::ObjectFile& object_file) const { in DisassembleObjectFile()
66 for (auto& section : object_file.sections()) { in DisassembleObjectFile()
73 for (auto& symbol : object_file.symbols()) { in DisassembleObjectFile()
Ddisassembler.h59 const llvm::object::ObjectFile& object_file) const;
Dcpu_compiler.cc922 std::unique_ptr<llvm::MemoryBuffer> object_file = in CompileAheadOfTime() local
924 ObjectFileData object_file_data(object_file->getBufferStart(), in CompileAheadOfTime()
925 object_file->getBufferEnd()); in CompileAheadOfTime()
/external/swiftshader/third_party/SPIRV-Tools/test/tools/
Dexpect.py195 with open(filename, 'rb') as object_file:
196 object_file.seek(0, os.SEEK_END)
197 num_bytes = object_file.tell()
199 object_file.seek(0)
201 binary = bytes(object_file.read())
/external/deqp-deps/SPIRV-Tools/test/tools/
Dexpect.py195 with open(filename, 'rb') as object_file:
196 object_file.seek(0, os.SEEK_END)
197 num_bytes = object_file.tell()
199 object_file.seek(0)
201 binary = bytes(object_file.read())
/external/compiler-rt/cmake/Modules/
DCompilerRTCompile.cmake32 macro(clang_compile object_file source)
61 OUTPUT ${object_file}
63 -o "${object_file}"
/external/swiftshader/third_party/llvm-7.0/llvm/bindings/python/llvm/
Dobject.py292 def __init__(self, ptr, object_file): argument
294 assert isinstance(object_file, ObjectFile)
299 self._object_file = object_file
/external/llvm/bindings/python/llvm/
Dobject.py292 def __init__(self, ptr, object_file): argument
294 assert isinstance(object_file, ObjectFile)
299 self._object_file = object_file
/external/libxml2/vms/
Dbuild_libxml.com243 $ object_file = f$parse("[.debug].OBJ",name,,,"SYNTAX_ONLY")
252 $ if lib_command.nes."" then lib_command 'object_file'
/external/llvm/tools/sancov/
Dsancov.cc866 std::string object_file() const { return ObjectFile; } in object_file() function in __anon61c5c21b0111::CoverageDataWithObjectFile
1155 OS << "<li><a href=\"#module_" << anchorName(CovData->object_file()) in printReport()
1156 << "\">" << llvm::sys::path::filename(CovData->object_file()) in printReport()
1163 OS << "<h2>" << llvm::sys::path::filename(CovData->object_file()) in printReport()
1166 OS << "<a name=\"module_" << anchorName(CovData->object_file()) in printReport()
/external/libcxx/utils/libcxx/test/
Dformat.py185 source_path, out=exec_path, object_file=object_path,