Home
last modified time | relevance | path

Searched refs:source_files (Results 1 – 19 of 19) sorted by relevance

/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/builder/
H A DBuilder.py24 def _get_script_environment(source_files, compiler_options, argument
27 source_files = [_quotify(f) for f in source_files]
29 _quotify('{}.o'.format(os.path.basename(f))) for f in source_files
35 env_variables['SOURCE_FILES'] = ' '.join(source_files)
39 for i, _ in enumerate(source_files):
41 env_variables['SOURCE_FILE_{}'.format(index)] = source_files[i]
50 def run_external_build_script(context, script_path, source_files, argument
66 assert len(source_files) == len(compiler_options), (source_files,
69 script_environ = _get_script_environment(source_files, compiler_options,
97 source_files = ['a.a', 'b.b']
[all …]
/llvm-project-15.0.7/libcxx/utils/libcxx/
H A Dcompiler.py113 if isinstance(source_files, list):
114 cmd += source_files
115 elif isinstance(source_files, str):
116 cmd += [source_files]
143 def compileCmd(self, source_files, out=None, flags=[]): argument
148 def linkCmd(self, source_files, out=None, flags=[]): argument
156 cmd = self.preprocessCmd(source_files, out, flags)
162 cmd = self.compileCmd(source_files, out, flags)
168 cmd = self.linkCmd(source_files, exec_path, flags)
219 if source_files is None:
[all …]
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/tools/clang_opt_bisect/
H A DTool.py62 limits = [max_limit for _ in options.source_files]
75 options.source_files), (results, options.source_files)
93 source_paths=self.context.options.source_files,
97 self.context.options.source_files, self.context.options.source_root_dir)
98 self.context.options.source_files.extend(list(new_source_files))
149 source_paths=self.context.options.source_files,
176 if len(options.source_files) > 1:
278 source_files=options.source_files,
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/tools/
H A DTestToolBase.py107 options.source_files = []
120 options.source_files.append(file_path)
122 options.source_files.append(file_path)
126 options.test_files = options.test_files + options.source_files
133 options.source_files = [options.test_path]
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/debugger/DebuggerControllers/
H A DDefaultController.py26 self.source_files = context.options.source_files
32 for s in self.context.options.source_files:
101 if in_source_file(self.source_files, step_info):
H A DControllerHelpers.py11 def in_source_file(source_files, step_info): argument
19 for f in source_files)
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dlldbinline.py47 def parse_source_files(self, source_files): argument
48 for source_file in source_files:
138 source_files = [f for f in os.listdir(self.getSourceDir())
143 parser.parse_source_files(source_files)
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/tools/test/
H A DTool.py128 compiler_options = [options.cflags for _ in options.source_files]
133 source_files=options.source_files,
142 source_paths=self.context.options.source_files,
148 self.context.options.source_files.extend(list(new_source_files))
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/debugger/
H A DDebuggerBase.py235 for file in self.options.source_files:
258 self.options = SimpleNamespace(source_root_dir = '', source_files = [])
313 self.options.source_files = [path]
/llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/
H A DDbiStreamBuilder.cpp161 NumFileInfos += M->source_files().size(); in calculateNamesOffset()
207 FileCount = static_cast<uint16_t>(MI->source_files().size()); in generateFileInfoSubstream()
225 for (StringRef Name : MI->source_files()) { in generateFileInfoSubstream()
H A DDbiModuleList.cpp263 DbiModuleList::source_files(uint32_t Modi) const { in source_files() function in DbiModuleList
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/PDB/Native/
H A DDbiModuleList.h79 source_files(uint32_t Modi) const;
H A DDbiModuleDescriptorBuilder.h111 ArrayRef<std::string> source_files() const { in source_files() function
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/dextIR/
H A DDextIR.py22 for f in context.options.source_files):
/llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderMacOS.cpp398 FileSpecList *source_files = nullptr; in SetNotificationBreakpoint() local
404 .CreateBreakpoint(&dyld_filelist, source_files, in SetNotificationBreakpoint()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/
H A DCompileUnitIndex.cpp182 for (llvm::StringRef file : modules.source_files(modi)) { in GetOrCreateCompiland()
/llvm-project-15.0.7/llvm/tools/llvm-pdbutil/
H A DYAMLOutputStyle.cpp226 auto Files = Modules.source_files(I); in dumpDbiStream()
H A DDumpOutputStyle.cpp538 for (const auto &F : Modules.source_files(Modi)) { in dumpModuleFiles()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp1876 auto source_files = m_session_up->getSourceFilesForCompiland(compiland); in BuildSupportFileIdToSupportFileIndexMap() local
1877 if (!source_files) in BuildSupportFileIdToSupportFileIndexMap()
1881 while (auto file = source_files->getNext()) { in BuildSupportFileIdToSupportFileIndexMap()