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

  /frameworks/compile/mclinker/lib/MC/
SearchDirs.cpp 1 //===- SearchDirs.cpp -----------------------------------------------------===//
9 #include <mcld/MC/SearchDirs.h>
25 // SearchDirs
27 SearchDirs::SearchDirs()
34 SearchDirs::SearchDirs(const sys::fs::Path& pSysRoot)
41 SearchDirs::~SearchDirs()
49 bool SearchDirs::insert(const std::string& pPath
    [all...]
Android.mk 14 SearchDirs.cpp \
CommandAction.cpp 11 #include <mcld/MC/SearchDirs.h>
38 SearchDirs& pSearchDirs)
  /frameworks/compile/mclinker/include/mcld/MC/
InputAction.h 17 class SearchDirs;
SearchDirs.h 1 //===- SearchDirs.h -------------------------------------------------------===//
28 /** \class SearchDirs
29 * \brief SearchDirs contains the list of paths that MCLinker will search for
32 * SearchDirs is customized for linking. It handles -L on the command line
37 class SearchDirs : private Uncopyable
45 SearchDirs();
47 SearchDirs(const sys::fs::Path& pSysRoot);
49 ~SearchDirs();
CommandAction.h 21 class SearchDirs;
47 SearchDirs& pSearchDirs);
55 SearchDirs& m_SearchDirs;
  /external/clang/include/clang/Lex/
HeaderSearch.h 145 /// directory of the \#including file first, then each directory in SearchDirs
147 /// directory in SearchDirs, starting at AngledDirIdx, consecutively. If
150 std::vector<DirectoryLookup> SearchDirs;
172 /// The first part of the value is the starting index in SearchDirs
175 /// ignored. The second value is the entry in SearchDirs that satisfied
241 SearchDirs = dirs;
251 SearchDirs.insert(SearchDirs.begin() + idx, dir);
525 search_dir_iterator search_dir_begin() const { return SearchDirs.begin(); }
526 search_dir_iterator search_dir_end() const { return SearchDirs.end();
    [all...]
  /external/clang/lib/Lex/
HeaderSearch.cpp 142 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())
165 if (loadModuleMapFile(SearchDirs[Idx].getDir()) == LMM_NewlyLoaded) {
176 NestedModuleMapDirName = SearchDirs[Idx].getDir()->getName();
558 i = FromDir-&SearchDirs[0];
563 // (potentially huge) series of SearchDirs to find it.
581 for (; i != SearchDirs.size(); ++i)
    [all...]
  /frameworks/compile/mclinker/include/mcld/
GeneralOptions.h 17 #include <mcld/MC/SearchDirs.h>
71 SearchDirs& directories()
74 const SearchDirs& directories() const
331 SearchDirs m_SearchDirs;

Completed in 1256 milliseconds