HomeSort by: relevance | last modified time | path
    Searched refs:SubModules (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
Module.h 157 /// The submodules of this module, indexed by name.
158 std::vector<Module *> SubModules;
161 /// \c SubModules vector at which that submodule resides.
281 /// Whether we should infer submodules for this module based on
284 /// Submodules can only be inferred for modules with an umbrella header.
287 /// Whether, when inferring submodules, the inferred submodules
291 /// Whether, when inferring submodules, the inferr submodules should
348 /// that all of its submodules should be exported (rather than the name
628 llvm::iterator_range<submodule_iterator> submodules() { function in class:clang::Module
631 llvm::iterator_range<submodule_const_iterator> submodules() const { function in class:clang::Module
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Basic/
Module.cpp 56 Parent->SubModuleIndex[Name] = Parent->SubModules.size();
57 Parent->SubModules.push_back(this);
335 return SubModules[Pos->getValue()];
341 return SubModules[Pos->getValue()];
354 // All non-explicit submodules are exported.
355 for (std::vector<Module *>::const_iterator I = SubModules.begin(),
356 E = SubModules.end();
536 // the module. Regular inferred submodules are OK, as we need to look at all

Completed in 18 milliseconds