HomeSort by relevance Sort by last modified time
    Searched refs:SearchDirs (Results 1 - 6 of 6) sorted by null

  /frameworks/compile/mclinker/include/mcld/MC/
MCLDOptions.h 15 #include "mcld/MC/SearchDirs.h"
50 SearchDirs& directories()
53 const SearchDirs& directories() const
88 SearchDirs m_SearchDirs;
SearchDirs.h 1 //===- SearchDirs.h -------------------------------------------------------===//
30 /** \class SearchDirs
31 * \brief SearchDirs contains the list of paths that MCLinker will search for
34 * SearchDirs is customized for linking. It handles -L on the command line
39 class SearchDirs : private Uncopyable
47 SearchDirs();
48 ~SearchDirs();
  /frameworks/compile/mclinker/lib/MC/
SearchDirs.cpp 1 //===- SearchDirs.cpp -----------------------------------------------------===//
12 #include "mcld/MC/SearchDirs.h"
27 // SearchDirs
28 SearchDirs::SearchDirs()
35 SearchDirs::~SearchDirs()
43 void SearchDirs::add(const MCLDDirectory& pDirectory)
48 mcld::sys::fs::Path* SearchDirs::find(const std::string& pNamespec, mcld::Input::Type pType)
Android.mk 20 SearchDirs.cpp \
  /external/clang/include/clang/Lex/
HeaderSearch.h 137 /// directory of the #including file first, then each directory in SearchDirs
139 /// directory in SearchDirs, starting at AngledDirIdx, consecutively. If
142 std::vector<DirectoryLookup> SearchDirs;
157 /// SearchDirs that the cached search was performed from. If there is a hit
159 /// ignored. The second value is the entry in SearchDirs that satisfied the
222 SearchDirs = dirs;
232 SearchDirs.insert(SearchDirs.begin() + idx, dir);
491 search_dir_iterator search_dir_begin() const { return SearchDirs.begin(); }
492 search_dir_iterator search_dir_end() const { return SearchDirs.end();
    [all...]
  /external/clang/lib/Lex/
HeaderSearch.cpp 137 for (unsigned Idx = 0, N = SearchDirs.size(); Idx != N; ++Idx) {
138 if (SearchDirs[Idx].isFramework()) {
141 FrameworkDirName += SearchDirs[Idx].getFrameworkDir()->getName();
146 = SearchDirs[Idx].getDirCharacteristic() != SrcMgr::C_User;
156 if (!SearchDirs[Idx].isNormalDir())
160 if (loadModuleMapFile(SearchDirs[Idx].getDir()) == LMM_NewlyLoaded) {
171 NestedModuleMapDirName = SearchDirs[Idx].getDir()->getName();
471 i = FromDir-&SearchDirs[0];
476 // (potentially huge) series of SearchDirs to find it.
494 for (; i != SearchDirs.size(); ++i)
    [all...]

Completed in 180 milliseconds