Lines Matching refs:quote
538 char *pos = *line, quote; in php_ap_getword() local
542 if ((quote = *pos) == '"' || quote == '\'') { in php_ap_getword()
544 while (*pos && *pos != quote) { in php_ap_getword()
545 if (*pos == '\\' && pos[1] && pos[1] == quote) { in php_ap_getword()
572 static char *substring_conf(char *start, int len, char quote TSRMLS_DC) in substring_conf()
579 if (start[i] == '\\' && (start[i + 1] == '\\' || (quote && start[i + 1] == quote))) { in substring_conf()
604 char *str = *line, *strend, *res, quote; in php_ap_getword_conf() local
622 if ((quote = *str) == '"' || quote == '\'') { in php_ap_getword_conf()
625 while (*strend && *strend != quote) { in php_ap_getword_conf()
626 if (*strend == '\\' && strend[1] && strend[1] == quote) { in php_ap_getword_conf()
632 if (*strend && *strend == quote) { in php_ap_getword_conf()
640 res = substring_conf(str + 1, strend - str - 1, quote TSRMLS_CC); in php_ap_getword_conf()
642 if (*strend == quote) { in php_ap_getword_conf()