/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/config/ |
Makefile | 24 MODOBJS= Modules/posixmodule.o Modules/threadmodule.o Modules/signalmodule.o Modules/errnomodule.o Modules/_sre.o Modules/_codecsmodule.o Modules/_weakref.o Modules/zipimport.o Modules/symtablemodule.o Modules/xxsubtype. [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/config/ |
Makefile | 24 MODOBJS= Modules/posixmodule.o Modules/threadmodule.o Modules/signalmodule.o Modules/errnomodule.o Modules/_sre.o Modules/_codecsmodule.o Modules/_weakref.o Modules/zipimport.o Modules/symtablemodule.o Modules/xxsubtype. [all...] |
/external/clang/lib/Serialization/ |
GlobalModuleIndex.cpp | 56 static const char * const IndexFileName = "modules.idx"; 178 if (ID == Modules.size()) 179 Modules.push_back(ModuleInfo()); 181 Modules.resize(ID + 1); 185 Modules[ID].Size = Record[Idx++]; 186 Modules[ID].ModTime = Record[Idx++]; 190 Modules[ID].FileName.assign(Record.begin() + Idx, 196 Modules[ID].Dependencies.insert(Modules[ID].Dependencies.end(), 205 UnresolvedModules[llvm::sys::path::stem(Modules[ID].FileName)] = ID [all...] |
ModuleManager.cpp | 11 // modules for the ASTReader. 40 = Modules.find(File); 41 if (Known == Modules.end()) 74 ModuleFile *&ModuleEntry = Modules[Entry]; 149 // Remove any references to the now-destroyed modules. 155 // Delete the modules and erase them from the various structures. 157 Modules.erase((*victim)->File); 169 // Remove the modules from the chain. 207 // Notify the global module index about all of the modules we've already 316 // behavior, we mark all of the reachable modules as having been visited [all...] |
/external/clang/include/clang/Lex/ |
ModuleMap.h | 1 //===--- ModuleMap.h - Describe the layout of modules -----------*- C++ -*-===// 58 /// \brief The top-level modules that are known. 59 llvm::StringMap<Module *> Modules; 117 /// \brief A directory for which framework modules can be inferred. 121 /// \brief Whether to infer modules from this directory. 124 /// \brief Whether the modules we infer are [system] modules. 127 /// \brief The names of modules that cannot be inferred within this 133 /// framework modules from within those directories. 335 /// \brief Parse the given module map file, and record any modules we [all...] |
HeaderSearch.h | 213 /// \brief The mapping between modules and headers. 317 /// \brief Consider modules when including files from this directory. 518 /// \brief Collect the set of all known, top-level modules. 520 /// \param Modules Will be filled with the set of known, top-level modules. 521 void collectAllModules(SmallVectorImpl<Module *> &Modules); 523 /// \brief Load all known, top-level system modules.
|
/external/llvm/tools/gold/ |
gold-plugin.cpp | 67 std::list<claimed_file> Modules; 278 Modules.resize(Modules.size() + 1); 279 claimed_file &cf = Modules.back(); 378 for (std::list<claimed_file>::iterator I = Modules.begin(), 379 E = Modules.end(); I != E; ++I) { 429 for (std::list<claimed_file>::iterator I = Modules.begin(), 430 E = Modules.end(); I != E; ++I) {
|
/external/clang/include/clang/Serialization/ |
GlobalModuleIndex.h | 11 // containing all of the identifiers known to the various modules within a given 13 // queries such as "do any modules know about this identifier?" 50 /// The global index is an aid for name lookup into modules, offering a central 56 /// 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 /// \brief The set of modules that have not yet been resolved. 154 /// \brief Retrieve the set of modules that have up-to-date indexes.
|
ModuleManager.h | 11 // modules for the ASTReader. 29 /// \brief Manages the set of modules loaded by an AST reader. 35 /// \brief All loaded modules, indexed by name. 36 llvm::DenseMap<const FileEntry *, ModuleFile *> Modules; 51 /// Either the global index or the module manager may have modules that the 53 /// (in which case the module manager could have modules it does not) and 54 /// this particular translation unit might not have loaded all of the modules 107 /// \brief Forward iterator to traverse all loaded modules. This is reverse 110 /// \brief Forward iterator end-point to traverse all loaded modules 113 /// \brief Const forward iterator to traverse all loaded modules. This is [all...] |
/external/llvm/lib/IR/ |
LLVMContextImpl.cpp | 69 std::vector<Module*> Modules(OwnedModules.begin(), OwnedModules.end()); 70 DeleteContainerPointers(Modules);
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
toy.cpp | 669 ModuleVector Modules; 684 /// modules associated with the MCJITHelper to cross link functions 713 // Walk the vector of modules. 715 for (it = Modules.begin(), end = Modules.end(); 730 ModuleVector::iterator begin = Modules.begin(); 731 ModuleVector::iterator end = Modules.end(); 745 ErrorF("redefinition of function across modules"); 769 Modules.push_back(M); 776 ModuleVector::iterator begin = Modules.begin() [all...] |
/external/llvm/tools/llvm-symbolizer/ |
LLVMSymbolize.cpp | 203 DeleteContainerSeconds(Modules); 276 ModuleMapTy::iterator I = Modules.find(ModuleName); 277 if (I != Modules.end()) 296 Modules.insert(make_pair(ModuleName, (ModuleInfo *)0)); 302 Modules.insert(make_pair(ModuleName, Info));
|
LLVMSymbolize.h | 79 ModuleMapTy Modules;
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
toy.cpp | 757 ModuleVector Modules; 773 /// modules associated with the MCJITHelper to cross link functions 802 // Walk the vector of modules. 804 for (it = Modules.begin(), end = Modules.end(); 819 ModuleVector::iterator begin = Modules.begin(); 820 ModuleVector::iterator end = Modules.end(); 834 ErrorF("redefinition of function across modules"); 858 Modules.push_back(M); 865 ModuleVector::iterator begin = Modules.begin() [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
toy.cpp | 50 DumpModulesOnExit("dump-modules", 51 cl::desc("Dump IR from modules to stderr on shutdown"), 894 Modules.push_back(M); 918 ModuleVector Modules; 936 /// modules associated with the MCJITHelper to cross link functions 965 // Walk the vector of modules. 967 for (it = Modules.begin(), end = Modules.end(); 982 ModuleVector::iterator begin = Modules.begin(); 983 ModuleVector::iterator end = Modules.end() [all...] |
/external/llvm/lib/ExecutionEngine/ |
ExecutionEngine.cpp | 65 Modules.push_back(M); 71 for (unsigned i = 0, e = Modules.size(); i != e; ++i) 72 delete Modules[i]; 121 for(SmallVectorImpl<Module *>::iterator I = Modules.begin(), 122 E = Modules.end(); I != E; ++I) { 125 Modules.erase(I); 134 for (unsigned i = 0, e = Modules.size(); i != e; ++i) { 135 if (Function *F = Modules[i]->getFunction(FnName)) 339 for (unsigned i = 0, e = Modules.size(); i != e; ++i) 340 runStaticConstructorsDestructors(Modules[i], isDtors) [all...] |
/external/neven/ |
Android.mk | 128 $(TARGET_OUT)/usr/share/bmd/RFFspeed_501.bmd : $(LOCAL_PATH)/Embedded/common/data/APIEm/Modules/RFFspeed_501.bmd | $(ACP) 132 $(TARGET_OUT)/usr/share/bmd/RFFstd_501.bmd : $(LOCAL_PATH)/Embedded/common/data/APIEm/Modules/RFFstd_501.bmd | $(ACP)
|
/external/llvm/include/llvm/ExecutionEngine/ |
ExecutionEngine.h | 98 /// \brief Abstract interface for implementation execution of LLVM modules, 125 /// The list of Modules that we are JIT'ing from. We use a SmallVector to 127 SmallVector<Module*, 1> Modules; 210 /// addModule - Add a Module to the list of modules that we can JIT from. 214 Modules.push_back(M); 221 /// removeModule - Remove a Module from the list of modules. Returns true if 225 /// FindFunctionNamed - Search all of the active modules to find the one that
|
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
toy.cpp | 666 ModuleVector Modules; 681 /// modules associated with the MCJITHelper to cross link functions 720 ModuleVector::iterator begin = Modules.begin(); 721 ModuleVector::iterator end = Modules.end(); 735 ErrorF("redefinition of function across modules"); 759 Modules.push_back(M); 843 ModuleVector::iterator begin = Modules.begin(); 844 ModuleVector::iterator end = Modules.end(); [all...] |
/external/llvm/lib/ExecutionEngine/JIT/ |
JIT.cpp | 336 if (Modules.empty()) { 337 assert(!jitstate && "jitstate should be NULL if Modules vector is empty!"); 369 if (!jitstate && !Modules.empty()) { 370 jitstate = new JITState(Modules[0]);
|
/external/clang/lib/Lex/ |
ModuleMap.cpp | 1 //===--- ModuleMap.cpp - Describe the layout of modules ---------*- C++ -*-===// 101 for (llvm::StringMap<Module *>::iterator I = Modules.begin(), 102 IEnd = Modules.end(); 356 llvm::StringMap<Module *>::const_iterator Known = Modules.find(Name); 357 if (Known != Modules.end()) 391 Modules[Name] = Result; 428 assert(Mod->IsFramework && "Can only infer linking for framework modules"); 525 Modules[ModuleName] = Result; 630 llvm::errs() << "Modules:"; 631 for (llvm::StringMap<Module *>::iterator M = Modules.begin(), [all...] |
Preprocessor.cpp | 695 getLangOpts().Modules && CurLexerKind != CLK_CachingLexer) { 737 if (!ModuleImportPath.empty() && getLangOpts().Modules) {
|
HeaderSearch.cpp | 300 // to be symlinked, and we base the logical structure of modules on the [all...] |
PPMacroExpansion.cpp | 109 // Modules. 110 if (LangOpts.Modules) { [all...] |
/external/clang/lib/AST/ |
DeclObjC.cpp | [all...] |