Searched refs:escapes (Results 1 - 25 of 44) sorted by relevance

12

/macosx-10.9.5/CPANInternal-140/URI/t/
H A Descape.t24 use URI::Escape qw(%escapes);
26 print "not" unless $escapes{"%"} eq "%25";
/macosx-10.9.5/zsh-60/zsh/Functions/VCS_Info/
H A Dvcs_info_lastmsg13 if zstyle -T ':vcs_info:formats:command:-all-' use-prompt-escapes ; then
/macosx-10.9.5/CPANInternal-140/URI/URI/
H A D_query.pm16 $q =~ s/([^$URI::uric])/$URI::Escape::escapes{$1}/go;
43 $key =~ s/([;\/?:@&=+,\$\[\]%])/$URI::Escape::escapes{$1}/g;
48 $val =~ s/([;\/?:@&=+,\$\[\]%])/$URI::Escape::escapes{$1}/g;
70 for (@copy) { s/([;\/?:@&=+,\$\[\]%])/$URI::Escape::escapes{$1}/g; }
H A Dsip.pm33 $auth =~ s/([^$URI::uric])/$URI::Escape::escapes{$1}/go;
H A DEscape.pm119 The module can also export the C<%escapes> hash, which contains the
139 use vars qw(%escapes);
144 @EXPORT_OK = qw(%escapes uri_escape_utf8);
151 $escapes{chr($_)} = sprintf("%%%02X", $_);
164 eval "\$subst{\$patn} = sub {\$_[0] =~ s/([$tmp])/\$escapes{\$1} || _fail_hi(\$1)/ge; }";
170 $text =~ s/([^A-Za-z0-9\-_.!~*'()])/$escapes{$1} || _fail_hi($1)/ge;
H A D_generic.pm25 $auth =~ s/([^$ACHAR])/$URI::Escape::escapes{$1}/go;
44 $new_path =~ s/([^$PCHAR])/$URI::Escape::escapes{$1}/go;
61 $new_path =~ s/([^$URI::uric])/$URI::Escape::escapes{$1}/go;
H A DSplit.pm21 $auth =~ s,([/?\#]),$URI::Escape::escapes{$1},g;
29 $path =~ s,(:),$URI::Escape::escapes{$1}, while $path =~ m,^[^:/?\#]+:,;
31 $path =~ s,([?\#]),$URI::Escape::escapes{$1},g;
34 $query =~ s,(\#),$URI::Escape::escapes{$1},g;
/macosx-10.9.5/misc_cmds-32/calendar/calendars/
H A Dcalendar.lotr35 09/10 Gandalf escapes from Orthanc
/macosx-10.9.5/CPANInternal-140/URI/URI/file/
H A DBase.pm19 $auth =~ s,([/?\#]),$URI::Escape::escapes{$1},g;
31 $path =~ s,([%;?]),$URI::Escape::escapes{$1},g unless $escaped_path;
H A DMac.pm28 $path =~ s,([%/;]),$URI::Escape::escapes{$1},g;
/macosx-10.9.5/shell_cmds-175/path_helper/
H A Dpath_helper.c71 int escapes = 0; local
77 ++escapes;
81 size_t size = len + escapes + 1;
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGArgumentsSimplificationPhase.cpp54 bool escapes; member in struct:JSC::DFG::__anon2713::ArgumentsAliasingData
62 , escapes(false)
105 return callContextIsValid() && argumentsAssignmentIsValid() && !escapes;
279 // If a variable is used in a flush then by definition it escapes.
280 data.escapes = true;
405 if (!data.escapes) {
733 data.escapes = true;
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-en/
H A Dunicodeout.rb37 (completed to rewrite Tcl's escapes) by Tk::UTF8_String method. \
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/libldap/
H A Dgetdn.c479 * Here escapes and valid chars for GDS are considered; as soon as more
1427 ber_len_t len, escapes; local
1435 for ( startPos = p = str, escapes = 0; p < end; p++ ) {
1442 escapes++;
1450 escapes += 2;
1488 * escapes if not pedantic?
1522 len = ( endPos ? endPos : p ) - startPos - escapes;
1525 if ( escapes == 0 ) {
1573 ber_len_t len, escapes; local
1581 for ( startPos = p = str, escapes
1658 ber_len_t len, escapes; local
1734 unsigned escapes = 0; local
[all...]
/macosx-10.9.5/nano-11/src/
H A Dwinio.c329 static int escapes = 0, byte_digits = 0; local
343 escapes++;
344 switch (escapes) {
348 /* Two escapes: wait for more input. */
350 /* Three escapes: wait for more input. */
353 /* More than three escapes: limit the escape counter
355 escapes %= 3;
359 switch (escapes) {
367 escapes = 0;
389 /* Two escapes followe
[all...]
/macosx-10.9.5/text_cmds-87/sed/
H A Dprocess.c521 static const char escapes[] = "\\\a\b\f\r\t\v"; local
568 (p = strchr(escapes, c)) != NULL) {
573 fprintf(outfile, "\\%c", "\\abfrtv"[p - escapes]);
/macosx-10.9.5/apache-786.1/httpd/server/
H A Dutil.c1726 * escape_path_segment() escapes a path segment, as defined in RFC 1808. This
1848 apr_size_t length, escapes = 0; local
1858 escapes++;
1866 if (escapes == 0) {
1871 ret = apr_palloc(p, length + 3 * escapes);
/macosx-10.9.5/zsh-60/zsh/Src/
H A Dsubst.c1381 * handles the (p) and (~) flags as escapes and tok_arg respectively.
1385 untok_and_escape(char *s, int escapes, int tok_arg) argument
1391 if (escapes) {
1733 int escapes = 0; local
1886 escapes, tok_arg);
1889 escapes, tok_arg);
1922 premul = untok_and_escape(s + arglen, escapes,
1925 postmul = untok_and_escape(s + arglen, escapes,
1943 escapes, tok_arg);
1946 escapes, tok_ar
[all...]
/macosx-10.9.5/emacs-92/emacs/src/
H A Dsyntax.c3238 DEFVAR_BOOL ("words-include-escapes", &words_include_escapes,
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dpython.vim18 " * escapes
/macosx-10.9.5/CPANInternal-140/JSON/lib/JSON/
H A DPP.pm625 my %escapes = ( # by Jeremy Muhlich <jmuhlich [at] bitflood.org>
780 if(exists $escapes{$ch}){
781 $s .= $escapes{$ch};
/macosx-10.9.5/vim-53/runtime/indent/
H A Ddtd.vim249 " The entity value can be a string in single or double quotes (no escapes
/macosx-10.9.5/pcre-7/pcre/
H A Dpcre_compile.c111 static const short int escapes[] = { variable
156 static const short int escapes[] = { variable
524 * Handle escapes *
568 else if ((i = escapes[c - CHAR_0]) != 0) c = i;
572 else if ((i = escapes[c - 0x48]) != 0) c = i;
584 /* A number of Perl escapes are not handled by PCRE. We give an explicit
810 /* PCRE_EXTRA enables extensions to Perl in the matter of escapes. Any
2067 The problem in trying to be exactly like Perl is in the handling of escapes. We
3175 Elsewhere it marks a word boundary. Other escapes have preset maps ready
3390 /* Unrecognized escapes ar
[all...]
/macosx-10.9.5/CPANInternal-140/URI/
H A DURI.pm76 $str =~ s/([^$uric\#])/$URI::Escape::escapes{$1}/go;
207 $new_opaque =~ s/([^$uric])/$URI::Escape::escapes{$1}/go;
232 $new_frag =~ s/([^$uric])/$URI::Escape::escapes{$1}/go;
/macosx-10.9.5/apache-786.1/httpd/srclib/pcre/
H A Dpcre.c108 static const short int escapes[] = { variable
122 static const short int escapes[] = { variable
889 * Handle escapes *
928 else if ((i = escapes[c - '0']) != 0) c = i;
932 else if ((i = escapes[c - 0x48]) != 0) c = i;
942 /* A number of Perl escapes are not handled by PCRE. We give an explicit
1053 /* Other special escapes not starting with a digit are straightforward */
1076 /* PCRE_EXTRA enables extensions to Perl in the matter of escapes. Any
2432 it marks a word boundary. Other escapes have preset maps ready to
2500 /* Unrecognized escapes ar
[all...]

Completed in 229 milliseconds

12