OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SearchDirs
(Results
1 - 3
of
3
) 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
...]
/frameworks/compile/mclinker/include/mcld/MC/
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
();
/external/clang/include/clang/Lex/
HeaderSearch.h
163
/// 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
;
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
.end();
[
all
...]
Completed in 52 milliseconds