Lines Matching defs:escaped
72 int escaped; /* If non-zero, backslashes in the input line are */
75 /* the listed completions will also be escaped with */
231 size_t prefix_len, int escaped);
587 int escaped = 0; /* True if the last character was a backslash */
601 * when either the end of the string is reached, or an un-escaped colon
604 while(*pptr && (escaped || *pptr != ':'))
605 escaped = !escaped && *pptr++ == '\\';
667 int escaped = 0; /* True if the last character was a backslash */
674 * or un-escaped colon separator is seen.
677 (!escaped && *sptr == ':'))
682 if(!literal && !escaped && *sptr == '\\') {
683 escaped = 1;
685 escaped = 0;
1184 ppc->escaped = 1;
1308 prefix = pca_prepare_prefix(pc, start_path, prefix_len, ppc->escaped);
1370 ppc->escaped))
1392 prefix = pca_prepare_prefix(pc, start_path, prefix_len, ppc->escaped);
1412 if(pca_prepare_suffix(pc, filename + prefix_len, ppc->escaped) ||
1420 prefix = pca_prepare_prefix(pc, start_path, prefix_len, ppc->escaped);
1430 * Using the work buffer pc->path, make a suitably escaped copy of a
1486 * Make a copy with special characters escaped?
1555 * escaped int If true, return a copy with escapes removed.
1562 size_t prefix_len, int escaped)
1567 if(escaped) {
1595 ppc->escaped = !literal;