coptions          274 ext/pcre/php_pcre.c 	int					 coptions = 0;
coptions          387 ext/pcre/php_pcre.c 			case 'i':	coptions |= PCRE_CASELESS;		break;
coptions          388 ext/pcre/php_pcre.c 			case 'm':	coptions |= PCRE_MULTILINE;		break;
coptions          389 ext/pcre/php_pcre.c 			case 's':	coptions |= PCRE_DOTALL;		break;
coptions          390 ext/pcre/php_pcre.c 			case 'x':	coptions |= PCRE_EXTENDED;		break;
coptions          393 ext/pcre/php_pcre.c 			case 'A':	coptions |= PCRE_ANCHORED;		break;
coptions          394 ext/pcre/php_pcre.c 			case 'D':	coptions |= PCRE_DOLLAR_ENDONLY;break;
coptions          396 ext/pcre/php_pcre.c 			case 'U':	coptions |= PCRE_UNGREEDY;		break;
coptions          397 ext/pcre/php_pcre.c 			case 'X':	coptions |= PCRE_EXTRA;			break;
coptions          398 ext/pcre/php_pcre.c 			case 'u':	coptions |= PCRE_UTF8;
coptions          403 ext/pcre/php_pcre.c 						coptions |= PCRE_UCP;
coptions          434 ext/pcre/php_pcre.c 					  coptions,
coptions          488 ext/pcre/php_pcre.c 	new_entry.compile_options = coptions;
coptions           38 ext/pcre/php_pcre.h PHPAPI pcre* pcre_get_compiled_regex_ex(zend_string *regex, pcre_extra **extra, int *preg_options, int *coptions);