Searched refs:Path (Results 76 - 100 of 160) sorted by relevance

1234567

/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Lex/
H A DPPLexerChange.cpp25 #include "llvm/Support/Path.h"
239 StringRef Path = FilePath; local
240 while (!Path.empty()) {
241 if (const DirectoryEntry *CurDir = FM.getDirectory(Path)) {
243 Result = FilePath.substr(Path.size());
250 Path = llvm::sys::path::parent_path(Path);
H A DPTHLexer.cpp698 LookupResult getStat(const char *Path, FileData &Data, bool isFile,
702 CacheTy::iterator I = Cache.find(Path);
706 return statChained(Path, Data, isFile, F, FS);
713 Data.Name = Path;
H A DPPDirectives.cpp28 #include "llvm/Support/Path.h"
1458 ArrayRef<std::pair<IdentifierInfo *, SourceLocation>> Path,
1463 for (unsigned I = 0, N = Path.size(); I != N; ++I) {
1466 PathString += Path[I].first->getName();
1704 SmallVector<std::pair<IdentifierInfo *, SourceLocation>, 2> Path; local
1706 Path.push_back(std::make_pair(getIdentifierInfo(Mod->Name),
1708 std::reverse(Path.begin(), Path.end());
1713 diagnoseAutoModuleImport(*this, HashLoc, IncludeTok, Path, CharEnd);
1720 IncludeTok.getLocation(), Path, Modul
1456 diagnoseAutoModuleImport( Preprocessor &PP, SourceLocation HashLoc, Token &IncludeTok, ArrayRef<std::pair<IdentifierInfo *, SourceLocation>> Path, SourceLocation PathEnd) argument
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Driver/
H A DToolChain.h20 #include "llvm/Support/Path.h"
109 const Twine &Path);
112 const Twine &Path);
116 const Twine &Path);
/freebsd-11.0-release/sys/contrib/dev/acpica/components/namespace/
H A Dnsxfname.c601 char *Path; local
639 Path = AcpiPsGetNextNamestring (&ParserState);
672 Status = AcpiNsLookup (NULL, Path, ACPI_TYPE_METHOD, ACPI_IMODE_LOAD_PASS1,
/freebsd-11.0-release/lib/clang/libllvmsupport/
H A DMakefile49 Path.cpp \
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DPPCallbacks.h138 /// \param Path The identifiers (and their locations) of the module
144 ModuleIdPath Path,
366 void moduleImport(SourceLocation ImportLoc, ModuleIdPath Path,
368 First->moduleImport(ImportLoc, Path, Imported);
369 Second->moduleImport(ImportLoc, Path, Imported);
143 moduleImport(SourceLocation ImportLoc, ModuleIdPath Path, const Module *Imported) argument
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DExternalASTSource.cpp34 Path = M.Directory->getName();
/freebsd-11.0-release/contrib/llvm/include/llvm/LTO/
H A DLTOCodeGenerator.h108 bool writeMergedModules(const char *Path);
/freebsd-11.0-release/contrib/llvm/tools/llvm-pdbdump/
H A DLinePrinter.cpp110 case PDB_ColorItem::Path:
H A DCompilandDumper.cpp28 #include "llvm/Support/Path.h"
51 WithColor(Printer, PDB_ColorItem::Path).get() << FullName;
/freebsd-11.0-release/sys/contrib/dev/acpica/components/dispatcher/
H A Ddsfield.c65 char *Path,
84 * Path - Pathname of the region
99 char *Path,
117 AcpiDmAddOpToExternalList (Op, Path, ACPI_TYPE_REGION, 0, 0);
119 Status = AcpiNsLookup (WalkState->ScopeInfo, Path, ACPI_TYPE_REGION,
96 AcpiDsCreateExternalRegion( ACPI_STATUS LookupStatus, ACPI_PARSE_OBJECT *Op, char *Path, ACPI_WALK_STATE *WalkState, ACPI_NAMESPACE_NODE **Node) argument
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DStore.cpp251 SVal StoreManager::evalDerivedToBase(SVal Derived, const CXXBasePath &Path) { argument
254 for (CXXBasePath::const_iterator I = Path.begin(), E = Path.end();
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Frontend/
H A DCompilerInstance.h646 void createPCHExternalASTSource(StringRef Path, bool DisablePCHValidation,
655 StringRef Path, StringRef Sysroot, bool DisablePCHValidation,
763 ModuleLoadResult loadModule(SourceLocation ImportLoc, ModuleIdPath Path,
/freebsd-11.0-release/sys/contrib/dev/acpica/include/
H A Dacutils.h508 const char *Path,
805 const char *Path);
1050 const char *Path,
H A Dacparser.h264 char *Path,
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Driver/
H A DDriver.cpp37 #include "llvm/Support/Path.h"
872 for (const std::string &Path : TC.getProgramPaths()) {
875 llvm::outs() << Path;
883 for (const std::string &Path : TC.getFilePaths()) {
887 if (Path[0] == '=')
888 llvm::outs() << sysroot << Path.substr(1);
890 llvm::outs() << Path;
1102 SmallString<64> Path(Value);
1104 if (!llvm::sys::path::is_absolute(Path)) {
1107 Path
2193 SmallString<128> Path; local
[all...]
H A DToolChains.cpp32 #include "llvm/Support/Path.h"
1701 // Filter to remove Multilibs that don't exist as a suffix to Path
1769 StringRef Path, const ArgList &Args,
1796 FilterNonExistent NonExistent(Path, D.getVFS());
2099 StringRef Path, const ArgList &Args,
2129 FilterNonExistent NonExistent(Path, D.getVFS());
2478 for (const auto &Path : IncludePaths)
2479 addExternCSystemIncludeIfExists(DriverArgs, CC1Args, Path);
2526 for (const auto &Path : IncludePaths) {
2527 if (llvm::sys::fs::exists(Path
1768 findMIPSMultilibs(const Driver &D, const llvm::Triple &TargetTriple, StringRef Path, const ArgList &Args, DetectedMultilibs &Result) argument
2097 findBiarchMultilibs(const Driver &D, const llvm::Triple &TargetTriple, StringRef Path, const ArgList &Args, bool NeedsBiarchSuffix, DetectedMultilibs &Result) argument
3298 addPathIfExists(const Driver &D, const Twine &Path, ToolChain::path_list &Paths) argument
3845 std::string Path = local
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/Object/
H A DBinary.h188 ErrorOr<OwningBinary<Binary>> createBinary(StringRef Path);
/freebsd-11.0-release/contrib/llvm/lib/LTO/
H A DLTOCodeGenerator.cpp168 bool LTOCodeGenerator::writeMergedModules(const char *Path) { argument
177 tool_output_file Out(Path, EC, sys::fs::F_None);
180 ErrMsg += Path;
191 ErrMsg += Path;
/freebsd-11.0-release/contrib/llvm/lib/Transforms/IPO/
H A DFunctionImport.cpp361 getFunctionIndexForFile(StringRef Path, std::string &Error, argument
365 MemoryBuffer::getFile(Path);
/freebsd-11.0-release/cddl/usr.sbin/zfsd/
H A Dzfsd_event.cc527 vdev.Path().c_str(), zpool_get_name(hdl));
528 zpool_vdev_detach(hdl, vdev.Path().c_str());
/freebsd-11.0-release/sys/contrib/dev/acpica/components/resources/
H A Drsutils.c726 * Path - Path to method, relative to Handle
743 const char *Path,
759 Path, ACPI_BTYPE_BUFFER, &ObjDesc);
741 AcpiRsGetMethodData( ACPI_HANDLE Handle, const char *Path, ACPI_BUFFER *RetBuffer) argument
/freebsd-11.0-release/contrib/llvm/lib/ProfileData/
H A DInstrProfReader.cpp22 setupMemoryBuffer(std::string Path) { argument
24 MemoryBuffer::getFileOrSTDIN(Path);
35 InstrProfReader::create(std::string Path) { argument
37 auto BufferOrError = setupMemoryBuffer(Path);
70 IndexedInstrProfReader::create(std::string Path) { argument
72 auto BufferOrError = setupMemoryBuffer(Path);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaLookup.cpp1838 CXXBasePath &Path, DeclarationName Name) {
1841 Path.Decls = BaseRecord->lookup(Name);
1842 return !Path.Decls.empty();
1970 bool (*BaseCallback)(const CXXBaseSpecifier *Specifier, CXXBasePath &Path,
2006 [=](const CXXBaseSpecifier *Specifier, CXXBasePath &Path) {
2007 return BaseCallback(Specifier, Path, Name);
2024 for (CXXBasePaths::paths_iterator Path = Paths.begin(), PathEnd = Paths.end();
2025 Path != PathEnd; ++Path) {
2026 const CXXBasePathElement &PathElement = Path
[all...]

Completed in 219 milliseconds

1234567