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 74 // Delete headermaps.
75 for (unsigned i = 0, e = HeaderMaps.size(); i != e; ++i)
76 delete HeaderMaps[i].second;
102 /// FileEntry, uniquing them through the 'HeaderMaps' datastructure.
104 // We expect the number of headermaps to be small, and almost always empty.
106 if (!HeaderMaps.empty()) {
107 for (unsigned i = 0, e = HeaderMaps.size(); i != e; ++i)
110 if (HeaderMaps[i].first == FE)
111 return HeaderMaps[i].second;
115 HeaderMaps.push_back(std::make_pair(FE, HM))
    [all...]
  /external/clang/include/clang/Lex/
HeaderSearch.h 213 /// HeaderMaps - This is a mapping from FileEntry -> HeaderMap, uniquing
214 /// headermaps. This vector owns the headermap.
215 std::vector<std::pair<const FileEntry*, const HeaderMap*> > HeaderMaps;
466 /// FileEntry, uniquing them through the 'HeaderMaps' datastructure.

Completed in 38 milliseconds