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 64 // Delete headermaps.
65 for (unsigned i = 0, e = HeaderMaps.size(); i != e; ++i)
66 delete HeaderMaps[i].second;
92 /// FileEntry, uniquing them through the 'HeaderMaps' datastructure.
94 // We expect the number of headermaps to be small, and almost always empty.
96 if (!HeaderMaps.empty()) {
97 for (unsigned i = 0, e = HeaderMaps.size(); i != e; ++i)
100 if (HeaderMaps[i].first == FE)
101 return HeaderMaps[i].second;
105 HeaderMaps.push_back(std::make_pair(FE, HM))
    [all...]
  /external/clang/include/clang/Lex/
HeaderSearch.h 191 /// HeaderMaps - This is a mapping from FileEntry -> HeaderMap, uniquing
192 /// headermaps. This vector owns the headermap.
193 std::vector<std::pair<const FileEntry*, const HeaderMap*> > HeaderMaps;
433 /// FileEntry, uniquing them through the 'HeaderMaps' datastructure.

Completed in 25 milliseconds