Searched refs:escape (Results 1 - 25 of 79) sorted by relevance

1234

/freebsd-current/contrib/openpam/lib/libpam/
H A Dopenpam_readword.c56 int ch, escape, quote; local
62 escape = quote = 0;
66 if (!escape)
70 escape = 0;
71 } else if (escape) {
81 escape = 1;
94 while ((ch = fgetc(f)) != EOF && (!is_ws(ch) || quote || escape)) {
95 if (ch == '\\' && !escape && quote != '\'') {
96 /* escape next character */
97 escape
[all...]
/freebsd-current/lib/libiconv_modules/HZ/
H A Dcitrus_hz.c87 escape_t *escape; member in struct:__anon309
101 #define GL(escape) ((escape)->left)
102 #define GR(escape) ((escape)->right)
103 #define SET(escape) ((escape)->set)
104 #define ESC(escape) ((escape)->ch)
105 #define INIT(escape) (TAILQ_FIRS
110 escape_t *escape; local
492 escape_t *escape; local
495 TAILQ_REMOVE(E0SET(ei), escape, entry); local
501 TAILQ_REMOVE(E1SET(ei), escape, entry); local
511 escape_t *escape; local
529 escape_t *escape; local
597 escape_t *escape; local
606 TAILQ_INSERT_TAIL(E0SET(ei), escape, entry); local
609 TAILQ_INSERT_TAIL(E1SET(ei), escape, entry); local
[all...]
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dfnmatch.c153 const int escape = !(flags & FNM_NOESCAPE); local
179 if (escape && (**pattern == '\\')) {
213 *pattern += (escape && ((*pattern)[2] == '\\')) ? 3 : 2;
264 } else if (escape && (**pattern == '\\') && (*pattern)[1]) {
292 const int escape = !(flags & FNM_NOESCAPE); local
312 if (slash && escape && (*pattern == '\\') && (pattern[1] == '/'))
327 else if (escape && (*pattern == '\\') && (pattern[1] == '.'))
356 (escape && (*pattern == '\\') && (pattern[1] == '/'))))
386 (escape && (*matchptr == '\\') &&
423 * "[range]" escape
[all...]
/freebsd-current/contrib/bmake/unit-tests/
H A Dvarmod.exp1 make: "varmod.mk" line 101: To escape a dollar, use \$, not $$, at "$$:L} != """
H A Ddirective-for-escape.exp5 make: "directive-for-escape.mk" line 19: !"
10 make: "directive-for-escape.mk" line 30: !"\\
14 make: "directive-for-escape.mk" line 45: $
17 make: "directive-for-escape.mk" line 45: value
20 make: "directive-for-escape.mk" line 45: value-with-modifier
23 make: "directive-for-escape.mk" line 45: value
26 make: "directive-for-escape.mk" line 45: value-with-modifier
30 make: "directive-for-escape.mk" line 60: $
33 make: "directive-for-escape.mk" line 60: value
36 make: "directive-for-escape
[all...]
H A Descape.mk1 # $NetBSD: escape.mk,v 1.15 2023/10/19 18:24:33 rillig Exp $
40 # does not escape the newline. This is compatible with GNU make.
79 VAR2BSc= 222\\# backslash does not escape comment char, so this is a comment
138 # First two should be taken literally, and last should escape the newline.
H A Dvarmod-edge.mk79 # The first backslash does not escape the second backslash.
84 # If the first backslash were to escape the second backslash, the first
87 # After that, the remaining backslash would escape the parenthesis in
93 #EXP.M-bsbs= (} # If the first backslash were to escape ...
95 # The backslash in \( does not escape the parenthesis, therefore it
H A Ddeptgt-makeflags.mk31 # quotes and escape sequences from the backslash.
84 # Now do the same for the other escape sequences; see Substring_Words.
H A Dvarmod-match-escape.mk1 # $NetBSD: varmod-match-escape.mk,v 1.13 2024/04/20 10:18:55 rillig Exp $
116 # Outside brackets, it is an escape character for a few special characters.
/freebsd-current/contrib/netbsd-tests/usr.bin/make/
H A Dt_make.sh37 escape) atf_expect_fail "see PR toolchain/49085";;
/freebsd-current/contrib/kyua/utils/format/
H A Dformatter_test.cpp127 ATF_TEST_CASE_WITHOUT_HEAD(escape); variable
128 ATF_TEST_CASE_BODY(escape)
255 ATF_ADD_TEST_CASE(tcs, escape);
/freebsd-current/contrib/llvm-project/lldb/source/DataFormatters/
H A DStringPrinter.cpp164 lldbassert(escaped_len > 0 && "unknown string escape style");
211 lldbassert(escaped_len > 0 && "unknown string escape style");
/freebsd-current/usr.bin/hexdump/
H A Dhexdump.h95 void escape(char *);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DRegex.h106 static std::string escape(StringRef String);
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageViewHTML.cpp27 std::string escape(StringRef Str, const CoverageViewOptions &Opts) { function in namespace:__anon3057
306 << escape(PathToStyle, Opts) << "'>";
422 std::string LinkText = escape(LinkTextStr, Opts);
424 escape(getOutputPath(SF, "html", /*InToplevel=*/false), Opts);
443 OSRef << tag(ProjectTitleTag, escape(Opts.ProjectTitle, Opts));
446 OSRef << tag(CreatedTimeTag, escape(Opts.CreatedTimeStr, Opts));
525 OSRef << tag("h5", escape(Opts.getLLVMVersionString(), Opts));
604 OSRef << tag("h5", escape(Options.getLLVMVersionString(), Options));
678 auto LinkText = escape(LinkTextStr, Options);
679 auto LinkTarget = escape(LinkTargetSt
[all...]
/freebsd-current/usr.bin/dc/
H A Dinout.c267 bool escape; local
269 escape = false;
276 if (!escape) {
284 if (ch == '\\' && !escape)
285 escape = true;
287 escape = false;
/freebsd-current/usr.sbin/bsdinstall/partedit/
H A Ddiskmenu.c65 conf.text.escape = true;
/freebsd-current/usr.bin/printf/
H A Dprintf.c73 static int escape(char *, int, size_t *);
137 escape(fmt, 1, &len); /* backslash interpretation */
369 getout = escape(p, 0, &len);
460 escape(char *fmt, int percent, size_t *len) function
/freebsd-current/usr.bin/mail/
H A Dcollect.c70 int lc, cc, escape, eofcount, fd, c, t; local
122 if ((cp = value("escape")) != NULL)
123 escape = *cp;
125 escape = ESCAPE;
169 if (linebuf[0] != escape || value("interactive") == NULL ||
179 * On double escape, just send the single one.
182 if (c == escape) {
188 printf("Unknown tilde escape.\n");
198 * Shell escape, send the balance of the
/freebsd-current/crypto/heimdal/appl/telnet/telnet/
H A Dmain.c216 rlogin = escape = _POSIX_VDISABLE;
/freebsd-current/lib/libiconv_modules/VIQR/
H A Dcitrus_viqr.c263 int ch, escape; local
274 for (escape = 0;;) {
287 escape = 1;
290 if (escape != 0)
/freebsd-current/stand/lua/
H A Dcolor.lua88 function color.escape(fg_color, bg_color, attribute)
105 return color.escape(color.DEFAULT, color.DEFAULT)
/freebsd-current/usr.sbin/sysrc/
H A Dsysrc215 # escape $string [$var_to_set]
220 # NB: See `bsdconfig includes -dF escape' for relevant information/discussion.
223 escape()
517 escape "$SERVICE" _SERVICE
522 escape "$RC_CONFS" _RC_CONFS
527 escape "$arg" arg
/freebsd-current/usr.bin/tip/tip/
H A Dtip.c50 static int escape(void);
395 gch = escape();
434 escape(void) function
/freebsd-current/contrib/telnet/telnet/
H A Dmain.c173 rlogin = escape = _POSIX_VDISABLE;

Completed in 598 milliseconds

1234