Searched refs:Path (Results 101 - 125 of 160) sorted by relevance

1234567

/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp31 #include "llvm/Support/Path.h"
236 GlobalModuleIndex::readIndex(StringRef Path) { argument
239 IndexPath += Path;
770 StringRef Path) {
772 IndexPath += Path;
797 for (llvm::sys::fs::directory_iterator D(Path, EC), DEnd;
768 writeIndex(FileManager &FileMgr, const PCHContainerReader &PCHContainerRdr, StringRef Path) argument
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Serialization/
H A DASTWriter.h761 bool PreparePathForOutput(SmallVectorImpl<char> &Path);
764 void AddPath(StringRef Path, RecordDataImpl &Record);
768 StringRef Path);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Basic/
H A DModule.cpp528 llvm::SmallVector<Module*, 8> Path;
530 Path.push_back(I->M);
531 Cb(Path, C.Other, C.Message);
/freebsd-11.0-release/contrib/llvm/include/llvm/ADT/
H A DIntervalMap.h757 //--- IntervalMapImpl::Path ---//
760 // A Path is used by iterators to represent a position in a B+-tree, and the
763 // The Path class also contains the tree navigation code that doesn't have to
768 class Path {
1295 IntervalMapImpl::Path path;
1604 Path &P = this->path;
1632 Path &P = this->path;
1658 IntervalMapImpl::Path &P = this->path;
1729 IntervalMapImpl::Path &P = this->path;
1774 IntervalMapImpl::Path
[all...]
/freebsd-11.0-release/contrib/llvm/tools/llvm-cov/
H A DCodeCoverage.cpp30 #include "llvm/Support/Path.h"
360 SmallString<128> Path(File);
362 if (std::error_code EC = sys::fs::make_absolute(Path)) {
366 SourceFiles.push_back(Path.str());
/freebsd-11.0-release/sys/contrib/dev/acpica/include/
H A Daclocal.h955 UINT8 *Path; member in struct:acpi_parse_obj_named
1272 char *Path; member in struct:acpi_external_list
1293 char *Path; member in struct:acpi_external_file
H A Dacpiosxf.h561 const char *Path,
H A Dacresrc.h230 const char *Path,
/freebsd-11.0-release/contrib/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h101 static ErrorOr<std::unique_ptr<InstrProfReader>> create(std::string Path);
372 create(std::string Path);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Format/
H A DUnwrappedLineFormatter.cpp768 std::deque<StateNode *> Path; local
771 Path.push_front(Best);
774 for (std::deque<StateNode *>::iterator I = Path.begin(), E = Path.end();
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DModule.h546 /// \brief A callback to call when a module conflict is found. \p Path
549 typedef llvm::function_ref<void(ArrayRef<Module *> Path,
/freebsd-11.0-release/cddl/usr.sbin/zfsd/
H A Dvdev.cc336 Vdev::Path() const function in class:Vdev
/freebsd-11.0-release/sys/contrib/dev/acpica/common/
H A Dadisasm.c164 * Prefix - Path prefix for output
584 ExternalFilename = ExternalFileList->Path;
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaAccess.cpp1386 CXXBasePath *Path = FindBestPath(S, EC, Entity, FinalAccess, Paths); local
1387 if (!Path)
1390 assert(Path->Access <= UnprivilegedAccess &&
1392 if (Path->Access == AS_public)
1804 const CXXBasePath &Path,
1811 if (Path.Access == AS_public)
1819 Path.Access);
1801 CheckBaseClassAccess(SourceLocation AccessLoc, QualType Base, QualType Derived, const CXXBasePath &Path, unsigned DiagID, bool ForceCheck, bool ForceUnprivileged) argument
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DDeclCXX.h1490 /// \param Path the current path, from the most-derived class down to the
1495 CXXBasePath &Path)> BaseMatchesCallback;
1526 CXXBasePath &Path, const CXXRecordDecl *BaseRecord);
1538 CXXBasePath &Path,
1547 CXXBasePath &Path, DeclarationName Name);
1555 CXXBasePath &Path, DeclarationName Name);
1564 CXXBasePath &Path,
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/
H A DAnalysisConsumer.cpp44 #include "llvm/Support/Path.h"
260 llvm::errs() << " (Path, ";
639 // Path-sensitive checking.
800 if (auto Path = llvm::sys::findProgramByName("ubiviz"))
801 Ubiviz = *Path;
/freebsd-11.0-release/contrib/llvm/lib/LTO/
H A DLTOModule.cpp40 #include "llvm/Support/Path.h"
72 bool LTOModule::isBitcodeFile(const char *Path) { argument
74 MemoryBuffer::getFile(Path);
/freebsd-11.0-release/contrib/llvm/lib/Support/Unix/
H A DPath.inc1 //===- llvm/Support/Unix/Path.inc - Unix Path Implementation ----*- C++ -*-===//
10 // This file implements the Unix specific implementation of the Path API.
309 std::error_code access(const Twine &Path, AccessMode Mode) {
311 StringRef P = Path.toNullTerminatedStringRef(PathStorage);
328 bool can_execute(const Twine &Path) {
329 return !access(Path, AccessMode::Execute);
382 std::error_code status(const Twine &Path, file_status &Result) {
384 StringRef P = Path.toNullTerminatedStringRef(PathStorage);
/freebsd-11.0-release/contrib/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp30 #include "llvm/Support/Path.h"
470 std::find_if(Members.begin(), Members.end(), [Name](StringRef Path) {
471 return Name == sys::path::filename(Path);
/freebsd-11.0-release/sys/contrib/dev/acpica/components/disassembler/
H A Ddmwalk.c626 if (Op->Named.Path)
628 AcpiDmNamestring ((char *) Op->Named.Path);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp970 llvm::SmallString<256> Path(Entry.first->getName());
971 llvm::sys::fs::make_absolute(Path);
974 FilenameStrs[I] = std::string(Path.begin(), Path.end());
/freebsd-11.0-release/contrib/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp170 static void error(Twine Message, Twine Path = Twine()) {
172 errs() << ToolName << ": " << Path << ": " << Message << ".\n";
175 static bool error(std::error_code EC, Twine Path = Twine()) {
177 error(EC.message(), Path);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DVTableBuilder.cpp221 const CXXBasePath &Path) {
228 for (int I = Path.size(), E = 0; I != E; --I) {
229 const CXXBasePathElement &Element = Path[I - 1];
240 for (unsigned I = NonVirtualStart, E = Path.size(); I != E; ++I) {
241 const CXXBasePathElement &Element = Path[I];
1224 for (const CXXBasePath &Path : Paths) {
1225 BaseOffset Offset = ComputeBaseOffset(Context, DerivedRD, Path);
2688 for (const CXXBasePath &Path : Paths) {
2695 for (const CXXBasePathElement &Element : Path) {
3076 static void PrintBasePath(const VPtrInfo::BasePath &Path, raw_ostrea argument
219 ComputeBaseOffset(const ASTContext &Context, const CXXRecordDecl *DerivedRD, const CXXBasePath &Path) argument
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Driver/
H A DSanitizerArgs.cpp19 #include "llvm/Support/Path.h"
97 clang::SmallString<64> Path(D.ResourceDir);
98 llvm::sys::path::append(Path, BlacklistFile);
99 BLPath = Path.str();
/freebsd-11.0-release/contrib/llvm/tools/llvm-bcanalyzer/
H A Dllvm-bcanalyzer.cpp583 static bool openBitcodeFile(StringRef Path, argument
590 MemoryBuffer::getFileOrSTDIN(Path);
592 return Error(Twine("Error reading '") + Path + "': " + EC.message());

Completed in 182 milliseconds

1234567