HomeSort by relevance Sort by last modified time
    Searched defs:Modules (Results 1 - 7 of 7) sorted by null

  /external/clang/include/clang/Lex/
ModuleMap.h 1 //===--- ModuleMap.h - Describe the layout of modules -----------*- C++ -*-===//
53 /// \brief The top-level modules that are known.
54 llvm::StringMap<Module *> Modules;
220 /// \brief Parse the given module map file, and record any modules we
232 module_iterator module_begin() const { return Modules.begin(); }
233 module_iterator module_end() const { return Modules.end(); }
  /external/llvm/lib/Linker/
LinkArchives.cpp 140 // Find the modules we need to link into the target module. Note that arch
141 // keeps ownership of these modules and may return the same Module* from a
143 SmallVector<Module*, 16> Modules;
144 if (!arch->findModulesDefiningSymbols(UndefinedSymbols, Modules, &ErrMsg))
148 // If we didn't find any more modules to link this time, we are done
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();
180 // symbols we still need after the new modules have been linked in
    [all...]
  /external/clang/include/clang/Serialization/
ModuleManager.h 11 // modules for the ASTReader.
26 /// \brief Manages the set of modules loaded by an AST reader.
32 /// \brief All loaded modules, indexed by name.
33 llvm::DenseMap<const FileEntry *, ModuleFile *> Modules;
51 /// \brief Forward iterator to traverse all loaded modules. This is reverse
54 /// \brief Forward iterator end-point to traverse all loaded modules
57 /// \brief Const forward iterator to traverse all loaded modules. This is
60 /// \brief Const forward iterator end-point to traverse all loaded modules
63 /// \brief Reverse iterator to traverse all loaded modules. This is in
66 /// \brief Reverse iterator end-point to traverse all loaded modules
    [all...]
  /external/compiler-rt/utils/llvm-symbolizer/
llvm-symbolizer.cpp 162 static ModuleMapTy Modules;
185 ModuleMapIter I = Modules.find(ModuleName);
186 if (I != Modules.end())
194 Modules.insert(make_pair(ModuleName, (ModuleInfo*)0));
240 Modules.insert(make_pair(ModuleName, Info));
  /external/llvm/tools/gold/
gold-plugin.cpp 69 std::list<claimed_file> Modules;
281 Modules.resize(Modules.size() + 1);
282 claimed_file &cf = Modules.back();
384 for (std::list<claimed_file>::iterator I = Modules.begin(),
385 E = Modules.end(); I != E; ++I) {
442 for (std::list<claimed_file>::iterator I = Modules.begin(),
443 E = Modules.end(); I != E; ++I) {
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 95 /// \brief Abstract interface for implementation execution of LLVM modules,
122 /// The list of Modules that we are JIT'ing from. We use a SmallVector to
124 SmallVector<Module*, 1> Modules;
207 /// addModule - Add a Module to the list of modules that we can JIT from.
211 Modules.push_back(M);
218 /// removeModule - Remove a Module from the list of modules. Returns true if
222 /// FindFunctionNamed - Search all of the active modules to find the one that
  /external/clang/lib/Sema/
SemaCodeComplete.cpp     [all...]

Completed in 461 milliseconds