Searched refs:FilePath (Results 26 - 50 of 57) sorted by relevance

123

/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Tooling/
H A DCommonOptionsParser.h139 getCompileCommands(StringRef FilePath) const override;
H A DDiagnosticsYaml.h32 Io.mapOptional("FilePath", M.FilePath);
H A DExecution.h144 /// \param FilePath The path at which the content will be mapped.
146 virtual void mapVirtualFile(StringRef FilePath, StringRef Content) = 0;
H A DTooling.h269 /// \param FilePath The path at which the content will be mapped.
272 void mapVirtualFile(StringRef FilePath, StringRef Content);
335 /// \param FilePath The path at which the content will be mapped.
337 void mapVirtualFile(StringRef FilePath, StringRef Content);
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Tooling/Core/
H A DReplacement.h89 /// FilePath with ReplacementText.
91 /// \param FilePath A source file accessible via a SourceManager.
94 Replacement(StringRef FilePath, unsigned Offset, unsigned Length,
120 StringRef getFilePath() const { return FilePath; }
140 std::string FilePath; member in class:clang::tooling::Replacement
/freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp196 JSONCompilationDatabase::loadFromFile(StringRef FilePath, argument
201 llvm::MemoryBuffer::getFile(FilePath, /*FileSize=*/-1,
229 JSONCompilationDatabase::getCompileCommands(StringRef FilePath) const {
231 llvm::sys::path::native(FilePath, NativeFilePath);
H A DCompilationDatabase.cpp388 FixedCompilationDatabase::getCompileCommands(StringRef FilePath) const {
390 Result[0].CommandLine.push_back(FilePath);
391 Result[0].Filename = FilePath;
H A DTooling.cpp309 void ToolInvocation::mapVirtualFile(StringRef FilePath, StringRef Content) { argument
311 llvm::sys::path::native(FilePath, PathStorage);
424 void ClangTool::mapVirtualFile(StringRef FilePath, StringRef Content) { argument
425 MappedFileContents.push_back(std::make_pair(FilePath, Content));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/Unix/
H A DProgram.inc88 SmallString<128> FilePath(Path);
89 sys::path::append(FilePath, Name);
90 if (sys::fs::can_execute(FilePath.c_str()))
91 return std::string(FilePath.str()); // Found the executable!
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Frontend/
H A DPrecompiledPreamble.h138 TempPCHFile(std::string FilePath);
154 llvm::Optional<std::string> FilePath; member in class:clang::PrecompiledPreamble::TempPCHFile
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPDBFile.cpp44 : FilePath(Path), Allocator(Allocator), Buffer(std::move(PdbFileBuffer)) {}
48 StringRef PDBFile::getFilePath() const { return FilePath; }
51 return sys::path::parent_path(FilePath);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DPDBFile.h125 std::string FilePath; member in class:llvm::pdb::PDBFile
/freebsd-12-stable/contrib/llvm-project/clang/lib/CrossTU/
H A DCrossTranslationUnit.cpp150 SmallString<256> FilePath = CrossTUDir; local
151 llvm::sys::path::append(FilePath, FileName);
152 Result[LookupName] = FilePath.str().str();
/freebsd-12-stable/contrib/llvm-project/clang/lib/Lex/
H A DPPLexerChange.cpp206 StringRef FilePath = File->getDir()->getName();
207 StringRef Path = FilePath;
211 Result = FilePath.substr(Path.size());
/freebsd-12-stable/contrib/googletest/googletest/src/
H A Dgtest-internal-inl.h411 GTEST_API_ FilePath GetCurrentExecutableName();
665 original_working_dir_.Set(FilePath::GetCurrentDir());
824 internal::FilePath original_working_dir_;
H A Dgtest.cc200 FilePath output_file_path(output_file);
201 FilePath output_dir(output_file_path.RemoveFileName());
445 FilePath GetCurrentExecutableName() {
446 FilePath result;
449 result.Set(FilePath(GetArgvs()[0]).RemoveExtension("exe"));
451 result.Set(FilePath(GetArgvs()[0]));
479 return internal::FilePath::MakeFileName(
480 internal::FilePath(
482 internal::FilePath(kDefaultOutputFile), 0,
485 internal::FilePath output_nam
[all...]
/freebsd-12-stable/sys/contrib/edk2/Include/Protocol/
H A DDevicePath.h1255 FILEPATH_DEVICE_PATH FilePath; member in union:__anon10606
1312 FILEPATH_DEVICE_PATH *FilePath; member in union:__anon10607
/freebsd-12-stable/stand/efi/include/
H A Defidevp.h418 FILEPATH_DEVICE_PATH FilePath; member in union:__anon8971
452 FILEPATH_DEVICE_PATH *FilePath; member in union:__anon8972
H A Defiprot.h364 IN EFI_DEVICE_PATH *FilePath,
/freebsd-12-stable/stand/efi/boot1/
H A Dboot1.c249 text = efi_devpath_name(img->FilePath);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DMemoryBuffer.cpp154 MemoryBuffer::getFileSlice(const Twine &FilePath, uint64_t MapSize, argument
156 return getFileAux<MemoryBuffer>(FilePath, -1, MapSize, Offset, false,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp1063 SmallString<16> FilePath; local
1078 sys::path::append(FilePath, Style, CompDir);
1082 sys::path::append(FilePath, Style, IncludeDir, FileName);
1083 Result = FilePath.str();
/freebsd-12-stable/contrib/googletest/googletest/test/
H A Dgoogletest-death-test-test.cc65 using testing::internal::FilePath;
124 TestForDeathTest() : original_dir_(FilePath::GetCurrentDir()) {}
141 const FilePath original_dir_;
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DMSVC.cpp300 SmallString<128> FilePath(MSVC.getSubDirectoryPath(
302 llvm::sys::path::append(FilePath, Exe);
303 return llvm::sys::fs::can_execute(FilePath) ? FilePath.str() : Exe;
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DNullabilityChecker.cpp762 StringRef FilePath = SM.getFilename(SM.getSpellingLoc(Decl->getBeginLoc())); local
763 if (llvm::sys::path::filename(FilePath).startswith("CG")) {

Completed in 161 milliseconds

123