Home | History | Annotate | Download | only in MagickCore

Lines Matching defs:escape

205         escape;
209 case '"': escape='"'; break;
210 case '\'': escape='\''; break;
211 case '`': escape='\''; break;
212 case '{': escape='}'; break;
213 default: escape=(*p); break;
217 if ((*p == '\\') && ((*(p+1) == escape) || (*(p+1) == '\\')))
220 if (*p == escape)
652 % characters in the string can be preceded by a specifiable escape character
703 % o Escape character: A character which itself is ignored but which
705 % as escape characters. An escape in the last position of the string
707 % and non-escape) character. For example, assume white space, break
709 % further, assume that ^ is the escape character. Then, in the string
727 % const char *break_set,const char *quote,const char escape,
777 % o escape: the escape character (NOT a string ... only one
848 const char *break_set,const char *quote,const char escape,char *breaker,
943 if (c == (int) escape)