Home
last modified time | relevance | path

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

/external/libcxx/test/libcxx/
Dcompiler.py99 def compileLinkTwoSteps(self, source_file, out=None, object_file=None, argument
103 if object_file is None:
108 with_fn = lambda: libcxx.util.nullContext(object_file)
109 with with_fn() as object_file:
111 source_file, object_file, flags=flags, env=env, cwd=cwd)
116 object_file, out=out, flags=flags, env=env, cwd=cwd)
/external/lldb/source/Plugins/DynamicLoader/Static/
DDynamicLoaderStatic.cpp43 ObjectFile *object_file = exe_module->GetObjectFile(); in CreateInstance() local
44 if (object_file) in CreateInstance()
46 create = (object_file->GetStrata() == ObjectFile::eStrataRawImage); in CreateInstance()
/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/compiler-rt/cmake/Modules/
DCompilerRTCompile.cmake32 macro(clang_compile object_file source)
61 OUTPUT ${object_file}
63 -o "${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/libcxx/test/libcxx/test/
Dformat.py110 source_path, out=exec_path, object_file=object_path,
/external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
DDynamicLoaderDarwinKernel.cpp145 ObjectFile *object_file = exe_module->GetObjectFile(); in CreateInstance() local
146 if (object_file) in CreateInstance()
148 if (object_file->GetStrata() != ObjectFile::eStrataKernel) in CreateInstance()
/external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DDynamicLoaderMacOSXDYLD.cpp105 ObjectFile *object_file = exe_module->GetObjectFile(); in CreateInstance() local
106 if (object_file) in CreateInstance()
108 create = (object_file->GetStrata() == ObjectFile::eStrataUser); in CreateInstance()
/external/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp637 ObjectFile * object_file = exe_module->GetObjectFile(); in DoLaunch() local
638 if (object_file) in DoLaunch()
/external/lldb/source/Commands/
DCommandObjectTarget.cpp4369 ObjectFile *object_file = symbol_file->GetObjectFile(); in AddModuleSymbols() local
4371 if (object_file && object_file->GetFileSpec() == symbol_fspec) in AddModuleSymbols()