Searched refs:slash (Results 51 - 75 of 153) sorted by relevance

1234567

/macosx-10.10/file_cmds-242/pax/
H A Doptions.c1066 char *slash; local
1069 slash = path;
1072 slash += strspn(slash, "/");
1073 slash += strcspn(slash, "/");
1075 done = (*slash == '\0');
1076 *slash = '\0';
1089 *slash = '/';
/macosx-10.10/llvmCore-3425.0.34/lib/Archive/
H A DArchiveReader.cpp199 const char* slash = (const char*) memchr(Hdr->name, '/', 16); local
200 if (slash == 0)
201 slash = Hdr->name + 16;
202 pathname.assign(Hdr->name, slash - Hdr->name);
/macosx-10.10/postfix-255/postfix/src/postalias/
H A Dpostalias.c668 char *slash; local
709 if ((slash = strrchr(argv[0], '/')) != 0 && slash[1])
710 argv[0] = slash + 1;
/macosx-10.10/emacs-93/emacs/lisp/textmodes/
H A Dtex-mode.el470 (slash "\\\\")
488 (list (concat slash headings "\\*?" opt arg)
502 (list (concat slash "\\(?:provide\\|\\(?:re\\)?new\\)command\\** *\\(\\\\[A-Za-z@]+\\)")
505 (list (concat slash variables " *" arg) 2 'font-lock-variable-name-face)
507 (list (concat slash includes opt arg) 3 'font-lock-builtin-face)
548 (slash "\\\\")
555 (list (concat slash citations opt arg) 3 'font-lock-constant-face)
564 (cons (concat slash specials-1) 'font-lock-warning-face)
565 (list (concat "\\(" slash specials-2 "\\)\\([^a-zA-Z@]\\|\\'\\)")
567 (concat slash genera
[all...]
/macosx-10.10/libarchive-30/libarchive/libarchive/
H A Darchive_write_disk.c1668 char *slash; local
1672 slash = strrchr(path, '/');
1673 if (slash == NULL)
1675 *slash = '\0';
1677 *slash = '/';
1693 char *slash, *base; local
1698 slash = strrchr(path, '/');
1699 if (slash == NULL)
1702 base = slash + 1;
1708 if (slash !
[all...]
/macosx-10.10/groff-38/groff/font/devdvi/
H A DTB22 slash@for@l l -334960
23 slash@for@l L -396128
241 slash@for@l 334960,466034 0 0040
H A DTR23 slash@for@l l -291272
24 slash@for@l L -334963
309 slash@for@l 291272,451470 0 0040
/macosx-10.10/groff-38/groff/font/devps/
H A Dtext.enc30 slash 47
/macosx-10.10/vim-55/runtime/keymap/
H A Dhebrew_cp1255.vim24 q / " / - slash
/macosx-10.10/bless-103/
H A Dfirmwaresyncd.c533 char *slash; local
640 slash = espfontpath + strlen(mntpath);
641 while (strsep(&slash, "/")) {
648 if (slash == NULL) {
651 *(slash - 1) = '/';
/macosx-10.10/gnutar-453/gnutar/src/
H A Dnames.c560 1) P ended with a slash (i.e. it was a directory)
923 NAME, with an intervening slash if FILE_NAME does not already end in one. */ local
929 int slash = file_name_len && ! ISSLASH (file_name[file_name_len - 1]);
930 char *buffer = xmalloc (file_name_len + slash + namesize);
933 memcpy (buffer + file_name_len + slash, name, namesize);
1000 bool slash = ISSLASH (*p);
1002 if (slash)
991 bool slash = ISSLASH (*p); local
/macosx-10.10/gpatch-3/patch/
H A Dutil.c838 char *slash = f; local
840 /* Treat multiple slashes as if they were one slash. */
849 if (! (slash - component_start <= 2
850 && component_start[0] == '.' && slash[-1] == '.'))
852 *slash = '\0';
853 last_location_replaced = slash;
/macosx-10.10/remote_cmds-47/telnetd.tproj/
H A Dutility.c421 char *slash; local
447 slash = strchr(line+1, '/');
449 slash = strrchr(line, '/');
451 if (slash == (char *) 0)
454 putstr(&slash[1]);
/macosx-10.10/tcsh-65/tcsh/
H A Dsh.exec.c154 int slash, gflag; local
190 slash = any(short2str(expath), '/');
255 if (v == NULL || v->vec == NULL || v->vec[0] == NULL || slash)
278 if (!slash && ABSOLUTEP(pv[0]) && havhash) {
807 int slash = any(short2str(name), '/'); local
811 if (v == NULL || v->vec == NULL || v->vec[0] == NULL || slash)
819 if (!slash && ABSOLUTEP(pv[0]) && havhash) {
991 int slash = any(short2str(sp->word), '/'); local
994 if (v == NULL || v->vec == NULL || v->vec[0] == NULL || slash)
1001 if (!slash) {
[all...]
H A Dsh.dir.c384 * If the path starts with a slash, we are not relative to
433 * Only append another slash, if already the former cwd
434 * was in a double-slash path.
874 int slash; local
889 * christos: if the path given does not start with a slash prepend cwd. If
890 * cwd does not start with a slash or the result would be too long try to
923 sp = p; /* save slash address */
930 slash = 0;
932 while (*++p) /* find next slash or end of path */
934 slash
[all...]
/macosx-10.10/webdavfs-367/WebDAVPlugin/
H A DWebDAV_Mount.c174 /* skip over slash characters to find firstChar */
190 /* skip over slash characters to find firstChar */
193 /* skip over non-slash characters */
243 char *slash; local
267 path = malloc(length + 2); /* one extra for slash if needed */
275 /* add a trailing slash if needed */
280 /* find the first colon (if any) and the first slash */
282 slash = strchr(path, '/');
285 if ( (colon == NULL) || (colon > slash) ) {
286 /* if no colon, or the colon is after the slash,
369 char *slash; local
[all...]
/macosx-10.10/Security-57031.1.35/securityd/src/
H A Dcodesigdb.cpp131 string::size_type slash = path.rfind('/'); local
132 if (slash == string::npos) // bloody unlikely, but whatever...
134 return path.substr(slash+1);
/macosx-10.10/apache-793/httpd/modules/aaa/
H A Dmod_authn_socache.c255 char *slash = strrchr(r->uri, '/'); local
256 new_context = apr_palloc(r->pool, slash - r->uri +
259 strncat(new_context, r->uri, slash - r->uri);
/macosx-10.10/Heimdal-398.1.2/appl/telnet/telnetd/
H A Dutility.c443 char *slash; local
471 slash = strchr(line+1, '/');
472 if (slash == (char *) 0)
475 putstr(&slash[1]);
/macosx-10.10/Heimdal-398.1.2/lib/kadm5/
H A Dinit_c.c434 char *hostname, *slash; local
445 slash = strchr (hostname, '/');
446 if (slash != NULL)
447 hostname = slash + 1;
/macosx-10.10/postfix-255/postfix/src/postmap/
H A Dpostmap.c782 char *slash; local
823 if ((slash = strrchr(argv[0], '/')) != 0 && slash[1])
824 argv[0] = slash + 1;
/macosx-10.10/postfix-255/postfix/src/postsuper/
H A Dpostsuper.c1067 char *slash; local
1135 if ((slash = strrchr(argv[0], '/')) != 0 && slash[1])
1136 argv[0] = slash + 1;
/macosx-10.10/system_cmds-643.1.1/getty.tproj/
H A Dmain.c779 char *slash, db[100]; local
794 slash = strrchr(ttyn, '/');
795 if (slash == (char *) 0)
798 puts(&slash[1]);
/macosx-10.10/Security-57031.1.35/Security/include/security_filedb/
H A DAtomicFile.cpp214 std::string::size_type slash, len = inFull.size(); local
215 slash = inFull.rfind('/');
216 if (slash == std::string::npos)
221 else if (slash + 1 == len)
228 outDir = inFull.substr(0, slash + 1);
229 outFile = inFull.substr(slash + 1, len);
234 // Make sure the directory up to inDir exists inDir *must* end in a slash.
/macosx-10.10/Security-57031.1.35/Security/libsecurity_filedb/lib/
H A DAtomicFile.cpp214 std::string::size_type slash, len = inFull.size(); local
215 slash = inFull.rfind('/');
216 if (slash == std::string::npos)
221 else if (slash + 1 == len)
228 outDir = inFull.substr(0, slash + 1);
229 outFile = inFull.substr(slash + 1, len);
234 // Make sure the directory up to inDir exists inDir *must* end in a slash.

Completed in 329 milliseconds

1234567