Searched refs:pPath (Results 1 - 25 of 40) sorted by relevance

12

/frameworks/compile/mclinker/lib/Support/
H A DFileSystem.cpp16 bool mcld::sys::fs::exists(const Path& pPath) { argument
18 mcld::sys::fs::detail::status(pPath, file_status);
23 bool mcld::sys::fs::is_directory(const Path& pPath) { argument
25 detail::status(pPath, file_status);
H A DRealPath.cpp29 RealPath::RealPath(const Path& pPath) : Path(pPath) { argument
36 RealPath& RealPath::assign(const Path& pPath) { argument
37 Path::m_PathName.assign(pPath.native());
H A DMemoryAreaFactory.cpp25 MemoryArea* MemoryAreaFactory::produce(const sys::fs::Path& pPath, argument
27 llvm::StringRef name(pPath.native());
38 MemoryArea* MemoryAreaFactory::produce(const sys::fs::Path& pPath, argument
41 llvm::StringRef name(pPath.native());
H A DPath.cpp89 Path& Path::append(const Path& pPath) { argument
92 pPath.native()[0] == separator) {
93 llvm::StringRef path(pPath.native());
96 pPath.native()[0] != separator) {
99 m_PathName.append(pPath.native());
102 m_PathName.append(pPath.native());
108 Path& Path::append(const StringType& pPath) { argument
109 Path path(pPath);
H A DDirectory.cpp43 Directory::Directory(const Path& pPath, FileStatus st, FileStatus symlink_st) argument
44 : m_Path(pPath),
56 Directory::Directory(const char* pPath, FileStatus st, FileStatus symlink_st) argument
57 : Directory(sys::fs::Path(pPath), st, symlink_st) {
83 void Directory::assign(const Path& pPath, argument
89 m_Path = pPath;
H A DFileHandle.cpp76 bool FileHandle::open(const sys::fs::Path& pPath, argument
86 m_Handler = sys::fs::detail::open(pPath, oflag(pMode));
88 m_Handler = sys::fs::detail::open(pPath, oflag(pMode),
91 m_Path = pPath;
/frameworks/compile/mclinker/include/mcld/MC/
H A DContextFactory.h37 LDContext* produce(const sys::fs::Path& pPath);
38 LDContext* produce(const char* pPath);
H A DInputBuilder.h56 const sys::fs::Path& pPath,
61 const sys::fs::Path& pPath,
105 const sys::fs::Path& pPath,
109 Input* input = createInput(pName, pPath, pType);
120 const sys::fs::Path& pPath,
124 Input* input = createInput(pName, pPath, pType);
103 createNode( const std::string& pName, const sys::fs::Path& pPath, unsigned int pType) argument
118 createNode( const std::string& pName, const sys::fs::Path& pPath, unsigned int pType) argument
H A DInputFactory.h40 const sys::fs::Path& pPath,
45 const char* pPath,
H A DInput.h51 const sys::fs::Path& pPath,
56 const sys::fs::Path& pPath,
69 void setPath(const sys::fs::Path& pPath) { m_Path = pPath; } argument
H A DMCLDDirectory.h37 void setSysroot(const sys::fs::Path& pPath);
/frameworks/compile/mclinker/lib/Script/
H A DSearchDirCmd.cpp20 SearchDirCmd::SearchDirCmd(const std::string& pPath) argument
21 : ScriptCommand(ScriptCommand::SEARCH_DIR), m_Path(pPath) {
/frameworks/compile/mclinker/lib/MC/
H A DContextFactory.cpp24 LDContext* ContextFactory::produce(const sys::fs::Path& pPath) { argument
25 LDContext* result = find(pPath);
29 f_KeyMap.insert(std::make_pair(pPath, result));
34 LDContext* ContextFactory::produce(const char* pPath) { argument
35 return produce(sys::fs::Path(pPath));
H A DInputFactory.cpp34 const sys::fs::Path& pPath,
38 new (result) Input(pName, pPath, *m_pLast, pType, pFileOffset);
43 const char* pPath,
47 new (result) Input(pName, sys::fs::Path(pPath), *m_pLast, pType, pFileOffset);
33 produce(llvm::StringRef pName, const sys::fs::Path& pPath, unsigned int pType, off_t pFileOffset) argument
42 produce(llvm::StringRef pName, const char* pPath, unsigned int pType, off_t pFileOffset) argument
H A DInput.cpp44 const sys::fs::Path& pPath,
49 m_Path(pPath),
59 const sys::fs::Path& pPath,
65 m_Path(pPath),
43 Input(llvm::StringRef pName, const sys::fs::Path& pPath, unsigned int pType, off_t pFileOffset) argument
58 Input(llvm::StringRef pName, const sys::fs::Path& pPath, const AttributeProxy& pProxy, unsigned int pType, off_t pFileOffset) argument
H A DSearchDirs.cpp47 bool SearchDirs::insert(const std::string& pPath) { argument
48 MCLDDirectory* dir = new MCLDDirectory(pPath);
62 bool SearchDirs::insert(const char* pPath) { argument
63 return insert(std::string(pPath));
66 bool SearchDirs::insert(const sys::fs::Path& pPath) { argument
67 return insert(pPath.native());
H A DCommandAction.cpp26 const sys::fs::Path& pPath)
27 : InputAction(pPosition), m_Path(pPath) {
31 const char* pPath)
32 : InputAction(pPosition), m_Path(pPath) {
81 BitcodeAction::BitcodeAction(unsigned int pPosition, const sys::fs::Path& pPath) argument
82 : InputAction(pPosition), m_Path(pPath) {
25 InputFileAction(unsigned int pPosition, const sys::fs::Path& pPath) argument
30 InputFileAction(unsigned int pPosition, const char* pPath) argument
/frameworks/compile/mclinker/include/mcld/Support/
H A DPath.h65 Path& append(const Path& pPath);
66 Path& append(const StringType& pPath);
104 bool exists(const Path& pPath);
106 bool is_directory(const Path& pPath);
111 const Path& pPath) {
112 return pOS << pPath.native();
118 Path& pPath) {
119 return pOS >> pPath.native();
123 const Path& pPath) {
124 return pOS << pPath
109 operator <<( std::basic_ostream<Char, Traits>& pOS, const Path& pPath) argument
116 operator >>( std::basic_istream<Char, Traits>& pOS, Path& pPath) argument
122 operator <<(llvm::raw_ostream& pOS, const Path& pPath) argument
[all...]
H A DMemoryAreaFactory.h45 MemoryArea* produce(const sys::fs::Path& pPath, FileHandle::OpenMode pMode);
48 MemoryArea* produce(const sys::fs::Path& pPath,
H A DRealPath.h32 explicit RealPath(const Path& pPath);
36 RealPath& assign(const Path& pPath);
H A DFileSystem.h73 bool exists(const Path& pPath);
74 bool is_directory(const Path& pPath);
94 int open(const Path& pPath, int pOFlag);
95 int open(const Path& pPath, int pOFlag, int pPermission);
H A DDirectory.h47 /// constructor - a directory whose path is pPath
48 explicit Directory(const Path& pPath,
52 explicit Directory(const char* pPath,
68 void assign(const Path& pPath,
/frameworks/compile/mclinker/include/mcld/Script/
H A DSearchDirCmd.h26 explicit SearchDirCmd(const std::string& pPath);
/frameworks/compile/mclinker/include/mcld/
H A DLinker.h53 /// emit - To open a file for output in pPath and to emit output mcld::Module
55 bool emit(const Module& pModule, const std::string& pPath);
/frameworks/compile/mclinker/include/mcld/LD/
H A DMsgHandler.h59 const sys::fs::Path& pPath) {
60 pHandler.addString(pPath.native());
58 operator <<(const MsgHandler& pHandler, const sys::fs::Path& pPath) argument

Completed in 276 milliseconds

12