Searched refs:escaped (Results 1 - 25 of 40) sorted by relevance

12

/openbsd-current/gnu/usr.bin/perl/ext/B/t/
H A Dperlstring.t28 my $escaped= B::perlstring($char);
29 my $evalled= eval $escaped;
30 push @bad, [ $cp, $evalled, $char, $escaped ] if $evalled ne $char;
35 my ( $cp, $evalled, $char, $escaped ) = @$tuple;
36 is($evalled, $char, "check if B::perlstring of$do_utf8 codepoint $cp round trips ($escaped)");
/openbsd-current/gnu/llvm/lldb/source/Interpreter/
H A DOptionValueFormatEntity.cpp57 std::string escaped; local
58 EscapeBackticks(m_current_format, escaped);
59 strm << '"' << escaped << '"'; local
65 std::string escaped; local
66 EscapeBackticks(m_current_format, escaped);
67 return escaped;
/openbsd-current/gnu/llvm/clang/tools/scan-build-py/lib/libscanbuild/
H A Dshell.py47 escaped = ''.join([table.get(c, c) for c in word])
49 return '"' + escaped + '"' if needs_quote(word) else escaped
/openbsd-current/regress/lib/libfuse/
H A DMakefile4 REGRESS_TARGETS+= run-fuse-opt-add-opt-escaped
17 CLEANFILES+=fuse-opt-add-opt-escaped
30 run-fuse-opt-add-opt-escaped: fuse-opt-add-opt-escaped
31 ./fuse-opt-add-opt-escaped
/openbsd-current/usr.bin/tmux/
H A Dcmd-show-environment.c73 char *escaped; local
89 escaped = cmd_show_environment_escape(envent);
90 cmdq_print(item, "%s=\"%s\"; export %s;", envent->name, escaped,
92 free(escaped);
H A Dcmd-show-options.c155 char *value, *tmp = NULL, *escaped; local
182 escaped = args_escape(value);
184 cmdq_print(item, "%s* %s", name, escaped);
186 cmdq_print(item, "%s %s", name, escaped);
187 free(escaped);
H A Dcmd.c671 cmd_list_print(struct cmd_list *cmdlist, int escaped) argument
691 if (escaped)
696 if (escaped)
/openbsd-current/usr.sbin/cron/
H A Ddo_command.c121 * the command. An escaped % will have the escape character stripped
126 int escaped = FALSE; local
135 if (escaped) {
138 escaped = FALSE;
142 escaped = TRUE;
296 int escaped = FALSE; local
310 if (escaped) {
318 if (!(escaped = (ch == '\\'))) {
323 if (escaped)
/openbsd-current/lib/libc/net/
H A Dres_comp.c395 int ch, escaped = 0; local
405 if (!escaped && periodchar(ch))
407 if (escaped)
408 escaped = 0;
410 escaped = 1;
/openbsd-current/gnu/usr.bin/perl/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/
H A DUtils.pm36 A function which returns a 7 bit ASCII correctly \ escaped version of the
80 A function which returns a 7 bit ASCII correctly \ escaped version of the
/openbsd-current/usr.bin/dig/lib/isc/
H A Dlex.c282 int escaped = 0; local
440 (!escaped &&
521 if (escaped) {
522 escaped = 0;
539 if (c == '\n' && !escaped &&
545 if (c == '\\' && !escaped)
546 escaped = 1;
548 escaped = 0;
/openbsd-current/lib/libfuse/
H A Dfuse_opt.c133 size_t size = 0, escaped = 0; local
142 /* malloc(size + escaped) overflow check */
147 escaped++;
153 if (escaped > 0) {
154 escaped_opt = malloc(size + escaped);
/openbsd-current/gnu/usr.bin/perl/cpan/Encode/CN/
H A DCN.pm50 hz 7-bit escaped GB2312 encoding
/openbsd-current/gnu/usr.bin/perl/dist/Dumpvalue/t/
H A DDumpvalue.t57 like( $d->stringify('double and whack:\ "'), qr!\\ \"!, 'escaped with unctrl' );
58 like( $d->stringify("a\005"), qr/^"a\^/, 'escaped ASCII value in unctrl' );
62 like( $d->stringify("b\266"), qr!^'b\\266!, 'high-bit now escaped in unctrl');
68 like( $d->stringify("\037"), qr/^"\\c/, 'escaped ASCII value okay' );
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DDeadStoresChecker.cpp148 llvm::SmallPtrSet<const VarDecl *, 20> &escaped,
151 Escaped(escaped), currentBlock(nullptr) {}
484 // escaped.
503 // Treat local variables captured by reference in C++ lambdas as escaped.
145 DeadStoreObs(const CFG &cfg, ASTContext &ctx, BugReporter &br, const DeadStoresChecker *checker, AnalysisDeclContext *ac, ParentMap &parents, llvm::SmallPtrSet<const VarDecl *, 20> &escaped, bool warnForDeadNestedAssignments) argument
/openbsd-current/gnu/usr.bin/perl/cpan/Pod-Simple/lib/Pod/Simple/
H A DRTF.pm67 my $escaped = "-$escaped_sans_hyphen";
71 $escaped= qr/[\Q$escaped\E]/;
573 my $escape_re = ((shift) ? $escaped : $escaped_sans_hyphen);
H A DXHTML.pm115 already be &-escaped.
167 content. The value of this string should already be &-escaped.
172 The value of this string should already be &-escaped.
/openbsd-current/usr.bin/gencat/
H A Dgencat.c368 * them escaped and not complain.
/openbsd-current/gnu/usr.bin/perl/cpan/Text-ParseWords/lib/Text/
H A DParseWords.pm219 not themselves backslash-escaped or inside of single quotes (i.e.,
/openbsd-current/gnu/llvm/llvm/lib/TableGen/
H A DTGLexer.cpp307 return ReturnError(CurPtr, "escaped newlines not supported in tblgen");
/openbsd-current/gnu/usr.bin/perl/
H A Ddump.c103 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, regardles
169 Perl_pv_escape( pTHX_ SV *dsv, char const * const str, const STRLEN count, STRLEN max, STRLEN * const escaped, U32 flags ) argument
369 STRLEN escaped; local
[all...]
/openbsd-current/gnu/usr.bin/perl/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS/
H A DUtilities.pm199 Properly escaped string.
828 be a command that was read from) so that double-quotes and backslashes are escaped.
/openbsd-current/gnu/usr.bin/perl/cpan/HTTP-Tiny/lib/HTTP/
H A DTiny.pm217 #pod URL must have unsafe characters escaped and international domain names encoded.
249 #pod The URL must have unsafe characters escaped and international domain names
288 #pod name provided. The URL must have unsafe characters escaped and international
349 #pod 'PUT', etc.) on the given URL. The URL must have unsafe characters escaped and
363 #pod be percent-escaped:
498 #pod reference will be UTF-8 encoded and escaped per RFC 3986. If a value is an
979 # userinfo might be percent escaped, so recover real auth info
1859 URL must have unsafe characters escaped and international domain names encoded.
1876 The URL must have unsafe characters escaped and international domain names
1890 name provided. The URL must have unsafe characters escaped an
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/Term-ReadKey/
H A Dppport.h18003 static char * DPPP_(my_pv_escape)(pTHX_ SV * dsv, char const * const str, const STRLEN count, const STRLEN max, STRLEN * const escaped, const U32 flags);
18006 extern char * DPPP_(my_pv_escape)(pTHX_ SV * dsv, char const * const str, const STRLEN count, const STRLEN max, STRLEN * const escaped, const U32 flags);
18021 STRLEN * const escaped, const U32 flags)
18103 if (escaped != NULL)
18104 *escaped= pv - str;
18134 STRLEN escaped; local
18147 pv_escape(dsv, str, count, max, &escaped, flags | PERL_PV_ESCAPE_NOCLEAR);
18157 if ((flags & PERL_PV_PRETTY_ELLIPSES) && escaped < count)
18019 my_pv_escape(pTHX_ SV *dsv, char const * const str, const STRLEN count, const STRLEN max, STRLEN * const escaped, const U32 flags) argument
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dcpptrad.c79 /* Lexing TODO: Maybe handle space in escaped newlines. Stop cpplex.c
143 a backslash. Advances CUR until all escaped newlines are skipped,
146 Warns if a file buffer ends in an escaped newline. */
204 /* Canonicalize newline sequences and skip escaped ones. */
532 /* Skip escaped quotes here, it's easier than above, but
533 take care to first skip escaped newlines. */

Completed in 2231 milliseconds

12