Searched refs:Path (Results 1 - 25 of 130) sorted by relevance

123456

/freebsd-9.3-release/usr.bin/make/
H A Ddir.h54 TAILQ_HEAD(Path, PathElement);
63 struct Dir *Path_AddDir(struct Path *, const char *);
64 void Path_Clear(struct Path *);
65 void Path_Concat(struct Path *, const struct Path *);
66 void Path_Duplicate(struct Path *, const struct Path *);
67 void Path_Expand(char *, struct Path *, struct Lst *);
68 char *Path_FindFile(char *, struct Path *);
69 char *Path_MakeFlags(const char *, const struct Path *);
[all...]
H A Darch.h48 struct Path;
58 void Arch_FindLib(struct GNode *, struct Path *);
H A Dsuff.h45 struct Path;
52 struct Path *Suff_GetPath(char *);
H A Dglobals.h52 struct Path;
61 extern struct Path dirSearchPath;
64 extern struct Path parseIncPath;
67 extern struct Path sysIncPath;
/freebsd-9.3-release/contrib/bmake/
H A Ddir.h81 typedef struct Path { struct
87 } Path; typedef in typeref:struct:Path
99 Path *Dir_AddDir(Lst, const char *);
H A Ddir.c94 * Dir_InitCur Set the cur Path.
96 * Dir_InitDot Set the dot Path.
151 * A search path consists of a Lst of Path structures. A Path structure
183 * 3) record the mtime of the directory in the Path structure and
233 static Path *dot; /* contents of current directory */
234 static Path *cur; /* contents of current directory, if not dot */
235 static Path *dotLast; /* a fake path entry indicating we need to
249 static int DirMatchFiles(const char *, Path *, Lst);
254 static char *DirLookup(Path *, cons
[all...]
/freebsd-9.3-release/sys/contrib/dev/acpica/common/
H A Ddmextern.c99 char *Path);
138 * Path - Path with parent prefix
150 char *Path)
181 while (Node && (*Path == (UINT8) AML_PARENT_PREFIX))
184 Path++;
200 Length = (ACPI_STRLEN (ParentPath) + ACPI_STRLEN (Path) + 1);
205 * for the required dot separator (ParentPath.Path)
218 * parent fullpath "\_SB_", Path "^INIT", Fullpath "\_SB_.INIT"
233 ACPI_STRCAT (Fullpath, Path);
148 AcpiDmNormalizeParentPrefix( ACPI_PARSE_OBJECT *Op, char *Path) argument
258 char *Path; local
348 AcpiDmAddToExternalList( ACPI_PARSE_OBJECT *Op, char *Path, UINT8 Type, UINT32 Value) argument
[all...]
H A Dadwalk.c356 char *Path; local
385 NULL, &Path);
386 AcpiOsPrintf ("%s %p", Path, Op->Common.Node);
387 ACPI_FREE (Path);
454 NULL, &Path);
455 AcpiOsPrintf ("/* %-16s A-NAMEPATH: %s */\n", Op->Common.AmlOpName, Path);
456 ACPI_FREE (Path);
584 char *Path = NULL; local
611 Path = (char *) Op->Named.Path;
719 char *Path = NULL; local
[all...]
/freebsd-9.3-release/contrib/llvm/include/llvm-c/
H A DBitWriter.h38 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Basic/
H A DFileSystemStatCache.cpp16 #include "llvm/Support/Path.h"
52 bool FileSystemStatCache::get(const char *Path, FileData &Data, bool isFile, argument
59 R = Cache->getStat(Path, Data, isFile, FileDescriptor);
64 if (llvm::sys::fs::status(Path, Status)) {
78 llvm::error_code EC = llvm::sys::fs::openFileForRead(Path, *FileDescriptor);
120 MemorizeStatCalls::getStat(const char *Path, FileData &Data, bool isFile, argument
122 LookupResult Result = statChained(Path, Data, isFile, FileDescriptor);
132 if (!Data.IsDirectory || llvm::sys::path::is_absolute(Path))
133 StatCalls[Path] = Data;
H A DVersion.cpp93 std::string Path = getClangRepositoryPath(); local
95 if (!Path.empty() || !Revision.empty()) {
97 if (!Path.empty())
98 OS << Path; local
100 if (!Path.empty())
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DFileSystemStatCache.h62 static bool get(const char *Path, FileData &Data, bool isFile,
80 virtual LookupResult getStat(const char *Path, FileData &Data, bool isFile,
83 LookupResult statChained(const char *Path, FileData &Data, bool isFile, argument
86 return Next->getStat(Path, Data, isFile, FileDescriptor);
90 return get(Path, Data, isFile, FileDescriptor, 0) ? CacheMissing
109 virtual LookupResult getStat(const char *Path, FileData &Data, bool isFile,
/freebsd-9.3-release/contrib/llvm/lib/Bitcode/Writer/
H A DBitWriter.cpp19 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path) { argument
21 raw_fd_ostream OS(Path, ErrorInfo, sys::fs::F_Binary);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Tooling/
H A DFileMatchTrie.cpp17 #include "llvm/Support/Path.h"
57 if (Path.empty()) {
59 Path = NewPath;
63 // This is a leaf, ignore duplicate entry if 'Path' equals 'NewPath'.
64 if (NewPath == Path)
66 // Make this a node and create a child-leaf with 'Path'.
68 StringRef(Path).drop_back(ConsumedLength)));
69 Children[Element].Path = Path;
102 if (Comparator.equivalent(StringRef(Path), FileNam
154 std::string Path; member in class:clang::tooling::FileMatchTrieNode
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DHeaderSearchOptions.h48 std::string Path; member in struct:clang::HeaderSearchOptions::Entry
59 : Path(path), Group(group), IsFramework(isFramework),
150 /// AddPath - Add the \p Path path to the specified \p Group list.
151 void AddPath(StringRef Path, frontend::IncludeDirGroup Group, argument
153 UserEntries.push_back(Entry(Path, Group, IsFramework, IgnoreSysRoot));
/freebsd-9.3-release/sys/contrib/dev/acpica/utilities/
H A Duteval.c60 * Path - Path to object from starting node
77 char *Path,
98 Info->Pathname = Path;
108 AcpiUtGetNodeName (PrefixNode), Path));
113 PrefixNode, Path, Status);
126 PrefixNode, Path, AE_NOT_EXIST);
176 PrefixNode, Path, AE_TYPE);
180 Path, AcpiUtGetObjectTypeName (Info->ReturnObject),
75 AcpiUtEvaluateObject( ACPI_NAMESPACE_NODE *PrefixNode, char *Path, UINT32 ExpectedReturnBtypes, ACPI_OPERAND_OBJECT **ReturnDesc) argument
/freebsd-9.3-release/sys/contrib/dev/acpica/namespace/
H A Dnsaccess.c305 char *Path = Pathname; local
384 Path = "";
404 if (*Path == (UINT8) AML_ROOT_PREFIX)
413 Path++;
416 "Path is absolute from root [%p]\n", ThisNode));
432 while (*Path == (UINT8) AML_PARENT_PREFIX)
442 Path++;
480 switch (*Path)
504 Path++;
518 Path
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DCXXInheritance.cpp30 for (paths_iterator Path = begin(), PathEnd = end(); Path != PathEnd; ++Path)
31 Decls.insert(Path->Decls.front());
375 CXXBasePath &Path,
384 CXXBasePath &Path,
394 CXXBasePath &Path,
400 for (Path.Decls = BaseRecord->lookup(N);
401 !Path.Decls.empty();
402 Path
374 FindBaseClass(const CXXBaseSpecifier *Specifier, CXXBasePath &Path, void *BaseRecord) argument
383 FindVirtualBaseClass(const CXXBaseSpecifier *Specifier, CXXBasePath &Path, void *BaseRecord) argument
393 FindTagMember(const CXXBaseSpecifier *Specifier, CXXBasePath &Path, void *Name) argument
410 FindOrdinaryMember(const CXXBaseSpecifier *Specifier, CXXBasePath &Path, void *Name) argument
429 FindNestedNameSpecifierMember(const CXXBaseSpecifier *Specifier, CXXBasePath &Path, void *Name) argument
[all...]
H A DAPValue.cpp39 /// Path - The sequence of base classes, fields and array indices to follow to
43 LValuePathEntry Path[InlinePathSpace]; member in union:APValue::LV::__anon2975
63 LValuePathEntry *getPath() { return hasPathPtr() ? PathPtr : Path; }
65 return hasPathPtr() ? PathPtr : Path;
81 PathElem Path[InlinePathSpace]; member in union:APValue::MemberPointerData::__anon2977
100 PathElem *getPath() { return hasPathPtr() ? PathPtr : Path; }
102 return hasPathPtr() ? PathPtr : Path;
431 ArrayRef<LValuePathEntry> Path = getLValuePath(); local
433 for (unsigned I = 0, N = Path.size(); I != N; ++I) {
438 BaseOrMemberType::getFromOpaqueValue(Path[
589 setLValue(LValueBase B, const CharUnits &O, ArrayRef<LValuePathEntry> Path, bool IsOnePastTheEnd, unsigned CallIndex) argument
633 MakeMemberPointer(const ValueDecl *Member, bool IsDerivedMember, ArrayRef<const CXXRecordDecl*> Path) argument
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DMicrosoftVBTables.cpp34 /// Path is not really a full path like a CXXBasePath. It holds the subset of
37 llvm::SmallVector<const CXXRecordDecl *, 1> Path; member in struct:clang::CodeGen::VBTablePath
52 P->VBInfo.GV = getAddrOfVBTable(P->VBInfo.ReusingBase, P->Path);
116 assert(Paths[I]->Path != Paths[I - 1]->Path && "vbtable paths are not unique");
122 return LHS->Path < RHS->Path;
128 P->Path.push_back(P->NextBase);
150 } while (I != E && PathsSorted[BucketStart]->Path == PathsSorted[I]->Path);
[all...]
/freebsd-9.3-release/contrib/llvm/include/llvm/Support/
H A DFileSystem.h285 inline error_code create_directories(const Twine &Path) { argument
287 return create_directories(Path, Existed);
300 inline error_code create_directory(const Twine &Path) { argument
302 return create_directory(Path, Existed);
339 inline error_code remove(const Twine &Path) { argument
341 return remove(Path, Existed);
355 inline error_code remove_all(const Twine &Path) { argument
357 return remove_all(Path, Removed);
403 /// @param Path Input path.
405 bool can_execute(const Twine &Path);
460 is_directory(const Twine &Path) argument
482 is_regular_file(const Twine &Path) argument
539 file_size(const Twine &Path, uint64_t &Result) argument
793 std::string Path; member in class:llvm::sys::fs::directory_entry
[all...]
/freebsd-9.3-release/contrib/llvm/include/llvm/Transforms/Utils/
H A DSpecialCaseList.h61 /// Parses the special case list from a file. If Path is empty, returns
64 static SpecialCaseList *create(const StringRef Path, std::string &Error);
70 static SpecialCaseList *createOrDie(const StringRef Path);
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DIntervalMap.cpp19 void Path::replaceRoot(void *Root, unsigned Size, IdxPair Offsets) {
25 NodeRef Path::getLeftSibling(unsigned Level) const {
48 void Path::moveLeft(unsigned Level) {
75 NodeRef Path::getRightSibling(unsigned Level) const {
98 void Path::moveRight(unsigned Level) {
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Driver/
H A DToolChain.cpp359 const Twine &Path) {
361 CC1Args.push_back(DriverArgs.MakeArgString(Path));
374 const Twine &Path) {
376 CC1Args.push_back(DriverArgs.MakeArgString(Path));
381 const Twine &Path) {
382 if (llvm::sys::fs::exists(Path))
383 addExternCSystemInclude(DriverArgs, CC1Args, Path);
447 std::string Path = GetFilePath("crtfastmath.o"); local
448 if (Path == "crtfastmath.o") // Not found.
451 CmdArgs.push_back(Args.MakeArgString(Path));
357 addSystemInclude(const ArgList &DriverArgs, ArgStringList &CC1Args, const Twine &Path) argument
372 addExternCSystemInclude(const ArgList &DriverArgs, ArgStringList &CC1Args, const Twine &Path) argument
379 addExternCSystemIncludeIfExists(const ArgList &DriverArgs, ArgStringList &CC1Args, const Twine &Path) argument
[all...]
/freebsd-9.3-release/sys/contrib/dev/acpica/dispatcher/
H A Ddswload.c136 char *Path; local
165 Path = AcpiPsGetNextNamestring (&WalkState->ParserState);
183 Status = AcpiNsLookup (WalkState->ScopeInfo, Path, ObjectType,
193 AcpiDmAddToExternalList (Op, Path, ACPI_TYPE_DEVICE, 0);
194 Status = AcpiNsLookup (WalkState->ScopeInfo, Path, ObjectType,
201 ACPI_ERROR_NAMESPACE (Path, Status);
316 Status = AcpiNsLookup (WalkState->ScopeInfo, Path, ObjectType,
350 ACPI_ERROR_NAMESPACE (Path, Status);
373 Op->Named.Path = ACPI_CAST_PTR (UINT8, Path);
[all...]

Completed in 253 milliseconds

123456