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

  /external/clang/lib/Lex/
HeaderSearch.cpp 68 // Delete headermaps.
69 for (unsigned i = 0, e = HeaderMaps.size(); i != e; ++i)
70 delete HeaderMaps[i].second;
96 /// FileEntry, uniquing them through the 'HeaderMaps' datastructure.
98 // We expect the number of headermaps to be small, and almost always empty.
100 if (!HeaderMaps.empty()) {
101 for (unsigned i = 0, e = HeaderMaps.size(); i != e; ++i)
104 if (HeaderMaps[i].first == FE)
105 return HeaderMaps[i].second;
109 HeaderMaps.push_back(std::make_pair(FE, HM))
    [all...]
  /external/clang/include/clang/Lex/
HeaderSearch.h 225 /// HeaderMaps - This is a mapping from FileEntry -> HeaderMap, uniquing
226 /// headermaps. This vector owns the headermap.
227 std::vector<std::pair<const FileEntry*, const HeaderMap*> > HeaderMaps;
476 /// FileEntry, uniquing them through the 'HeaderMaps' datastructure.

Completed in 426 milliseconds