Home
last modified time | relevance | path

Searched refs:escape (Results 1 – 25 of 203) sorted by relevance

123456789

/freebsd/contrib/openpam/lib/libpam/
H A Dopenpam_readword.c56 int ch, escape, quote; in openpam_readword() local
62 escape = quote = 0; in openpam_readword()
66 if (!escape) in openpam_readword()
70 escape = 0; in openpam_readword()
71 } else if (escape) { in openpam_readword()
81 escape = 1; in openpam_readword()
94 while ((ch = fgetc(f)) != EOF && (!is_ws(ch) || quote || escape)) { in openpam_readword()
95 if (ch == '\\' && !escape && quote != '\'') { in openpam_readword()
97 escape = ch; in openpam_readword()
98 } else if ((ch == '\'' || ch == '"') && !quote && !escape) { in openpam_readword()
[all …]
/freebsd/lib/libiconv_modules/HZ/
H A Dcitrus_hz.c87 escape_t *escape; member
101 #define GL(escape) ((escape)->left) argument
102 #define GR(escape) ((escape)->right) argument
103 #define SET(escape) ((escape)->set) argument
104 #define ESC(escape) ((escape)->ch) argument
105 #define INIT(escape) (TAILQ_FIRST(SET(escape))) argument
110 escape_t *escape; in find_escape() local
112 TAILQ_FOREACH(escape, set, entry) { in find_escape()
113 if (ESC(escape) == ch) in find_escape()
117 return (escape); in find_escape()
[all …]
/freebsd/contrib/libucl/tests/basic/
H A Dload.in4 .load(try=false, multiline=false, trim=false, escape=false, key="key1", target="string", priority=1…
5 .load(try=false, multiline=true, trim=false, escape=false, key="key2", target="string", priority=1)…
6 .load(try=false, multiline=true, trim=true, escape=false, key="key3", target="string", priority=1) …
7 .load(try=false, multiline=true, trim=true, escape=true, key="key4", target="string", priority=1) "…
8 .load(try=false, multiline=false, trim=true, escape=false, key="key5", target="string", priority=1)…
9 .load(try=false, multiline=false, trim=false, escape=true, key="key6", target="string", priority=1)…
10 .load(try=false, multiline=false, trim=true, escape=true, key="key7", target="string", priority=1) …
11 .load(try=false, multiline=false, trim=false, escape=false, key="key8", target="int", priority=1) "…
12 .load(try=false, multiline=false, trim=false, escape=false, key="key9", target="int", priority=4) "…
13 .load(try=true, multiline=false, trim=false, escape=false, key="key10", target="string", priority=1…
/freebsd/crypto/openssh/openbsd-compat/
H A Dfnmatch.c153 const int escape = !(flags & FNM_NOESCAPE); in fnmatch_ch() local
179 if (escape && (**pattern == '\\')) { in fnmatch_ch()
213 *pattern += (escape && ((*pattern)[2] == '\\')) ? 3 : 2; in fnmatch_ch()
264 } else if (escape && (**pattern == '\\') && (*pattern)[1]) { in fnmatch_ch()
292 const int escape = !(flags & FNM_NOESCAPE); in fnmatch() local
312 if (slash && escape && (*pattern == '\\') && (pattern[1] == '/')) in fnmatch()
327 else if (escape && (*pattern == '\\') && (pattern[1] == '.')) in fnmatch()
356 (escape && (*pattern == '\\') && (pattern[1] == '/')))) in fnmatch()
386 (escape && (*matchptr == '\\') && in fnmatch()
426 if (escape && (*matchptr == '\\') && in fnmatch()
[all …]
/freebsd/contrib/pkgconf/cli/
H A Drenderer-msvc.c57 bool escape = ctx->escape; in msvc_renderer_render() local
77 escape = should_quote(&tmpbuf); in msvc_renderer_render()
79 if (escape) in msvc_renderer_render()
84 if (escape) in msvc_renderer_render()
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageViewHTML.cpp27 std::string escape(StringRef Str, const CoverageViewOptions &Opts) { in escape() function
452 << escape(PathToStyle, Opts) << "'>"; in emitPrelude()
458 OS << "<script src='" << escape(PathToJavaScript, Opts) << "'></script>"; in emitPrelude()
575 std::string LinkText = escape(LinkTextStr, Opts); in buildLinkToFile()
577 escape(getOutputPath(SF, "html", /*InToplevel=*/false), Opts); in buildLinkToFile()
607 OSRef << tag(ProjectTitleTag, escape(Opts.ProjectTitle, Opts)); in emitReportHeader()
610 OSRef << tag(CreatedTimeTag, escape(Opts.CreatedTimeStr, Opts)); in emitReportHeader()
693 OSRef << tag("h5", escape(Opts.getLLVMVersionString(), Opts)); in createIndexFile()
773 OSRef << tag("h5", escape(Options.getLLVMVersionString(), Options)); in generateSubDirectoryReport()
847 auto LinkText = escape(LinkTextStr, Options); in buildRelLinkToFile()
[all …]
/freebsd/contrib/pkgconf/doc/
H A Dlibpkgconf-fragment.rst61 .. c:function:: size_t pkgconf_fragment_render_len(const pkgconf_list_t *list, bool escape, const p…
66 :param bool escape: Whether or not to escape special shell characters (deprecated).
71 …nt_render_buf(const pkgconf_list_t *list, char *buf, size_t buflen, bool escape, const pkgconf_fra…
78 :param bool escape: Whether or not to escape special shell characters (deprecated).
87 :param bool escape: Whether or not to escape special shell characters (deprecated).
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DAnsiTerminal.h192 llvm::StringRef escape = right.substr(start); in FindNextAnsiSequence() local
199 return {left, escape.take_front(ANSI_ESC_START_LEN + 1 + end + 1), in FindNextAnsiSequence()
212 auto [left, escape, right] = FindNextAnsiSequence(str); in StripAnsiTerminalCodes()
227 auto [left, escape, right] = FindNextAnsiSequence(str);
234 result.append(left).append(escape);
/freebsd/contrib/kyua/utils/format/
H A Dformatter_test.cpp127 ATF_TEST_CASE_WITHOUT_HEAD(escape);
128 ATF_TEST_CASE_BODY(escape) in ATF_TEST_CASE_BODY() argument
255 ATF_ADD_TEST_CASE(tcs, escape); in ATF_INIT_TEST_CASES()
/freebsd/stand/lua/
H A Dcolor.lua88 function color.escape(fg_color, bg_color, attribute) function
105 return color.escape(color.DEFAULT, color.DEFAULT)
/freebsd/usr.bin/mail/
H A Dcollect.c70 int lc, cc, escape, eofcount, fd, c, t; in collect() local
127 escape = *cp; in collect()
129 escape = ESCAPE; in collect()
173 if (linebuf[0] != escape || value("interactive") == NULL || in collect()
186 if (c == escape) { in collect()
/freebsd/usr.bin/printf/
H A Dprintf.c73 static int escape(char *, int, size_t *);
137 escape(fmt, 1, &len); /* backslash interpretation */ in main()
369 getout = escape(p, 0, &len); in printf_doformat()
460 escape(char *fmt, int percent, size_t *len) in escape() function
/freebsd/usr.sbin/sysrc/
H A Dsysrc177 escape()
471 escape "$SERVICE" _SERVICE
476 escape "$RC_CONFS" _RC_CONFS
481 escape "$arg" arg
/freebsd/contrib/bmake/unit-tests/
H A Dvarmod-loop.mk224 all: escape-modifier
225 escape-modifier: .PHONY
/freebsd/lib/libiconv_modules/VIQR/
H A Dcitrus_viqr.c263 int ch, escape; in _citrus_VIQR_mbrtowc_priv() local
274 for (escape = 0;;) { in _citrus_VIQR_mbrtowc_priv()
287 escape = 1; in _citrus_VIQR_mbrtowc_priv()
290 if (escape != 0) in _citrus_VIQR_mbrtowc_priv()
/freebsd/contrib/pkgconf/t/parser/
H A Ddollar-sign-escape-2.test2 Query: dollar-sign-escape-2
H A Ddollar-sign-escape.test2 Query: dollar-sign-escape
/freebsd/contrib/pkgconf/tests/lib1/
H A Ddollar-sign-escape.pc3 Name: dollar-sign-escape
H A Ddollar-sign-escape-2.pc3 Name: dollar-sign-escape
H A Descaped-backslash.pc3 Description: test package for backslash escape scenario
/freebsd/contrib/pam-krb5/tests/fakepam/
H A DREADME100 substituted for the %u escape. This should match the user whose
105 Only used for the %p escape. This is not used to set the
109 Only used for the %n escape.
143 Several strings undergo %-escape expansion as mentioned below. For
227 <output> and <regex> may contain spaces and undergoes %-escape
253 undergoes %-escape expansion. It may be enclosed in slashes (/) to
257 also undergoes %-escape expansion. The response starts with the final
/freebsd/bin/sh/tests/parser/
H A Ddollar-quote13.02 # This Unicode escape sequence that has never been in range should either
/freebsd/usr.bin/find/
H A Dprintf.c39 escape(const char *str, bool *flush, bool *warned) in escape() function
171 all = fmt = escape(plan->c_data, &flush, &warned); in do_printf()
/freebsd/usr.bin/tip/tip/
H A Dtip.c50 static int escape(void);
395 gch = escape(); in tipin()
434 escape(void) in escape() function
/freebsd/contrib/sendmail/doc/op/
H A DREADME5 Unknown escape sequence in input: 33, 133

123456789