Lines Matching refs:delim
154 static const char *show_char(const char *s, size_t len, char prefix, char delim)
160 *p++ = delim;
163 *p++ = delim;
168 static const char *quote_char(const char *s, size_t len, char prefix, char delim)
175 if (delim == '"')
177 *p++ = delim;
183 if (delim == '"')
185 *p++ = delim;
593 char delim = type < TOKEN_STRING ? '\'' : '"';
595 for (escape = 0; escape || next != delim; next = nextchar(stream)) {
601 "missing terminating %c character", delim);
628 if (delim == '\'' && len && len <= 4) {