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 53 // Delete headermaps.
54 for (unsigned i = 0, e = HeaderMaps.size(); i != e; ++i)
55 delete HeaderMaps[i].second;
81 /// FileEntry, uniquing them through the the 'HeaderMaps' datastructure.
83 // We expect the number of headermaps to be small, and almost always empty.
85 if (!HeaderMaps.empty()) {
86 for (unsigned i = 0, e = HeaderMaps.size(); i != e; ++i)
89 if (HeaderMaps[i].first == FE)
90 return HeaderMaps[i].second;
94 HeaderMaps.push_back(std::make_pair(FE, HM))
    [all...]
  /external/clang/include/clang/Lex/
HeaderSearch.h 158 /// HeaderMaps - This is a mapping from FileEntry -> HeaderMap, uniquing
159 /// headermaps. This vector owns the headermap.
160 std::vector<std::pair<const FileEntry*, const HeaderMap*> > HeaderMaps;
326 /// FileEntry, uniquing them through the the 'HeaderMaps' datastructure.

Completed in 266 milliseconds