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

123

/freebsd-12-stable/contrib/openpam/lib/libpam/
H A Dopenpam_readword.c58 int ch, escape, quote; local
64 escape = quote = 0;
68 if (!escape)
72 escape = 0;
73 } else if (escape) {
83 escape = 1;
96 while ((ch = fgetc(f)) != EOF && (!is_ws(ch) || quote || escape)) {
97 if (ch == '\\' && !escape && quote != '\'') {
98 /* escape next character */
99 escape
[all...]
/freebsd-12-stable/lib/libiconv_modules/HZ/
H A Dcitrus_hz.c88 escape_t *escape; member in struct:__anon8642
102 #define GL(escape) ((escape)->left)
103 #define GR(escape) ((escape)->right)
104 #define SET(escape) ((escape)->set)
105 #define ESC(escape) ((escape)->ch)
106 #define INIT(escape) (TAILQ_FIRS
111 escape_t *escape; local
493 escape_t *escape; local
496 TAILQ_REMOVE(E0SET(ei), escape, entry); local
502 TAILQ_REMOVE(E1SET(ei), escape, entry); local
512 escape_t *escape; local
530 escape_t *escape; local
598 escape_t *escape; local
607 TAILQ_INSERT_TAIL(E0SET(ei), escape, entry); local
610 TAILQ_INSERT_TAIL(E1SET(ei), escape, entry); local
[all...]
/freebsd-12-stable/contrib/apr/strings/
H A Dapr_fnmatch.c78 const int escape = !(flags & APR_FNM_NOESCAPE); local
106 if (escape && (**pattern == '\\')) {
126 *pattern += (escape && ((*pattern)[2] == '\\')) ? 3 : 2;
171 else if (escape && (**pattern == '\\') && (*pattern)[1]) {
197 const int escape = !(flags & APR_FNM_NOESCAPE); local
218 if (slash && escape && (*pattern == '\\') && (pattern[1] == '/'))
232 else if (escape && (*pattern == '\\') && (pattern[1] == '.'))
261 || (escape && (*pattern == '\\')
294 || (escape && (*matchptr == '\\')
323 * Use a dummy fnmatch_ch() test to count one "[range]" escape
[all...]
/freebsd-12-stable/contrib/netbsd-tests/usr.bin/make/
H A Dt_make.sh37 escape) atf_expect_fail "see PR toolchain/49085";;
/freebsd-12-stable/contrib/gcc/config/
H A Delfos.h348 octal escape. If the tables value is anything else, then the
350 in the table. Note that we can use standard UN*X escape
371 count each character in an escape sequence as one byte. Thus, an
372 escape sequence like \377 would count as four bytes.
400 register int escape; \
402 switch (escape = ESCAPES[ch]) \
412 putc (escape, (FILE)); \
470 register int escape; \
476 switch (escape = ESCAPES[ch = *_ascii_bytes]) \
488 putc (escape, (FIL
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageViewHTML.cpp26 std::string escape(StringRef Str, const CoverageViewOptions &Opts) { function in namespace:__anon5825
271 << escape(PathToStyle, Opts) << "'>";
326 std::string LinkText = escape(LinkTextStr, Opts);
328 escape(getOutputPath(SF, "html", /*InToplevel=*/false), Opts);
412 OSRef << tag(ProjectTitleTag, escape(Opts.ProjectTitle, Opts));
415 OSRef << tag(CreatedTimeTag, escape(Opts.CreatedTimeStr, Opts));
457 OSRef << tag("h5", escape(Opts.getLLVMVersionString(), Opts));
472 OS << BeginSourceNameDiv << tag("pre", escape(getSourceName(), getOptions()))
525 Snippets[I] = escape(Snippets[I], getOptions());
661 escape("Unexecute
[all...]
/freebsd-12-stable/contrib/gcc/config/i386/
H A Di386-interix.h106 octal escape. If the tables value is anything else, then the
108 in the table. Note that we can use standard UN*X escape
129 count each character in an escape sequence as one byte. Thus, an
130 escape sequence like \377 would count as four bytes.
156 int escape = ESCAPES[ch]; \
157 switch (escape) \
167 putc (escape, (FILE)); \
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DRegex.h101 static std::string escape(StringRef String);
/freebsd-12-stable/usr.bin/hexdump/
H A Dhexdump.h97 void escape(char *);
/freebsd-12-stable/contrib/gdb/gdb/
H A Dc-lang.c47 const char *escape; local
52 escape = c_target_char_has_backslash_escape (c);
53 if (escape)
55 if (quoter == '"' && strcmp (escape, "0") == 0)
60 fprintf_filtered (stream, "\\%s", escape);
/freebsd-12-stable/usr.bin/dc/
H A Dinout.c269 bool escape; local
271 escape = false;
278 if (!escape) {
286 if (ch == '\\' && !escape)
287 escape = true;
289 escape = false;
/freebsd-12-stable/contrib/subversion/subversion/include/private/
H A Dsvn_utf_private.h235 const char *escape, apr_size_t escape_len,
/freebsd-12-stable/usr.bin/printf/
H A Dprintf.c89 static int escape(char *, int, size_t *);
153 escape(fmt, 1, &len); /* backslash interpretation */
385 getout = escape(p, 0, &len);
476 escape(char *fmt, int percent, size_t *len) function
/freebsd-12-stable/usr.bin/svn/svnserve/
H A DMakefile12 log-escape.c \
/freebsd-12-stable/usr.bin/mail/
H A Dcollect.c78 int lc, cc, escape, eofcount, fd, c, t; local
130 if ((cp = value("escape")) != NULL)
131 escape = *cp;
133 escape = ESCAPE;
177 if (linebuf[0] != escape || value("interactive") == NULL ||
187 * On double escape, just send the single one.
190 if (c == escape) {
196 printf("Unknown tilde escape.\n");
206 * Shell escape, send the balance of the
/freebsd-12-stable/contrib/bmake/unit-tests/
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 Descape.mk1 # $Id: escape.mk,v 1.1.1.3 2020/01/22 01:07:14 sjg 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
137 # First two should be taken literally, and last should escape the newline.
/freebsd-12-stable/crypto/heimdal/appl/telnet/telnet/
H A Dmain.c216 rlogin = escape = _POSIX_VDISABLE;
/freebsd-12-stable/contrib/subversion/subversion/libsvn_subr/
H A Dutf8proc.c325 const char *escape, apr_size_t escape_len,
334 /* If we're in GLOB mode, we don't do custom escape chars. */
335 if (escape && !sql_like)
337 _("Cannot use a custom escape token"
354 if (!escape)
361 utf8proc_decompose((const void*) escape, escape_len, &ucs4esc, 1,
371 _("Invalid escape character U+%04lX"),
320 svn_utf__glob(svn_boolean_t *match, const char *pattern, apr_size_t pattern_len, const char *string, apr_size_t string_len, const char *escape, apr_size_t escape_len, svn_boolean_t sql_like, svn_membuf_t *pattern_buf, svn_membuf_t *string_buf, svn_membuf_t *temp_buf) argument
/freebsd-12-stable/lib/libiconv_modules/VIQR/
H A Dcitrus_viqr.c264 int ch, escape; local
275 for (escape = 0;;) {
288 escape = 1;
291 if (escape != 0)
/freebsd-12-stable/stand/lua/
H A Dcolor.lua90 function color.escape(fg_color, bg_color, attribute)
107 return color.escape(color.DEFAULT, color.DEFAULT)
/freebsd-12-stable/usr.sbin/sysrc/
H A Dsysrc216 # escape $string [$var_to_set]
221 # NB: See `bsdconfig includes -dF escape' for relevant information/discussion.
224 escape()
518 escape "$SERVICE" _SERVICE
523 escape "$RC_CONFS" _RC_CONFS
528 escape "$arg" arg
/freebsd-12-stable/usr.bin/tip/tip/
H A Dtip.c66 static int escape(void);
411 gch = escape();
450 escape(void) function
/freebsd-12-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectType.cpp1072 bool escape = true;
1074 escape = false;
1076 escape = false;
1079 if (escape)
1094 bool escape = true;
1096 escape = false;
1098 escape = false;
1101 if (escape)
1126 bool escape = true;
1128 escape
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DRegex.cpp146 // Skip to the next escape.
215 std::string Regex::escape(StringRef String) { function in class:Regex

Completed in 340 milliseconds

123