| /llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/builder/ |
| H A D | Builder.py | 24 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 D | compiler.py | 113 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 D | Tool.py | 62 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 D | TestToolBase.py | 107 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 D | DefaultController.py | 26 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 D | ControllerHelpers.py | 11 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 D | lldbinline.py | 47 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 D | Tool.py | 128 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 D | DebuggerBase.py | 235 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 D | DbiStreamBuilder.cpp | 161 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 D | DbiModuleList.cpp | 263 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 D | DbiModuleList.h | 79 source_files(uint32_t Modi) const;
|
| H A D | DbiModuleDescriptorBuilder.h | 111 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 D | DextIR.py | 22 for f in context.options.source_files):
|
| /llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ |
| H A D | DynamicLoaderMacOS.cpp | 398 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 D | CompileUnitIndex.cpp | 182 for (llvm::StringRef file : modules.source_files(modi)) { in GetOrCreateCompiland()
|
| /llvm-project-15.0.7/llvm/tools/llvm-pdbutil/ |
| H A D | YAMLOutputStyle.cpp | 226 auto Files = Modules.source_files(I); in dumpDbiStream()
|
| H A D | DumpOutputStyle.cpp | 538 for (const auto &F : Modules.source_files(Modi)) { in dumpModuleFiles()
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | SymbolFilePDB.cpp | 1876 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()
|