Searched refs:escape (Results 26 - 50 of 79) sorted by relevance

1234

/freebsd-current/contrib/bsddialog/lib/
H A Dbsddialog.h101 bool escape; member in struct:bsddialog_conf::__anon2
/freebsd-current/contrib/kyua/utils/text/
H A Doperations_test.cpp126 ATF_REQUIRE_EQ("'\\'escape at the beginning'",
127 text::quote("'escape at the beginning", '\''));
128 ATF_REQUIRE_EQ("'escape at the end\\''",
129 text::quote("escape at the end'", '\''));
/freebsd-current/usr.bin/hexdump/
H A Dparse.c136 escape(tfu->fmt);
449 escape(char *p1) function
453 /* alphabetic escape sequences have to be done in place */
/freebsd-current/contrib/bmake/unit-tests/
H A Dcomment.mk50 # To escape a comment sign, precede it with a backslash.
H A Dvarname.mk34 # as an escape character, therefore the parentheses still count to the nesting
H A Dcond-token-string.mk38 # In plain words, a '\' can be used to escape any character, just as in
H A Dvarmod.mk99 # expect+2: To escape a dollar, use \$, not $$, at "$$:L} != """
H A Dvarmod-to-separator.mk238 # interpreted an "octal escape" as decimal if the first digit was not '0'.
243 # Since the character escape is always interpreted as octal, let's see what
246 # longer accepts this escape and complains.
H A Dposix1.mk20 # with single space, except in commands, where the escape and the newline
H A Dvarmod-loop.mk226 all: escape-modifier
227 escape-modifier: .PHONY
/freebsd-current/lib/libc/resolv/
H A Dres_mkupdate.c772 int escape = 0; local
786 if (!escape) {
787 escape = 1;
795 if (!escape) {
804 if (escape) {
826 escape = 0;
/freebsd-current/usr.sbin/dconschat/
H A Ddconschat.c126 char escape; member in struct:dcons_state
769 if (*sp == dc->escape) {
796 *dp++ = dc->escape;
1005 /* default escape char */
1006 dc->escape = KEY_TILDE;
1018 dc->escape = optarg[0];
/freebsd-current/contrib/ntp/sntp/libevent/
H A Devent_rpcgen.py1600 C_COMMENT_START_RE = re.compile(re.escape(C_COMMENT_START))
1601 C_COMMENT_END_RE = re.compile(re.escape(C_COMMENT_END))
1603 C_COMMENT_START_SUB_RE = re.compile(r"%s.*$" % (re.escape(C_COMMENT_START)))
1604 C_COMMENT_END_SUB_RE = re.compile(r"%s.*$" % (re.escape(C_COMMENT_END)))
1607 r"%s.*?%s" % (re.escape(C_COMMENT_START), re.escape(C_COMMENT_END))
/freebsd-current/contrib/libevent/
H A Devent_rpcgen.py1600 C_COMMENT_START_RE = re.compile(re.escape(C_COMMENT_START))
1601 C_COMMENT_END_RE = re.compile(re.escape(C_COMMENT_END))
1603 C_COMMENT_START_SUB_RE = re.compile(r"%s.*$" % (re.escape(C_COMMENT_START)))
1604 C_COMMENT_END_SUB_RE = re.compile(r"%s.*$" % (re.escape(C_COMMENT_END)))
1607 r"%s.*?%s" % (re.escape(C_COMMENT_START), re.escape(C_COMMENT_END))
/freebsd-current/contrib/telnet/telnet/
H A Dtelnet.c117 cc_t escape; variable
185 escape = CONTROL(']');
1953 if (sc == escape) {
1970 } else if (escape != _POSIX_VDISABLE && sc == escape) {
1972 * Double escape is a pass through of a single escape character.
1974 if (tcc && strip(*tbp) == escape) {
H A Dcommands.c162 if (*cp == '!') { /* Special case shell escape */
305 { "escape", "Send current escape character",1, 0, (int (*)(char *, ...))send_esc, 1, 0 },
414 NETADD(escape);
875 { "escape", "character to escape back to telnet command mode", NULL, &escape },
876 { "rlogin", "rlogin escape character", 0, &rlogin },
913 printf("Telnet rlogin escape character is '%s'.\n",
916 escape
[all...]
H A Dexterns.h130 extern cc_t escape; /* Escape to command mode */
131 extern cc_t rlogin; /* Rlogin mode escape character */
/freebsd-current/crypto/heimdal/appl/telnet/telnet/
H A Dexterns.h87 extern cc_t escape; /* Escape to command mode */
88 extern cc_t rlogin; /* Rlogin mode escape character */
H A Dcommands.c68 if (*cp == '!') { /* Special case shell escape */
214 { "escape", "Send current escape character", 1, 0, send_esc, 1, 0 },
326 NETADD(escape);
804 { "escape", "character to escape back to telnet command mode", 0, &escape },
805 { "rlogin", "rlogin escape character", 0, &rlogin },
841 printf("Telnet rlogin escape character is '%s'.\r\n",
844 escape
[all...]
H A Dtelnet.c87 cc_t escape; variable
155 escape = CONTROL(']');
1874 if (sc == escape) {
1891 } else if (sc == escape) {
1893 * Double escape is a pass through of a single escape character.
1895 if (tcc && strip(*tbp) == escape) {
/freebsd-current/sys/fs/cd9660/
H A Diso.h103 * as PVD, but byte position 8 is a flag, and 89-120 is for escape.
115 char escape [ISODCL ( 89, 120)]; member in struct:iso_supplementary_descriptor
H A Dcd9660_vfsops.c294 if (bcmp(sup->escape, "%/@", 3) == 0)
296 if (bcmp(sup->escape, "%/C", 3) == 0)
298 if (bcmp(sup->escape, "%/E", 3) == 0)
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DRegex.cpp151 // Skip to the next escape.
239 std::string Regex::escape(StringRef String) { function in class:Regex
/freebsd-current/bin/sh/
H A Dparser.c1231 * Called to parse a backslash escape sequence inside $'...'.
1298 synerror("Bad escape sequence");
1300 synerror("Bad escape sequence");
1319 synerror("Bad escape sequence");
1322 synerror("Bad escape sequence");
1351 synerror("Bad escape sequence");
/freebsd-current/usr.bin/bc/
H A Dbc.y94 static char *escape(const char *);
756 char *p = escape($1);
1038 escape(const char *str)

Completed in 411 milliseconds

1234