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"
26
//
SearchDirs
28
SearchDirs
::
SearchDirs
() {
34
SearchDirs
::
SearchDirs
(const sys::fs::Path& pSysRoot) : m_SysRoot(pSysRoot) {
40
SearchDirs
::~
SearchDirs
() {
47
bool
SearchDirs
::insert(const std::string& pPath)
[
all
...]
/frameworks/compile/mclinker/include/mcld/MC/
SearchDirs.h
1
//===-
SearchDirs
.h -------------------------------------------------------===//
26
/** \class
SearchDirs
27
* \brief
SearchDirs
contains the list of paths that MCLinker will search for
30
*
SearchDirs
is customized for linking. It handles -L on the command line
35
class
SearchDirs
{
42
SearchDirs
();
44
explicit
SearchDirs
(const sys::fs::Path& pSysRoot);
46
~
SearchDirs
();
76
DISALLOW_COPY_AND_ASSIGN(
SearchDirs
);
/external/clang/include/clang/Lex/
HeaderSearch.h
155
/// directory of the \#including file first, then each directory in
SearchDirs
157
/// directory in
SearchDirs
, starting at AngledDirIdx, consecutively. If
160
std::vector<DirectoryLookup>
SearchDirs
;
182
/// Starting index in
SearchDirs
that the cached search was performed from.
186
/// The entry in
SearchDirs
that satisfied the query.
270
SearchDirs
= dirs;
280
SearchDirs
.insert(
SearchDirs
.begin() + idx, dir);
611
search_dir_iterator search_dir_begin() const { return
SearchDirs
.begin(); }
612
search_dir_iterator search_dir_end() const { return
SearchDirs
.end();
[
all
...]
Completed in 966 milliseconds