/freebsd/contrib/openpam/lib/libpam/ |
H A D | openpam_readword.c | 56 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 D | citrus_hz.c | 87 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 D | load.in | 4 .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 D | fnmatch.c | 153 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/llvm-project/llvm/tools/llvm-cov/ |
H A D | SourceCoverageViewHTML.cpp | 27 std::string escape(StringRef Str, const CoverageViewOptions &Opts) { in escape() function 457 << escape(PathToStyle, Opts) << "'>"; in emitPrelude() 463 OS << "<script src='" << escape(PathToJavaScript, Opts) << "'></script>"; in emitPrelude() 580 std::string LinkText = escape(LinkTextStr, Opts); in buildLinkToFile() 582 escape(getOutputPath(SF, "html", /*InToplevel=*/false), Opts); in buildLinkToFile() 612 OSRef << tag(ProjectTitleTag, escape(Opts.ProjectTitle, Opts)); in emitReportHeader() 615 OSRef << tag(CreatedTimeTag, escape(Opts.CreatedTimeStr, Opts)); in emitReportHeader() 698 OSRef << tag("h5", escape(Opts.getLLVMVersionString(), Opts)); in createIndexFile() 778 OSRef << tag("h5", escape(Options.getLLVMVersionString(), Options)); in generateSubDirectoryReport() 852 auto LinkText = escape(LinkTextStr, Options); in buildRelLinkToFile() [all …]
|
/freebsd/usr.bin/dc/ |
H A D | inout.c | 267 bool escape; in read_string() local 269 escape = false; in read_string() 276 if (!escape) { in read_string() 284 if (ch == '\\' && !escape) in read_string() 285 escape = true; in read_string() 287 escape = false; in read_string()
|
/freebsd/contrib/kyua/utils/format/ |
H A D | formatter_test.cpp | 127 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 D | color.lua | 88 function color.escape(fg_color, bg_color, attribute) function 105 return color.escape(color.DEFAULT, color.DEFAULT)
|
/freebsd/usr.bin/mail/ |
H A D | collect.c | 70 int lc, cc, escape, eofcount, fd, c, t; in collect() local 123 escape = *cp; in collect() 125 escape = ESCAPE; in collect() 169 if (linebuf[0] != escape || value("interactive") == NULL || in collect() 182 if (c == escape) { in collect()
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | varmod-loop.mk | 224 all: escape-modifier 225 escape-modifier: .PHONY
|
/freebsd/usr.bin/printf/ |
H A D | printf.c | 73 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/lib/libiconv_modules/VIQR/ |
H A D | citrus_viqr.c | 263 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/bin/sh/tests/parser/ |
H A D | dollar-quote13.0 | 2 # This Unicode escape sequence that has never been in range should either
|
/freebsd/contrib/sendmail/doc/op/ |
H A D | README | 5 Unknown escape sequence in input: 33, 133
|
/freebsd/usr.bin/tip/tip/ |
H A D | tip.c | 50 static int escape(void); 395 gch = escape(); in tipin() 434 escape(void) in escape() function
|
/freebsd/contrib/netbsd-tests/usr.bin/make/ |
H A D | t_make.sh | 37 escape) atf_expect_fail "see PR toolchain/49085";;
|
/freebsd/lib/libc/resolv/ |
H A D | res_mkupdate.c | 772 int escape = 0; in getstr_str() local 786 if (!escape) { in getstr_str() 787 escape = 1; in getstr_str() 795 if (!escape) { in getstr_str() 804 if (escape) { in getstr_str() 826 escape = 0; in getstr_str()
|
/freebsd/usr.sbin/sysrc/ |
H A D | sysrc | 517 escape "$SERVICE" _SERVICE 522 escape "$RC_CONFS" _RC_CONFS 527 escape "$arg" arg
|
/freebsd/usr.bin/hexdump/ |
H A D | hexdump.h | 95 void escape(char *);
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | Regex.h | 106 static std::string escape(StringRef String);
|
/freebsd/contrib/ee/ |
H A D | ee.msg | 55 44 "^[ (escape) menu " 68 57 "^[ (escape) menu ^e search prompt ^y delete line ^u up ^p prev page " 165 154 "^[ (escape) menu ^y search prompt ^k delete line ^p prev li ^g prev page"
|
/freebsd/usr.bin/ee/nls/pl_PL.ISO8859-2/ |
H A D | ee.msg | 53 44 "^[ (escape) menu ESC-Enter: wyj�cie z ee " 66 57 "^[ (escape) menu ^e szukanie ^y usu� wiersz ^u do g�ry ^p poprz. str " 163 154 "^[ (escape) menu ^y szukanie ^k usu� wiersz ^p <-wiersz ^g <-strona "
|
/freebsd/sys/conf/ |
H A D | std.debug | 17 options ALT_BREAK_TO_DEBUGGER # Enter debugger on keyboard escape sequence
|
/freebsd/usr.bin/ee/nls/pt_BR.ISO8859-1/ |
H A D | ee.msg | 54 44 "^[ (escape) menu " 67 57 "^[ (escape) menu ^e prompt localizar ^y deletar linha ^u para cima ^p p�gina … 164 154 "^[ (escape) menu ^y prompt localizar ^k deletar linha ^p linha anterior ^g p�gina a…
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | DiagnosticLexKinds.td | 26 InGroup<DiagGroup<"backslash-newline-escape">>; 151 "%select{delimited|named}0 escape sequences are a " 153 InGroup<DiagGroup<"delimited-escape-sequence-extension">>; 156 "%select{delimited|named}0 escape sequences are " 161 "delimited escape sequence cannot be empty">; 163 "expected '{' after '\\%0' escape sequence">; 165 "invalid digit '%0' in escape sequence">; 171 "characters names in Unicode escape sequences are sensitive to case and whitespaces">; 228 "use of non-standard escape character '\\%0'">; 229 def ext_unknown_escape : ExtWarn<"unknown escape sequence '\\%0'">, [all …]
|