Lines Matching defs:escaped
103 C<dsv> such that the size of the escaped string will not exceed C<max> chars
105 escaped will be returned in the C<STRLEN *escaped> parameter if it is not null.
107 of bytes that would be escaped were it not null will be calculated.
110 will also be escaped.
112 Normally the SV will be cleared before the escaped string is prepared,
121 is set, only non-ASCII chars will be escaped using this style;
122 otherwise, only chars above 255 will be so escaped; other non printable
123 chars will use octal or common escaped patterns like C<\n>. Otherwise,
131 string will be escaped, regardless of max. If the output is to be in
141 Returns a pointer to the escaped text as held by C<dsv>.
171 STRLEN * const escaped, U32 flags )
329 if (escaped != NULL)
330 *escaped= pv - str;
340 double quoted with any double quotes in the string escaped. Otherwise
349 quote (if there is one) but before the escaped text. If C<end_color>
350 is non-null then it will be inserted after the escaped text but before
369 STRLEN escaped;
391 pv_escape( NULL, str, count, max - max_adjust, &escaped, flags );
392 if ( (flags & PERL_PV_PRETTY_ELLIPSES) && ( escaped < count ) )
397 pv_escape( dsv, str, count, max - max_adjust, &escaped, flags | PERL_PV_ESCAPE_NOCLEAR );
405 if ( (flags & PERL_PV_PRETTY_ELLIPSES) && ( escaped < count ) )