HomeSort by relevance Sort by last modified time
    Searched refs:SubModules (Results 1 - 2 of 2) sorted by null

  /external/clang/include/clang/Basic/
Module.h 74 /// \brief The submodules of this module, indexed by name.
75 std::vector<Module *> SubModules;
78 /// \c SubModules vector at which that submodule resides.
156 /// \brief Whether we should infer submodules for this module based on
159 /// Submodules can only be inferred for modules with an umbrella header.
162 /// \brief Whether, when inferring submodules, the inferred submodules
166 /// \brief Whether, when inferring submodules, the inferr submodules should
221 /// that all of its submodules should be exported (rather than the name
    [all...]
  /external/clang/lib/Basic/
Module.cpp 45 Parent->SubModuleIndex[Name] = Parent->SubModules.size();
46 Parent->SubModules.push_back(this);
197 return SubModules[Pos->getValue()];
209 // All non-explicit submodules are exported.
210 for (std::vector<Module *>::const_iterator I = SubModules.begin(),
211 E = SubModules.end();

Completed in 57 milliseconds