Home
last modified time | relevance | path

Searched full:escape (Results 1 – 25 of 1800) sorted by relevance

12345678910>>...72

/freebsd/contrib/mandoc/
H A Dmandoc_escape.322 .Nd parse roff escape sequences
35 escape sequence.
37 An escape sequence consists of
43 a single ASCII character called the escape sequence identifier,
48 Arguments can be given in the following forms; some escape sequence
57 and the escape sequence ends with the final
74 and the escape sequence ends with that second
76 Some escape sequences allow arbitrary characters
84 is expected to point to the escape sequence identifier.
93 escape sequences that require in-place expansion, in particular
[all …]
H A Dmandoc.h18 * Error handling, escape sequence, and character utilities.
177 MANDOCERR_ESC_ARG, /* invalid escape sequence argument: esc */
178 MANDOCERR_ESC_UNDEF, /* undefined escape, printing literally: char */
227 MANDOCERR_MC_ESC, /* skipping unusable escape sequence: mc arg */
240 /* related to escape sequences */
241 MANDOCERR_ESC_INCOMPLETE, /* incomplete escape sequence: esc */
244 MANDOCERR_ESC_DELIM, /* invalid escape argument delimiter: esc */
250 MANDOCERR_ESC_UNSUPP, /* unsupported escape sequence: escape */
297 ESCAPE_ERROR, /* non-fatal error: unparsable escape */
298 ESCAPE_UNSUPP, /* unsupported escape: warn and ignore */
[all …]
H A Droff_escape.c19 * Parser for roff(7) escape sequences.
33 * Traditional escape sequence interpreter for general use
56 * Full-featured escape sequence parser.
57 * If it encounters a nested escape sequence that requires expansion
58 * by the parser and re-parsing, the positions of that inner escape
60 * Otherwise, *resc is set to aesc and the positions of the escape
69 int iesc; /* index of leading escape char */ in roff_escape()
70 int inam; /* index of escape name */ in roff_escape()
74 int sesc, snam, sarg, sendarg, send; /* for sub-escape */ in roff_escape()
81 enum mandoc_esc stype; /* for sub-escape */ in roff_escape()
[all …]
H A Dmandoc.11348 otherwise, escape it by prepending
1770 request contains more than one font escape sequence.
1826 .It Sy "invalid escape sequence argument"
1828 The argument of an escape sequence is of an invalid form.
1829 Invalid escape sequences are ignored.
1830 .It Sy "undefined escape, printing literally"
1832 In an escape sequence, the first character
1951 expansion of nested escape sequences
2067 Escape sequences and characters and strings expressed in terms of them
2080 is terminated by an escape sequence.
[all …]
H A Dmandoc_char.729 escape sequences accepted by
62 escape sequences to represent national language characters in author
127 represented by escape sequences, or after hyphens inside words in
148 use the unpaddable non-breaking space escape sequence
162 In some cases, using the non-breaking space escape sequence
166 To escape macro names and to protect whitespace at the end
183 escape sequence.
229 to escape a period because
231 is not a character escape sequence, does not prevent special handling
241 escape sequence.
[all …]
H A Droff.735 requests and escape sequences intermixed with their
47 requests and escape sequences, it only contains partial information
86 indicates the start of an escape sequence, used for example for
90 For a complete listing of escape sequences, consult the
91 .Sx ESCAPE SEQUENCE REFERENCE
97 A request line beginning with a control character and comment escape
115 Sequences begin with the escape character
128 Two-letter em dash escape.
130 One-letter backslash escape.
144 escape sequence and the
[all …]
/freebsd/contrib/bmake/unit-tests/
H A Ddirective-for-escape.exp4 make: "directive-for-escape.mk" line 21: Unclosed expression, expecting '}' for modifier "U!""
6 in .for loop from directive-for-escape.mk:20 with chars = !"#$%&'()*+,-./0-9:;<=>?@A-Z[\]_^a-z{|}~
7 make: "directive-for-escape.mk" line 21: !"
11 make: "directive-for-escape.mk" line 33: Unclosed expression, expecting '}' for modifier "U!"\\\\"
13 …in .for loop from directive-for-escape.mk:32 with chars = !"\\#$%&'()*+,-./0-9:;<=>?@A-Z[\]_^a-z{|…
14 make: "directive-for-escape.mk" line 33: !"\\
18 make: "directive-for-escape.mk" line 57: $
21 make: "directive-for-escape.mk" line 57: value
24 make: "directive-for-escape.mk" line 57: value-with-modifier
27 make: "directive-for-escape.mk" line 57: value
[all …]
H A Dvarmod-match-escape.exp33 make: "varmod-match-escape.mk" line 43: warning: XXX: Oops
36 make: "varmod-match-escape.mk" line 69: Dollar followed by nothing
38 make: "varmod-match-escape.mk" line 110: Unfinished character list in pattern '[A-]' of modifier ':…
40 in .for loop from varmod-match-escape.mk:107 with pattern = [A-]
41 make: "varmod-match-escape.mk" line 110: Unfinished character list in pattern '[^A-]' of modifier '…
43 in .for loop from varmod-match-escape.mk:107 with pattern = [^A-]
/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/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()
96 /* escape next character */ in openpam_readword()
97 escape = ch; in openpam_readword()
[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/share/doc/usd/07.mail/
H A Dmail4.nr51 ~ escape without killing your letter.
54 it stands, you can invoke the text editor on it using the escape
84 editor, on your current message, you can use the escape,
96 file in your message; the escape
109 As a special case of ~r, the escape
124 escape.
135 you are constructing with the escape:
145 people to the list of message recipients, you can do so with the escape
155 escape
168 direct recipients. The escape
[all …]
/freebsd/usr.bin/col/
H A Dcol.180 understands both the escape sequences of the form escape-digit
85 format escape-control-character.
91 reverse line feed (escape then bell).
93 reverse line feed (escape then 7).
95 half reverse line feed (escape then backspace).
97 half reverse line feed (escape then 8).
99 half forward line feed (escape than tab).
101 half forward line feed (escape then 9).
123 All unrecognized control characters and escape sequences are
/freebsd/stand/lua/
H A Dcolor.lua.877 Returns the escape sequence that encodes
83 Returns the escape sequence for the default foreground color.
87 Returns the escape sequence that encodes
93 Returns the escape sequence for the default background color.
96 .It Fn color.escape fg_color bg_color attribute
97 Returns an escape sequence that encodes
104 .Fn color.escape
107 Returns the escape sequence for the default color scheme, white on black with
/freebsd/lib/libutil/
H A Dfparseln.352 By default, if a character is escaped, both it and the preceding escape
73 Contains the escape, continuation, and comment characters.
85 The escape character, which defaults to
108 Remove escape preceding an escaped comment.
110 Remove escape preceding an escaped continuation.
112 Remove escape preceding an escaped escape.
114 Remove escape preceding any other character.
/freebsd/crypto/heimdal/appl/telnet/telnet/
H A Dtelnet.186 Stops any character from being recognized as an escape character.
132 .It Fl e Ar escape char
136 escape character to
137 .Ar escape char .
139 .Ar escape char
141 there will be no escape character.
177 mode, the escape character is set to the tilde (~) character,
195 remote host; ~ is the telnet escape character.
197 The line ~^] escapes to the normal telnet escape prompt.
587 .Bl -tag -width escape
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool/
H A Dzpool_colors.ksh62 # Replace the escape codes with "ESC" so they're easier to grep
75 # The escape code for 'FAULTED' is a little more tricky. The line starts like
78 # <start red escape code> loop2 FAULTED <end escape code>
80 # Luckily, awk counts the start and end escape codes as separate fields, so
/freebsd/contrib/less/
H A Dlessecho.nro10 But any metacharacter in the output is preceded by an "escape"
20 Specifies "\fIx\fP", rather than backslash, to be the escape char for metachars.
21 If \fIx\fP is "-", no escape char is used and arguments containing metachars
45 Specifies "\fIn\fP" to be the escape char for metachars, as an integer.
/freebsd/share/doc/usd/21.troff/
H A Dm3147 The \fIescape\fR character \fB\e\fR
148 introduces \fIescape sequences\fR\(em\
156 The escape character \fB\e\fR can be input with the sequence \fB\e\e\fR.
157 The escape character can be changed with \fBec\fR,
159 for the new escape character.
160 \fB\ee\fR can be used to print whatever the current escape character is.
161 If necessary or convenient, the escape mechanism may be turned off with \fBeo\fR,
166 Set escape character to \fB\e\fR, or to \fIc\fR, if given.
168 \fB&eo\fR on - - Turn escape mechanism off.
275 the last one with the escape \fB\e\fR.
[all …]
/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()
423 * "[range]" escape. in fnmatch()
[all …]
/freebsd/contrib/ntp/sntp/libopts/
H A Dcook.c35 * what: escape-process a string fragment
36 * arg: + char const * + pzScan + points to character after the escape +
84 case 'X': /* HEX Escape */ in ao_string_cook_escape_char()
149 * Find the end of it and compress any escape sequences.
215 * what: concatenate and escape-process strings
240 * It is a quoted string. Process the escape sequence characters in ao_string_cook()
277 * THEN drop both the escape and the newline from in ao_string_cook()
288 * THEN we do the full escape character processing in ao_string_cook()
/freebsd/usr.bin/tip/tip/
H A Dtip.154 No escape (disable tilde).
96 appearing as the first character of a line is an escape signal; the
107 Escape to a shell (exiting the shell will return to
335 escape.
349 .Dq Li escape?
350 displays the current escape character.
416 will recognize escape characters only after an end-of-line.
417 .It Va escape
419 The command prefix (escape) character; abbreviated
H A Dcu.195 appearing as the first character of a line is an escape signal; the
106 Escape to a shell (exiting the shell will return to
285 escape.
299 .Dq Li escape?
300 displays the current escape character.
356 will recognize escape characters only after an end-of-line.
357 .It Va escape
359 The command prefix (escape) character; abbreviated
/freebsd/contrib/telnet/telnet/
H A Dtelnet.194 Stops any character from being recognized as an escape character.
157 escape character to
162 there will be no escape character.
209 mode, the escape character is set to the tilde (~) character,
252 escape character.
258 escape prompt.
679 .Bl -tag -width escape
727 .It Ic escape
730 escape character (initially \*(Lq^\*(Rq).
828 .Bl -tag -width escape
[all …]
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp41 #define ESCAPE "\x1b" macro
42 #define ANSI_CLEAR_BELOW ESCAPE "[J"
43 #define ANSI_CLEAR_RIGHT ESCAPE "[K"
44 #define ANSI_SET_COLUMN_N ESCAPE "[%dG"
45 #define ANSI_UP_N_ROWS ESCAPE "[%dA"
46 #define ANSI_DOWN_N_ROWS ESCAPE "[%dB"
1296 el_set(m_editline, EL_BIND, ESCAPE "[1;5C", "em-next-word", NULL); in ConfigureEditor()
1297 el_set(m_editline, EL_BIND, ESCAPE "[1;5D", "ed-prev-word", NULL); in ConfigureEditor()
1298 el_set(m_editline, EL_BIND, ESCAPE "[5C", "em-next-word", NULL); in ConfigureEditor()
1299 el_set(m_editline, EL_BIND, ESCAPE "[5D", "ed-prev-word", NULL); in ConfigureEditor()
[all …]

12345678910>>...72