Searched refs:Modules (Results 1 - 25 of 26) sorted by relevance

12

/external/clang/include/clang/Lex/
H A DModuleMap.h54 llvm::StringMap<Module *> Modules; member in class:clang::ModuleMap
232 module_iterator module_begin() const { return Modules.begin(); }
233 module_iterator module_end() const { return Modules.end(); }
H A DHeaderSearch.h455 /// \param Modules Will be filled with the set of known, top-level modules.
456 void collectAllModules(llvm::SmallVectorImpl<Module *> &Modules);
/external/llvm/lib/Linker/
H A DLinkArchives.cpp143 SmallVector<Module*, 16> Modules; local
144 if (!arch->findModulesDefiningSymbols(UndefinedSymbols, Modules, &ErrMsg))
150 if (Modules.empty())
159 // Loop over all the Modules that we got back from the archive
160 for (SmallVectorImpl<Module*>::iterator I=Modules.begin(), E=Modules.end();
/external/llvm/lib/VMCore/
H A DLLVMContextImpl.cpp68 std::vector<Module*> Modules(OwnedModules.begin(), OwnedModules.end());
69 DeleteContainerPointers(Modules);
/external/llvm/tools/gold/
H A Dgold-plugin.cpp69 std::list<claimed_file> Modules; member in namespace:__anon7883
279 Modules.resize(Modules.size() + 1);
280 claimed_file &cf = Modules.back();
382 for (std::list<claimed_file>::iterator I = Modules.begin(),
383 E = Modules.end(); I != E; ++I) {
440 for (std::list<claimed_file>::iterator I = Modules.begin(),
441 E = Modules.end(); I != E; ++I) {
/external/clang/include/clang/Serialization/
H A DModuleManager.h33 llvm::DenseMap<const FileEntry *, ModuleFile *> Modules; member in class:clang::serialization::ModuleManager
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp64 Modules.push_back(M);
70 for (unsigned i = 0, e = Modules.size(); i != e; ++i)
71 delete Modules[i];
120 for(SmallVector<Module *, 1>::iterator I = Modules.begin(),
121 E = Modules.end(); I != E; ++I) {
124 Modules.erase(I);
133 for (unsigned i = 0, e = Modules.size(); i != e; ++i) {
134 if (Function *F = Modules[i]->getFunction(FnName))
338 for (unsigned i = 0, e = Modules.size(); i != e; ++i)
339 runStaticConstructorsDestructors(Modules[
[all...]
/external/clang/lib/Serialization/
H A DModuleManager.cpp28 return Modules[Entry];
47 ModuleFile *&ModuleEntry = Modules[Entry];
252 llvm::ViewGraph(*this, "Modules");
H A DASTReader.cpp1578 if (getContext().getLangOpts().Modules)
1593 if (getContext().getLangOpts().Modules)
2180 // FIXME: Modules will have some trouble with this. This is clearly not
2215 // FIXME: Modules will have some trouble with this.
2345 // FIXME: Modules will have trouble with this.
2536 // Modules that aren't available cannot be made visible.
5174 llvm::errs() << "\n*** PCH/Modules Loaded:";
H A DASTReaderDecl.cpp1548 if (!Reader.getContext().getLangOpts().Modules)
/external/llvm/lib/Archive/
H A DArchiveReader.cpp345 Archive::getAllModules(std::vector<Module*>& Modules, argument
361 Modules.push_back(M);
506 // Modules that define those symbols.
613 std::vector<Module *> Modules;
/external/neven/
H A DAndroid.mk127 $(TARGET_OUT)/usr/share/bmd/RFFspeed_501.bmd : $(LOCAL_PATH)/Embedded/common/data/APIEm/Modules/RFFspeed_501.bmd | $(ACP)
131 $(TARGET_OUT)/usr/share/bmd/RFFstd_501.bmd : $(LOCAL_PATH)/Embedded/common/data/APIEm/Modules/RFFstd_501.bmd | $(ACP)
/external/clang/lib/Lex/
H A DModuleMap.cpp84 for (llvm::StringMap<Module *>::iterator I = Modules.begin(),
85 IEnd = Modules.end();
252 llvm::StringMap<Module *>::iterator Known = Modules.find(Name);
253 if (Known != Modules.end())
286 Modules[Name] = Result;
319 Modules[ModuleName] = Result;
384 llvm::errs() << "Modules:";
385 for (llvm::StringMap<Module *>::iterator M = Modules.begin(),
386 MEnd = Modules.end();
H A DHeaderSearch.cpp981 void HeaderSearch::collectAllModules(llvm::SmallVectorImpl<Module *> &Modules) { argument
982 Modules.clear();
1032 Modules.push_back(M->getValue());
H A DPPDirectives.cpp693 if (getLangOpts().Modules)
698 if (getLangOpts().Modules)
1337 getLangOpts().Modules? &SuggestedModule : 0);
1351 getLangOpts().Modules? &SuggestedModule : 0,
H A DPPMacroExpansion.cpp627 .Case("objc_modules", LangOpts.ObjC2 && LangOpts.Modules)
719 .Case("modules", LangOpts.Modules)
H A DPreprocessor.cpp577 getLangOpts().Modules && CurLexerKind != CLK_CachingLexer) {
/external/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h122 /// The list of Modules that we are JIT'ing from. We use a SmallVector to
124 SmallVector<Module*, 1> Modules; member in class:llvm::ExecutionEngine
211 Modules.push_back(M);
/external/llvm/lib/ExecutionEngine/JIT/
H A DJIT.cpp336 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/llvm/include/llvm/Bitcode/
H A DArchive.h362 /// and return a vector of the instantiated modules in \p Modules. If an
368 bool getAllModules(std::vector<Module*>& Modules, std::string* ErrMessage);
/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp3063 llvm::SmallVector<Module *, 8> Modules; local
3064 PP.getHeaderSearchInfo().collectAllModules(Modules);
3065 for (unsigned I = 0, N = Modules.size(); I != N; ++I) {
3067 Builder.getAllocator().CopyString(Modules[I]->Name));
3071 Modules[I]->isAvailable()
/external/clang/lib/Frontend/
H A DCompilerInvocation.cpp709 if (Opts.Modules)
1868 Opts.Modules = Args.hasArg(OPT_fmodules);
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml251 (*===-- Modules -----------------------------------------------------------===*)
H A Dllvm.mli325 (** {6 Modules} *)
328 the context [context]. Modules are not garbage collected; it is mandatory
/external/clang/lib/Parse/
H A DParseObjc.cpp68 if (getLangOpts().Modules)

Completed in 4546 milliseconds

12