Lines Matching defs:get_options
1430 unsigned long int magic, get_options;
1478 new_info(re, NULL, PCRE_INFO_OPTIONS, &get_options);
1479 use_utf8 = (get_options & PCRE_UTF8) != 0;
1711 unsigned long int get_options;
1760 new_info(re, NULL, PCRE_INFO_OPTIONS, &get_options);
1761 if ((get_options & PCRE_UTF8) != 0) use_utf8 = 1;
1864 /* We already have the options in get_options (see above) */
1903 if (old_options != (int)get_options) fprintf(outfile,
1905 get_options, old_options);
1935 if (get_options == 0) fprintf(outfile, "No options\n");
1937 ((get_options & PCRE_ANCHORED) != 0)? " anchored" : "",
1938 ((get_options & PCRE_CASELESS) != 0)? " caseless" : "",
1939 ((get_options & PCRE_EXTENDED) != 0)? " extended" : "",
1940 ((get_options & PCRE_MULTILINE) != 0)? " multiline" : "",
1941 ((get_options & PCRE_FIRSTLINE) != 0)? " firstline" : "",
1942 ((get_options & PCRE_DOTALL) != 0)? " dotall" : "",
1943 ((get_options & PCRE_BSR_ANYCRLF) != 0)? " bsr_anycrlf" : "",
1944 ((get_options & PCRE_BSR_UNICODE) != 0)? " bsr_unicode" : "",
1945 ((get_options & PCRE_DOLLAR_ENDONLY) != 0)? " dollar_endonly" : "",
1946 ((get_options & PCRE_EXTRA) != 0)? " extra" : "",
1947 ((get_options & PCRE_UNGREEDY) != 0)? " ungreedy" : "",
1948 ((get_options & PCRE_NO_AUTO_CAPTURE) != 0)? " no_auto_capture" : "",
1949 ((get_options & PCRE_UTF8) != 0)? " utf8" : "",
1950 ((get_options & PCRE_UCP) != 0)? " ucp" : "",
1951 ((get_options & PCRE_NO_UTF8_CHECK) != 0)? " no_utf8_check" : "",
1952 ((get_options & PCRE_NO_START_OPTIMIZE) != 0)? " no_start_optimize" : "",
1953 ((get_options & PCRE_DUPNAMES) != 0)? " dupnames" : "");
1957 switch (get_options & PCRE_NEWLINE_BITS)