OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
209
///
HeaderMaps
- This is a mapping from FileEntry -> HeaderMap, uniquing
210
///
headermaps
. This vector owns the headermap.
211
std::vector<std::pair<const FileEntry*, const HeaderMap*> >
HeaderMaps
;
458
/// FileEntry, uniquing them through the '
HeaderMaps
' datastructure.
Completed in 466 milliseconds