Searched refs:backslash (Results 1 - 25 of 36) sorted by relevance

12

/netbsd-6-1-5-RELEASE/sys/arch/ia64/stand/common/
H A Dinterp_backslash.c16 * Routine for doing backslash elimination.
31 * backslash: Return malloc'd copy of str with all standard "backslash
35 backslash(char *str) function
165 * The final character was a '\'. Put it in as a single backslash.
H A Dbootstrap.h65 char *backslash(char *str);
/netbsd-6-1-5-RELEASE/bin/sh/
H A Dshow.c332 case '\n': c = 'n'; goto backslash;
333 case '\t': c = 't'; goto backslash;
334 case '\r': c = 'r'; goto backslash;
335 case '"': c = '"'; goto backslash;
336 case '\\': c = '\\'; goto backslash;
337 case CTLESC: c = 'e'; goto backslash;
338 case CTLVAR: c = 'v'; goto backslash;
339 case CTLVAR+CTLQUOTE: c = 'V'; goto backslash;
340 case CTLBACKQ: c = 'q'; goto backslash;
341 case CTLBACKQ+CTLQUOTE: c = 'Q'; goto backslash;
[all...]
H A Dmkinit.sh36 backslash='\'
92 [ "$line" = "${line%$backslash}" ] || continue
/netbsd-6-1-5-RELEASE/gnu/dist/gmake/
H A Dmisc.c75 /* Discard each backslash-newline combination from LINE.
76 Backslash-backslash-newline combinations become backslash-newlines.
84 register int backslash;
100 backslash = 0;
104 if (backslash)
106 backslash = !backslash;
123 if (backslash)
505 register int backslash
83 register int backslash; local
498 register int backslash = 0; local
[all...]
H A Dcommands.c284 int backslash = 1;
287 backslash = !backslash;
288 if (backslash)
282 int backslash = 1; local
H A Dread.c1098 register int backslash = 0;
1100 backslash = !backslash;
1101 if (backslash)
2146 Backslashes quote STOPCHAR, blanks if BLANK is nonzero, and backslash.
2200 /* The STOPCHAR was quoted by a backslash. Look for another. */
2203 /* No backslash in sight. */
2280 first colon which isn't followed by a slash or a backslash.
2493 next logical line (taking into account backslash/newline pairs). */
2499 int backslash
1095 register int backslash = 0; local
2488 int backslash = 0; local
2534 int backslash; local
[all...]
H A Djob.c1241 /* make UNC paths safe for CreateProcess -- backslash format */
1375 /* Collapse backslash-newline combinations that are inside variable
1386 When we collapse a backslash-newline combination,
1421 /* We have found a backslash-newline inside a
1438 /* Skip the backslash, newline and
2403 when no backslash, $ or ` characters are seen in the quotes. Starting
2404 quotes may be escaped with a backslash. If any of the characters in
2598 or a backslash-newline combination. */
2651 /* Eat the backslash, the newline, and following whitespace,
2655 /* If there is a tab after a backslash
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/tr/
H A Dstr.c52 static int backslash(STR *);
76 s->lastch = backslash(s);
208 s->equiv[0] = backslash(s);
229 stopval = *++s->str == '\\' ? backslash(s) : *s->str++;
249 s->lastch = backslash(s);
257 s->cnt = backslash(s);
283 backslash(STR *s) function
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/tests/
H A Dxgettext-csharp-318 // Two backslashes (unlike in Java, where this is just one backslash).
20 // A 6-character string (unlike in Java, where this is just one backslash).
22 // A single backslash.
101 #. Two backslashes (unlike in Java, where this is just one backslash).
106 #. A 6-character string (unlike in Java, where this is just one backslash).
112 #. A single backslash.
H A Dxgettext-java-227 // Various ways to write a backslash are equivalent.
36 gettext ("bel: \7\nnewline: \12backslash: \134\ndquote-zero: \420\n");
123 #. Various ways to write a backslash are equivalent.
140 "backslash: \\\n"
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/win32/
H A Dfile.c612 char *backslash; local
616 backslash = strrchr(path, '\\');
617 if ((slash != NULL && backslash != NULL && backslash > slash) ||
618 (slash == NULL && backslash != NULL))
619 slash = backslash;
/netbsd-6-1-5-RELEASE/usr.sbin/makemandb/
H A Dmakemandb.c1981 const char *backslash, *last_backslash; local
1988 backslash = strchr(str, '\\');
1989 if (backslash == NULL) {
1999 len = backslash - last_backslash;
2002 if (backslash[1] == '-' || backslash[1] == ' ') {
2003 *iter++ = backslash[1];
2004 last_backslash = backslash + 2;
2005 backslash = strchr(backslash
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/xargs/
H A Dxargs.c400 errx(1, "backslash at EOF");
/netbsd-6-1-5-RELEASE/gnu/dist/grep/src/
H A Ddfa.c717 int backslash = 0, invert; local
721 /* Basic plan: We fetch a character. If it's a backslash,
722 we set the backslash flag and go through the loop again.
724 main switch inside the backslash case. On the minus side,
726 "if (backslash) ...". */
735 but they must not be backslash. */
741 if (backslash)
745 backslash = 1;
749 if (backslash)
759 if (backslash)
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/libgrep/
H A Ddfa.c691 int backslash = 0, invert; local
695 /* Basic plan: We fetch a character. If it's a backslash,
696 we set the backslash flag and go through the loop again.
698 main switch inside the backslash case. On the minus side,
700 "if (backslash) ...". */
709 but they must not be backslash. */
715 if (backslash)
719 backslash = 1;
723 if (backslash)
733 if (backslash)
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/amd/
H A Dopts.c313 * expand backslash escape sequences
317 backslash(char **p) function
322 plog(XLOG_USER, "Empty backslash escape");
411 *dp++ = backslash(&cp);
1014 f++; /* skip backslash */
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/binutils/
H A Dieee.c4828 const char *backslash;
4842 backslash = strrchr (filename, '\\');
4843 if (modname == NULL || (backslash != NULL && backslash > modname))
4844 modname = backslash;
5097 const char *backslash;
5105 backslash = strrchr (filename, '\\');
5106 if (modname == NULL || (backslash != NULL && backslash > modname))
5107 modname = backslash;
4824 const char *backslash; local
5093 const char *backslash; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/arm/
H A Dneon-gen.ml41 (one line, remove the backslash.)
/netbsd-6-1-5-RELEASE/external/bsd/flex/dist/doc/
H A Dtexinfo.tex1066 \def\mathbackslash{\ifnum\fam=\ttfam \mathchar"075C \else\backslash \fi}
3221 \escapechar = `\\ % use backslash in output files.
3513 % so it will be output as is; and it will print as backslash.
5644 % backslash to get it printed correctly. Previously, we had
5752 % \\ in macro replacement text gets you a backslash.
7122 % \backslashcurfont outputs one backslash character in current font,
7139 % \normalbackslash outputs one backslash in fixed width font.
7172 % a backslash.
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/ld/
H A Dldlang.c121 wildcards, we do not consider the mere presence of a backslash to
7512 return a pointer to the symbol name with any backslash quotes removed. */
7518 bfd_boolean changed = FALSE, backslash = FALSE;
7524 backslash. */
7525 if (backslash)
7527 /* Remove the preceding backslash. */
7529 backslash = FALSE;
7541 backslash = *p == '\\';
7514 bfd_boolean changed = FALSE, backslash = FALSE; local
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/doc/include/
H A Dtexinfo.tex313 \escapechar = `\\ % use backslash in output files.
1069 \def\mathbackslash{\ifnum\fam=\ttfam \mathchar"075C \else\backslash \fi}
3529 % so it will be output as is; and it will print as backslash.
5658 % backslash to get it printed correctly. Previously, we had
5755 % \\ in macro replacement text gets you a backslash.
7147 % \backslashcurfont outputs one backslash character in current font,
7164 % \normalbackslash outputs one backslash in fixed width font.
7197 % a backslash.
/netbsd-6-1-5-RELEASE/gnu/dist/texinfo/doc/
H A Dtexinfo.tex305 \escapechar = `\\ % use backslash in output files.
1046 \def\mathbackslash{\ifnum\fam=\ttfam \mathchar"075C \else\backslash \fi}
3427 % so it will be output as is; and it will print as backslash.
5534 % backslash to get it printed correctly. Previously, we had
5631 % \\ in macro replacement text gets you a backslash.
6999 % \backslashcurfont outputs one backslash character in current font,
7015 % \normalbackslash outputs one backslash in fixed width font.
7048 % a backslash.
/netbsd-6-1-5-RELEASE/gnu/dist/gmake/config/
H A Dtexinfo.tex225 \escapechar = `\\ % use backslash in output files.
868 \def\mathbackslash{\ifnum\fam=\ttfam \mathchar"075C \else\backslash \fi}
2999 % so it will be output as is; and it will print as backslash.
5270 % \\ in macro replacement text gets you a backslash.
5610 % and backslash work in node names. (\turnoffactive doesn't do \.)
6260 % \rawbackslashxx output one backslash character in current font
6269 % \normalbackslash outputs one backslash in fixed width font.
6305 % a backslash.
/netbsd-6-1-5-RELEASE/gnu/dist/groff/doc/
H A Dtexinfo.tex305 \escapechar = `\\ % use backslash in output files.
1046 \def\mathbackslash{\ifnum\fam=\ttfam \mathchar"075C \else\backslash \fi}
3427 % so it will be output as is; and it will print as backslash.
5534 % backslash to get it printed correctly. Previously, we had
5631 % \\ in macro replacement text gets you a backslash.
6999 % \backslashcurfont outputs one backslash character in current font,
7015 % \normalbackslash outputs one backslash in fixed width font.
7048 % a backslash.

Completed in 324 milliseconds

12