Searched refs:SearchDirs (Results 1 - 2 of 2) sorted by relevance

/external/clang/include/clang/Lex/
H A DHeaderSearch.h163 /// directory of the \#including file first, then each directory in SearchDirs
165 /// directory in SearchDirs, starting at AngledDirIdx, consecutively. If
168 std::vector<DirectoryLookup> SearchDirs; member in class:clang::HeaderSearch
190 /// The first part of the value is the starting index in SearchDirs
193 /// ignored. The second value is the entry in SearchDirs that satisfied
259 SearchDirs = dirs;
269 SearchDirs.insert(SearchDirs.begin() + idx, dir);
559 search_dir_iterator search_dir_begin() const { return SearchDirs.begin(); }
560 search_dir_iterator search_dir_end() const { return SearchDirs
[all...]
/external/clang/lib/Lex/
H A DHeaderSearch.cpp142 for (unsigned Idx = 0, N = SearchDirs.size(); Idx != N; ++Idx) {
143 if (SearchDirs[Idx].isFramework()) {
146 FrameworkDirName += SearchDirs[Idx].getFrameworkDir()->getName();
151 = SearchDirs[Idx].getDirCharacteristic() != SrcMgr::C_User;
161 if (!SearchDirs[Idx].isNormalDir())
164 bool IsSystem = SearchDirs[Idx].isSystemHeaderDirectory();
166 if (loadModuleMapFile(SearchDirs[Idx].getDir(), IsSystem)
178 NestedModuleMapDirName = SearchDirs[Idx].getDir()->getName();
189 if (SearchDirs[Idx].haveSearchedAllModuleMaps())
194 loadSubdirectoryModuleMaps(SearchDirs[Id
[all...]

Completed in 51 milliseconds