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

123

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/t/
H A Dutil.t3 # Test ability to escape() and unescape() punctuation characters
10 use_ok ( 'CGI::Util', qw(escape unescape) );
31 my $escape = "AbC\%$punct{$_}dEF";
32 my $cgi_escape = escape("AbC$_" . "dEF");
33 is($escape, $cgi_escape , "# $escape ne $cgi_escape");
/osnet-11/usr/src/lib/libdhcpsvc/modules/util/
H A Dutil.h53 extern void escape(char, const char *, char *, size_t);
H A Dutil.c126 * character was an escape. If so, remove the escape and
420 escape(char delimiter, const char *buffer, char *escaped, size_t size) function
/osnet-11/usr/src/lib/libadm/common/
H A Dpkgparam.c121 boolean_t begline, quoted, escape; local
173 quoted = escape = B_FALSE;
185 * other than space, newline and escape.
203 if (!escape) {
229 escape = B_FALSE;
233 if (!escape && strchr(qset, ch)) {
251 escape = B_TRUE;
252 else if (escape)
253 escape = B_FALSE;
/osnet-11/usr/src/lib/libldap5/sources/ldap/common/
H A Dsearch.c380 int balance, escape; local
383 escape = 0;
385 if ( escape == 0 ) {
391 if ( *s == '\\' && ! escape )
392 escape = 1;
394 escape = 0;
443 int parens, balance, escape; local
517 escape = 0;
520 if ( escape == 0 ) {
526 if ( *next == '\\' && ! escape )
797 int escape, firstdigit, ival; local
[all...]
/osnet-11/usr/src/lib/libldap4/common/
H A Dsearch.c268 int balance, escape; local
271 escape = 0;
273 if (escape == 0) {
279 if (*s == '\\' && ! escape)
280 escape = 1;
282 escape = 0;
334 int parens, balance, escape; local
425 escape = 0;
428 if (escape == 0) {
434 if (*next == '\\' && ! escape)
[all...]
/osnet-11/usr/src/lib/libxcurses/src/tic/
H A Duntic.c89 STATIC char *escape ANSI((int));
213 (void) fputs(escape(*p), stdout);
239 * of additional characters: <escape>, <space>, <colon>, <caret>, <comma>
242 escape(c) function
H A Dticscan.c59 STATIC int escape ANSI((int));
357 ch = escape(next_char());
393 * of additional characters: <escape>, <space>, <colon>, <caret>, <comma>
395 * Assume that the escape lead-in character has been processed and
399 escape(c) function
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/
H A DUtil.pm7 @EXPORT_OK = qw(rearrange rearrange_header make_attributes unescape escape
80 push @$result, make_attributes( $leftover, defined $CGI::Q ? $CGI::Q->{escape} : 1 )
131 my $escape = shift || 0;
146 my $value = $escape ? simple_escape($attr->{$_}) : $attr->{$_};
275 sub escape { subroutine
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Term/
H A DANSIColor.pm1 # Term::ANSIColor -- Color screen output using ANSI escape sequences.
90 # generated subs into pass-through functions that don't add any escape
120 # Return the escape code for a given set of color attributes.
137 # Return a list of named color attributes for a given set of escape codes.
139 # empty escape sequence '' or "\e[m" gives an empty list of attrs.
143 my $escape = $_;
144 $escape =~ s/^\e\[//;
145 $escape =~ s/m$//;
146 unless ($escape =~ /^((?:\d+;)*\d*)$/) {
148 Carp::croak ("Bad escape sequenc
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/Text/
H A DTermcap.pm10 # output the right termcap escape sequences for formatted text on the current
62 # Fall back on the ANSI escape sequences if Term::Cap doesn't work.
149 text using the correct termcap escape sequences for the current terminal.
155 This module uses Term::Cap to retrieve the formatting escape sequences for
157 regard as ANSI X3.64 and ISO 6429, the escape codes also used by DEC VT100
H A DColor.pm68 # wrapping code gets really confused by all the escape sequences.
113 text using ANSI color escape sequences. Apart from the color, it in all
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/File/
H A DDosGlob.pm68 # escape regex metachars but not glob chars
177 # escape regex metachars but not '\' and glob chars '*', '?'
195 # On Mac OS, the two glob metachars '*' and '?' and the escape
197 # We have to escape and treat them specially.
240 # escape regex metachars but not '\' and glob chars '*', '?'
251 # escape char '\' are valid characters for volume names.
252 # We have to escape and treat them specially.
457 pattern, you can escape them with either double quotes, or backslashes.
488 The metachars '*', '?' and the escape char '\' are valid characters in
490 a '*', '?' or '\' literally, you have to escape thes
[all...]
/osnet-11/usr/src/tools/onbld/Checks/
H A DComments.py144 if not re.search(r'^' + re.escape(synopsis) +
/osnet-11/usr/src/lib/libdhcputil/common/
H A Ddhcp_inittab.c650 boolean_t escape; local
661 escape = B_FALSE;
673 escape = B_FALSE;
677 if (escape) {
680 * a digit escape.
687 escape = B_FALSE;
701 escape = B_FALSE;
703 escape = B_TRUE;
726 * Handle trailing escape sequence. If string ends
731 if (escape)
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/
H A DParseLink.pm146 If the text of the LE<lt>E<gt> escape is entirely enclosed in double quotes,
150 calling parselink (since EE<lt>E<gt> formatting codes can be used to escape
H A DPlainText.pm239 carp "Unknown escape: E<$_>";
656 =item Unknown escape: %s
658 (W) The POD source contained an C<EE<lt>E<gt>> escape that Pod::PlainText didn't
/osnet-11/usr/src/lib/libresolv2/common/resolv/
H A Dres_mkupdate.c756 int escape = 0; local
770 if (!escape) {
771 escape = 1;
779 if (!escape) {
788 if (escape) {
810 escape = 0;
/osnet-11/usr/src/grub/grub2/grub-core/fs/
H A Diso9660.c104 grub_uint8_t escape[32]; member in struct:grub_iso9660_primary_voldesc
474 && (voldesc.escape[0] == 0x25) && (voldesc.escape[1] == 0x2f)
476 ((voldesc.escape[2] == 0x40) || /* UCS-2 Level 1. */
477 (voldesc.escape[2] == 0x43) || /* UCS-2 Level 2. */
478 (voldesc.escape[2] == 0x45))) /* UCS-2 Level 3. */
/osnet-11/usr/src/lib/libnisdb/
H A Dnis_parse_ldap_util.c2002 bool_t escape; local
2075 escape = FALSE;
2082 if (escape) {
2083 escape = FALSE;
2099 escape = TRUE;
2129 escape = FALSE;
2132 if (escape)
2133 escape = FALSE;
2142 escape = !escape;
[all...]
/osnet-11/usr/src/grub/grub2/include/grub/
H A Dscript_sh.h88 char *(*escape) (const char *str);
87 char *(*escape) (const char *str); member in struct:grub_script_wildcard_translator
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/pod/
H A Dpod2text.PL122 either termcap sequences or ANSI color escape sequences to format the text.
146 Format the output with ANSI color escape sequences. Using this option
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DDumpvalue.t29 like( Dumpvalue::unctrl("bo\007nd"), qr/bo\^.nd/, 'unctrl should escape' );
44 # if no unprintable character, escape ticks or backslashes
51 like( $d->stringify("b\205"), qr!^'b.'$!, 'no high-bit escape value in unctrl');
/osnet-11/usr/src/lib/libsldap/common/
H A Dns_reads.c1804 * ignore escape characters
5760 int balance, escape; local
5763 escape = 0;
5765 if (escape == 0) {
5771 if (*s == '\\' && ! escape)
5772 escape = 1;
5774 escape = 0;
5811 int parens, balance, escape; local
5868 escape = 0;
5871 if (escape
6109 int escape, firstdigit; local
[all...]
/osnet-11/usr/src/lib/libdhcpsvc/modules/files/
H A Ddhcp_network.c751 escape('|', recp->dn_macro, dnf.dnf_macro, sizeof (dnf.dnf_macro));
752 escape('|', recp->dn_comment, dnf.dnf_comment,

Completed in 341 milliseconds

123