Searched refs:FilePath (Results 1 - 19 of 19) sorted by relevance

/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Tooling/
H A DRefactoring.cpp29 : FilePath(InvalidLocation), Offset(0), Length(0) {}
31 Replacement::Replacement(StringRef FilePath, unsigned Offset, argument
33 : FilePath(FilePath), Offset(Offset),
47 return FilePath != InvalidLocation;
52 const FileEntry *Entry = SM.getFileManager().getFile(FilePath);
77 stream << FilePath << ": " << Offset << ":+" << Length
84 if (R1.FilePath != R2.FilePath) return R1.FilePath < R
[all...]
H A DCompilationDatabase.cpp124 FixedCompilationDatabase::getCompileCommands(StringRef FilePath) const {
126 Result[0].CommandLine.push_back(FilePath);
H A DJSONCompilationDatabase.cpp145 JSONCompilationDatabase::loadFromFile(StringRef FilePath, argument
149 llvm::MemoryBuffer::getFile(FilePath, DatabaseBuffer);
174 JSONCompilationDatabase::getCompileCommands(StringRef FilePath) const {
176 llvm::sys::path::native(FilePath, NativeFilePath);
H A DTooling.cpp152 void ToolInvocation::mapVirtualFile(StringRef FilePath, StringRef Content) { argument
154 llvm::sys::path::native(FilePath, PathStorage);
262 void ClangTool::mapVirtualFile(StringRef FilePath, StringRef Content) { argument
263 MappedFileContents.push_back(std::make_pair(FilePath, Content));
/freebsd-10.0-release/contrib/llvm/lib/Support/
H A DFileOutputBuffer.cpp35 error_code FileOutputBuffer::create(StringRef FilePath, argument
41 error_code EC = sys::fs::status(FilePath, Stat);
61 EC = sys::fs::remove(FilePath, Existed);
68 EC = sys::fs::unique_file(Twine(FilePath) + ".tmp%%%%%%%",
98 Result.reset(new FileOutputBuffer(MappedFile.get(), FilePath, TempFilePath));
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Tooling/
H A DRefactoring.h45 /// FilePath with ReplacementText.
47 /// \param FilePath A source file accessible via a SourceManager.
50 Replacement(StringRef FilePath, unsigned Offset,
74 StringRef getFilePath() const { return FilePath; }
98 std::string FilePath; member in class:clang::tooling::Replacement
H A DCompilationDatabase.h104 StringRef FilePath) const = 0;
178 /// and 'FilePath' as positional argument.
180 StringRef FilePath) const;
H A DJSONCompilationDatabase.h56 static JSONCompilationDatabase *loadFromFile(StringRef FilePath,
68 /// FIXME: Currently FilePath must be an absolute path inside the
71 StringRef FilePath) const;
H A DTooling.h140 /// \param FilePath The path at which the content will be mapped.
142 void mapVirtualFile(StringRef FilePath, StringRef Content);
185 /// \param FilePath The path at which the content will be mapped.
187 void mapVirtualFile(StringRef FilePath, StringRef Content);
/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A DFileOutputBuffer.h43 static error_code create(StringRef FilePath, size_t Size,
/freebsd-10.0-release/sys/boot/efi/libefi/
H A Dlibefi.c147 img->FilePath == NULL) ? 1 : 0;
150 (DevicePathType(img->FilePath) != MEDIA_DEVICE_PATH ||
151 DevicePathSubType(img->FilePath) != MEDIA_FILEPATH_DP ||
152 DevicePathNodeLength(img->FilePath) <=
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Basic/
H A DFileManager.cpp533 SmallString<128> FilePath(Entry->getName());
534 FixupRelativePath(FilePath);
535 ec = llvm::MemoryBuffer::getFile(FilePath.str(), Result, FileSize);
552 SmallString<128> FilePath(Filename);
553 FixupRelativePath(FilePath);
554 ec = llvm::MemoryBuffer::getFile(FilePath.c_str(), Result);
573 SmallString<128> FilePath(Path);
574 FixupRelativePath(FilePath);
576 return FileSystemStatCache::get(FilePath.c_str(), StatBuf,
582 SmallString<128> FilePath(Pat
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Lex/
H A DPPLexerChange.cpp216 StringRef FilePath = File->getDir()->getName(); local
217 StringRef Path = FilePath;
221 Result = FilePath.substr(Path.size());
/freebsd-10.0-release/contrib/llvm/lib/DebugInfo/
H A DDWARFDebugLine.cpp617 SmallString<16> FilePath; local
623 sys::path::append(FilePath, IncludeDir);
625 sys::path::append(FilePath, FileName);
626 Result = FilePath.str();
/freebsd-10.0-release/sys/boot/efi/include/
H A Defidevp.h380 FILEPATH_DEVICE_PATH FilePath; member in union:__anon5985
414 FILEPATH_DEVICE_PATH *FilePath; member in union:__anon5986
H A Defiapi.h339 IN EFI_DEVICE_PATH *FilePath,
381 EFI_DEVICE_PATH *FilePath; member in struct:__anon5968
H A Defiprot.h362 IN EFI_DEVICE_PATH *FilePath,
/freebsd-10.0-release/contrib/llvm/lib/Archive/
H A DArchiveWriter.cpp70 Archive* Archive::CreateEmpty(const sys::Path& FilePath, LLVMContext& C) { argument
71 Archive* result = new Archive(FilePath, C);
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriter.cpp1328 SmallString<128> FilePath(Filename);
1332 FileMgr.FixupRelativePath(FilePath);
1336 llvm::sys::fs::make_absolute(FilePath);
1337 Filename = FilePath.c_str();

Completed in 157 milliseconds