| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| TarWriter.h | 29 StringSet<> Files;
|
| /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
| FuzzerDataFlowTrace.cpp | 27 Vector<SizedFile> Files; 28 GetSizedFilesFromDir(DirPath, &Files); 40 if (!NumFunctions || FocusFuncIdx == SIZE_MAX || Files.size() <= 1) 45 for (auto &SF : Files) { 84 assert(NumTraceFiles == Files.size() - 1); 85 Printf("INFO: DataFlowTrace: %zd trace files, %zd functions, "
|
| FuzzerMerge.h | 17 // The outter process collects the set of files and writes their names 33 // reads the control files and does the merge based entirely on the contents 59 Vector<MergeFileInfo> Files;
|
| FuzzerIO.cpp | 74 Vector<std::string> Files; 75 ListFilesInDirRecursive(Path, Epoch, &Files, /*TopDir*/true); 77 for (size_t i = 0; i < Files.size(); i++) { 78 auto &X = Files[i]; 82 Printf("Loaded %zd/%zd files from %s\n", NumLoaded, Files.size(), Path); 91 Vector<std::string> Files; 92 ListFilesInDirRecursive(Dir, 0, &Files, /*TopDir*/true); 93 for (auto &File : Files)
|
| /src/external/apache2/llvm/dist/clang/include/clang/Tooling/DependencyScanning/ |
| DependencyScanningWorker.h | 48 /// The worker computes the dependencies for the input files by preprocessing 49 /// sources either using a fast mode where the source files are minimized, or 78 llvm::IntrusiveRefCntPtr<FileManager> Files;
|
| /src/external/apache2/llvm/dist/clang/lib/Tooling/ |
| AllTUsExecution.cpp | 60 llvm::cl::desc("Only process files that match this filter. " 101 std::vector<std::string> Files; 105 Files.push_back(File); 108 const std::string TotalNumStr = std::to_string(Files.size()); 119 for (std::string File : Files) { 153 llvm::cl::desc("The number of threads used to process all files in "
|
| Refactoring.cpp | 73 FileManager &Files = SM.getFileManager(); 82 if (auto File = Files.getFile(FilePath))
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/ |
| GsymCreator.h | 42 /// of information like compiler debug info metadata, DWARF or Breakpad files. 60 /// GSYM files are designed to be memory mapped into a process as shared, read 108 /// FileEntry Files[]; 111 /// The file table starts with a 32 bit count of the number of files that are 119 /// The string table follows the file table in stand alone GSYM files and 141 std::vector<llvm::gsym::FileEntry> Files; 167 /// All strings used by GSYM files must be uniqued by adding them to this 179 /// Inserts a file by adding a FileEntry into the "Files" member variable if 183 /// common between multiple files. 280 /// Setting the base address to use for the GSYM file. Object files typicall [all...] |
| GsymReader.h | 57 ArrayRef<FileEntry> Files; 67 std::vector<FileEntry> Files; 138 /// files. This function can be used for iteration, but is more commonly used 145 if (Index < Files.size()) 146 return Files[Index];
|
| /src/external/apache2/llvm/dist/clang/lib/Tooling/DumpTool/ |
| ClangSrcLocDump.cpp | 116 auto Files = llvm::makeIntrusiveRefCnt<FileManager>(FileSystemOptions(), OFS);
150 Compiler.createSourceManager(*Files);
151 Compiler.setFileManager(Files.get());
156 Files->clearStatCache();
|
| /src/external/apache2/llvm/dist/clang/tools/libclang/ |
| CXLoadedDiagnostic.cpp | 47 llvm::DenseMap<unsigned, const FileEntry *> Files; 278 LoadedLoc.file = const_cast<FileEntry *>(TopDiags->Files[FileID]); 345 TopDiags->Files[ID] =
|
| /src/external/apache2/llvm/dist/clang/include/clang/Tooling/ |
| Tooling.h | 12 // A ClangTool is initialized with a CompilationDatabase and a set of files 14 // all TUs in which the given files are compiled. 80 FileManager *Files, 97 FileManager *Files, 241 /// \param Files The FileManager used for the execution. Class does not take 246 std::unique_ptr<FrontendAction> FAction, FileManager *Files, 254 /// \param Files The FileManager used for the execution. 258 FileManager *Files, 282 FileManager *Files; 287 /// Utility to run a FrontendAction over a set of files [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Frontend/ |
| DependencyFile.cpp | 9 // This code generates dependency files. 77 // Files that actually exist are handled by FileChanged. 236 /// most likely tools that use dependency files: GNU Make, BSD Make, and 333 // dependency file as GCC (4.2), assuming the included files are the 358 ArrayRef<std::string> Files = getDependencies(); 359 for (StringRef File : Files) { 375 if (PhonyTarget && !Files.empty()) { 377 for (auto I = Files.begin(), E = Files.end(); I != E; ++I) {
|
| /src/external/apache2/llvm/dist/clang/tools/clang-diff/ |
| ClangDiff.cpp | 1 //===- ClangDiff.cpp - compare source files by AST nodes ------*- C++ -*- -===// 105 std::array<std::string, 1> Files = {{std::string(Filename)}}; 106 ClangTool Tool(Compilations ? *Compilations : *CommonCompilations, Files); 109 if (ASTs.size() != Files.size())
|
| /src/external/apache2/llvm/dist/clang/tools/clang-rename/ |
| ClangRename.cpp | 165 auto Files = OP.getSourcePathList(); 166 tooling::RefactoringTool Tool(OP.getCompilations(), Files); 216 // Write every file to stdout. Right now we just barf the files without any 217 // indication of which files start where, other than that we print the files 230 for (const auto &File : Files) {
|
| /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Syntax/ |
| Tokens.h | 57 /// EXPECTS: BeginLoc.isValid() && BeginLoc.isFileID(), Begin <= End and files 168 /// tokens for each of the files can be obtained via spelledTokens(FileID). 340 /// text in the corresponding files and include tokens of all preprocessor 377 llvm::DenseMap<FileID, MarkedFile> Files;
|
| /src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| MultiOnDiskHashTable.h | 10 // distributed storage across a set of files. 12 // Multiple hash tables from different files are implicitly merged to improve 14 // files. 74 std::vector<file_type> Files; 88 /// Files corresponding to overridden tables that we've not yet 129 llvm::DenseSet<file_type> Files; 130 Files.insert(PendingOverrides.begin(), PendingOverrides.end()); 131 // Explicitly capture Files to work around an MSVC 2015 rejects-valid bug. 132 auto ShouldRemove = [&Files](void *T) -> bool { 134 bool Remove = Files.count(ODT->File) [all...] |
| /src/external/apache2/llvm/dist/clang/tools/clang-refactor/ |
| TestSupport.cpp | 87 std::set<std::string> Files; 89 Files.insert(Change.getFilePath()); 92 for (const auto &File : Files) {
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/MC/ |
| MCCodeView.h | 244 SmallVector<FileInfo, 4> Files;
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/ |
| CoverageExporterJson.cpp | 19 // -- Files: array => List of objects describing coverage for files 287 auto Files = renderFiles(Coverage, SourceFiles, FileReports, Options); 288 // Sort files in order of their names. 289 llvm::sort(Files, [](const json::Value &A, const json::Value &B) { 299 {{"files", std::move(Files)}, {"totals", renderSummary(Totals)}});
|
| /src/external/gpl3/gdb/dist/sim/m32c/ |
| trace.c | 124 typedef struct Files 126 struct Files *next; 131 } Files; 132 Files *files = 0; variable 137 Files *f; 138 for (f = files; f; f = f->next) 160 f = (Files *) malloc (sizeof (Files)); 161 f->next = files; [all...] |
| /src/external/gpl3/gdb/dist/sim/rl78/ |
| trace.c | 133 typedef struct Files 135 struct Files *next; 140 } Files; 141 Files *files = 0; variable 146 Files *f; 147 for (f = files; f; f = f->next) 169 f = (Files *) xmalloc (sizeof (Files)); 170 f->next = files; [all...] |
| /src/external/gpl3/gdb/dist/sim/rx/ |
| trace.c | 137 typedef struct Files 139 struct Files *next; 144 } Files; 145 Files *files = 0; variable 150 Files *f; 151 for (f = files; f; f = f->next) 173 f = (Files *) malloc (sizeof (Files)); 174 f->next = files; [all...] |
| /src/external/gpl3/gdb.old/dist/sim/m32c/ |
| trace.c | 124 typedef struct Files 126 struct Files *next; 131 } Files; 132 Files *files = 0; variable 137 Files *f; 138 for (f = files; f; f = f->next) 160 f = (Files *) malloc (sizeof (Files)); 161 f->next = files; [all...] |
| /src/external/gpl3/gdb.old/dist/sim/rl78/ |
| trace.c | 133 typedef struct Files 135 struct Files *next; 140 } Files; 141 Files *files = 0; variable 146 Files *f; 147 for (f = files; f; f = f->next) 169 f = (Files *) xmalloc (sizeof (Files)); 170 f->next = files; [all...] |