Searched refs:hasSlash (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.0-release/contrib/llvm/lib/Archive/
H A DArchive.cpp106 bool hasSlash = path.str().find('/') != std::string::npos; local
107 if (hasSlash)
113 if (hasSlash || path.str().length() > 15)
H A DArchiveWriter.cpp180 bool hasSlash = filePath.str().find('/') != std::string::npos; local
181 if (hasSlash)
183 if (hasSlash || filePath.str().length() > 15)
/freebsd-10.0-release/usr.bin/make/
H A Ddir.c637 Boolean hasSlash; /* true if 'name' contains a / */ local
647 hasSlash = TRUE;
650 hasSlash = FALSE;
661 if ((!hasSlash || (cp - name == 2 && *name == '.')) &&
681 if (hasSlash) {
710 } else if (hasSlash) {
745 if (!hasSlash) {
/freebsd-10.0-release/contrib/bmake/
H A Ddir.c865 Boolean hasSlash MAKE_ATTR_UNUSED)
1008 DirFindDot(Boolean hasSlash MAKE_ATTR_UNUSED, const char *name, const char *cp)
1062 Boolean hasSlash; /* true if 'name' contains a / */ local
1073 hasSlash = TRUE;
1076 hasSlash = FALSE;
1109 if (!hasSlash || (cp - name == 2 && *name == '.')) {
1125 (file = DirFindDot(hasSlash, name, cp)) != NULL) {
1134 if ((file = DirLookup(p, name, cp, hasSlash)) != NULL) {
1141 (file = DirFindDot(hasSlash, name, cp)) != NULL) {
1162 if (!hasSlash) {
[all...]

Completed in 214 milliseconds