Lines Matching refs:Path
35 result += path.str().length() + 1;
47 : parent(0), path("--invalid--"), flags(0), data(0)
62 : parent(PAR), path(), flags(0), data(0)
69 bool ArchiveMember::replaceWith(const sys::Path& newFile, std::string* ErrMsg) {
78 path = newFile;
81 if (path.str() == ARFILE_SVR4_SYMTAB_NAME)
87 if (path.str() == ARFILE_BSD4_SYMTAB_NAME)
93 if (path.str() == ARFILE_LLVM_SYMTAB_NAME)
99 if (path.str() == ARFILE_STRTAB_NAME)
104 // If it has a slash then it has a path
105 bool hasSlash = path.str().find('/') != std::string::npos;
112 if (hasSlash || path.str().length() > 15)
121 sys::fs::get_magic(path.str(), magic.capacity(), magic);
123 const sys::FileStatus *FSinfo = path.getFileStatus(false, ErrMsg);
145 Archive::Archive(const sys::Path& filename, LLVMContext& C)
218 bool llvm::GetBitcodeSymbols(const sys::Path& fName,