| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| json.h | 18 void json_generate(OutBuffer *, Modules *);
|
| hdrgen.h | 19 void genCppHdrFiles(Modules &ms);
|
| compiler.d | 24 // array of module patterns used to include/exclude imported modules 26 Modules compiledImports; 46 * modules whose source are empty, but code gets injected
|
| module.h | 56 static DsymbolTable *modules; // symbol table of all modules member in class:Module 57 static Modules amodules; // array of all modules 102 Modules aimports; // all imported modules
|
| arraytypes.h | 51 typedef Array<class Module *> Modules;
|
| arraytypes.d | 47 alias Modules = Array!(Module);
|
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/ |
| DbiModuleList.cpp | 24 const DbiModuleList &Modules, uint32_t Modi, uint16_t Filei) 25 : Modules(&Modules), Modi(Modi), Filei(Filei) { 49 assert(Modules == R.Modules); 88 Thisi = R.Modules->getSourceFileCount(RealModi); 100 assert(Filei <= Modules->getSourceFileCount(Modi)); 123 uint32_t Off = Modules->ModuleInitialFileIndex[Modi] + Filei; 124 auto ExpectedValue = Modules->getFileName(Off); 127 Filei = Modules->getSourceFileCount(Modi) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| Signals.cpp | 100 const char **Modules, intptr_t *Offsets, 148 std::vector<const char *> Modules(Depth, nullptr); 150 if (!findModulesAndOffsets(StackTrace, Depth, Modules.data(), Offsets.data(), 163 if (Modules[i]) 164 Input << Modules[i] << " " << (void*)Offsets[i] << "\n"; 199 if (!Modules[i]) { 221 OS << "(" << Modules[i] << '+' << format_hex(Offsets[i], 0) << ")";
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/ |
| DbiModuleList.h | 39 DbiModuleSourceFilesIterator(const DbiModuleList &Modules, uint32_t Modi, 64 const DbiModuleList *Modules{nullptr};
|
| DbiStream.h | 79 const DbiModuleList &modules() const; 114 DbiModuleList Modules;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Object/ |
| IRSymtab.h | 18 // multiple modules, so symbol tables may likewise contain symbols for multiple 19 // modules. 143 Range<Module> Modules; 235 ArrayRef<storage::Module> Modules; 256 Modules = range(header().Modules); 270 size_t getNumModules() const { return Modules.size(); } 354 const storage::Module &M = Modules[I];
|
| /src/external/apache2/llvm/dist/llvm/lib/LTO/ |
| ThinLTOCodeGenerator.cpp | 148 generateModuleMap(std::vector<std::unique_ptr<lto::InputFile>> &Modules) { 150 for (auto &M : Modules) { 546 if (Modules.empty()) 550 report_fatal_error("ThinLTO modules with incompatible triples not " 555 Modules.emplace_back(std::move(*InputOrError)); 599 for (auto &Mod : Modules) { 714 auto ModuleMap = generateModuleMap(Modules); 932 ProducedBinaries.resize(Modules.size()); 939 ProducedBinaryFiles.resize(Modules.size()); 946 for (auto &Mod : Modules) { [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| GlobalModuleIndex.cpp | 60 static const char * const IndexFileName = "modules.idx"; 199 if (ID == Modules.size()) 200 Modules.push_back(ModuleInfo()); 202 Modules.resize(ID + 1); 206 Modules[ID].Size = Record[Idx++]; 207 Modules[ID].ModTime = Record[Idx++]; 211 Modules[ID].FileName.assign(Record.begin() + Idx, 217 Modules[ID].Dependencies.insert(Modules[ID].Dependencies.end(), 228 StringRef ModuleName = llvm::sys::path::stem(Modules[ID].FileName) [all...] |
| ModuleManager.cpp | 10 // modules for the ASTReader. 62 auto Known = Modules.find(File); 63 if (Known == Modules.end()) 136 // loaded modules is less than ideal. Uniqueness for FileEntry nodes is 141 // happens, subsequent accesses to the Modules map will disagree on the 148 // to the Modules map. 157 if (ModuleFile *ModuleEntry = Modules.lookup(Entry)) { 239 Module = Modules[Entry] = NewModule.get(); 268 // Remove any references to the now-destroyed modules. 276 // Remove the modules from the PCH chain [all...] |
| /src/external/apache2/llvm/dist/clang/tools/clang-scan-deps/ |
| ClangScanDeps.cpp | 136 " for explicitly building modules. This format " 141 // This mode is mostly useful for development of explicitly built modules. 159 "generate-modules-path-args", 162 "modules-related paths in the generated command lines: " 280 auto I = Modules.find({MD.ID, 0}); 281 if (I != Modules.end()) { 285 Modules.insert(I, {{MD.ID, InputIndex}, std::move(MD)}); 301 // Sort the modules by name to get a deterministic order. 303 for (auto &&M : Modules) 319 auto &MD = Modules[ModID] [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Serialization/ |
| GlobalModuleIndex.h | 10 // containing all of the identifiers known to the various modules within a given 12 // queries such as "do any modules know about this identifier?" 48 /// The global index is an aid for name lookup into modules, offering a central 54 /// imported, and can be queried to determine which modules the current 97 llvm::SmallVector<ModuleInfo, 16> Modules; 100 /// corresponding index into the \c Modules vector. 103 /// The set of modules that have not yet been resolved. 141 /// Retrieve the set of modules that have up-to-date indexes. 182 /// creating modules.
|
| /src/external/apache2/llvm/dist/clang/lib/Tooling/DependencyScanning/ |
| ModuleDepCollector.cpp | 79 llvm::ArrayRef<ModuleID> Modules, 86 [&](llvm::ArrayRef<ModuleID> Modules) { 87 for (const ModuleID &MID : Modules) { 99 AddArgs(Modules); 195 // module build handles inferred modules. It adds an overlay VFS with 197 // handle it like normal. With explicitly built modules we don't need
|
| /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
| toy.cpp | 670 ModuleVector Modules; 685 /// modules associated with the MCJITHelper to cross link functions 714 // Walk the vector of modules. 716 for (it = Modules.begin(), end = Modules.end(); 731 ModuleVector::iterator begin = Modules.begin(); 732 ModuleVector::iterator end = Modules.end(); 746 ErrorF("redefinition of function across modules"); 770 Modules.push_back(M); 777 ModuleVector::iterator begin = Modules.begin() [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/ |
| StreamUtil.cpp | 80 const DbiModuleList &Modules = Dbi->modules(); 81 for (uint32_t I = 0; I < Modules.getModuleCount(); ++I) { 84 IMD.Descriptor = Modules.getModuleDescriptor(I);
|
| BytesOutputStyle.cpp | 324 const DbiModuleList &Modules, uint32_t I, 327 if (I >= Modules.getModuleCount()) { 333 auto Modi = Modules.getModuleDescriptor(I); 362 ExitOnError Err("Unexpected error processing modules"); 366 const DbiModuleList &Modules = Stream.modules(); 369 iterateOneModule(File, P, Modules, opts::bytes::ModuleIndex, 1, IndentLevel, 372 uint32_t Count = Modules.getModuleCount(); 375 iterateOneModule(File, P, Modules, I, Digits, IndentLevel, Callback);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
| FuzzerTracePC.cpp | 134 assert(NumModules < sizeof(Modules) / sizeof(Modules[0])); 145 Modules[NumModules].Start = Start; 146 Modules[NumModules].Stop = Stop; 152 Printf("INFO: Loaded %zd modules (%zd guards): ", NumModules, NumGuards); 154 Printf("%zd [%p, %p), ", Modules[i].Stop - Modules[i].Start, 155 Modules[i].Start, Modules[i].Stop); 159 Printf("INFO: Loaded %zd modules (%zd inline 8-bit counters): " [all...] |
| /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/cached/ |
| toy.cpp | 758 ModuleVector Modules; 774 /// modules associated with the MCJITHelper to cross link functions 803 // Walk the vector of modules. 805 for (it = Modules.begin(), end = Modules.end(); 820 ModuleVector::iterator begin = Modules.begin(); 821 ModuleVector::iterator end = Modules.end(); 835 ErrorF("redefinition of function across modules"); 859 Modules.push_back(M); 866 ModuleVector::iterator begin = Modules.begin() [all...] |
| /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/complete/ |
| toy.cpp | 50 DumpModulesOnExit("dump-modules", 51 cl::desc("Dump IR from modules to stderr on shutdown"), 800 Modules.push_back(M); 824 ModuleVector Modules; 842 /// modules associated with the MCJITHelper to cross link functions 871 // Walk the vector of modules. 873 for (it = Modules.begin(), end = Modules.end(); 888 ModuleVector::iterator begin = Modules.begin(); 889 ModuleVector::iterator end = Modules.end() [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Lex/ |
| ModuleMap.h | 1 //===- ModuleMap.h - Describe the layout of modules -------------*- C++ -*-===// 101 /// The top-level modules that are known. 102 llvm::StringMap<Module *> Modules; 105 /// nullptr is stored for modules that are known to fail to load. 108 /// Shadow modules created while building this module map. 111 /// The number of modules we have created in total. 205 /// Map from file sizes to modules with lazy header directives of that size. 208 /// Map from mtimes to modules with lazy header directives with those mtimes. 220 /// A generation counter that is used to test whether modules of the 223 /// Modules from earlier scopes may shadow modules from later ones 701 llvm::iterator_range<module_iterator> modules() const { function in class:clang::ModuleMap [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/Windows/ |
| Signals.inc | 256 const char **Modules; 269 if (Data->Modules[I]) 273 Data->Modules[I] = Data->StrPool->save(ModuleName).data(); 281 const char **Modules, intptr_t *Offsets, 289 Data.Modules = Modules;
|