Lines Matching refs:get_options

3468   unsigned long int get_options;  in main()  local
3642 if (new_info(re, NULL, PCRE_INFO_OPTIONS, &get_options) < 0) in main()
3648 use_utf = (get_options & PCRE_UTF8) != 0; in main()
4057 if (new_info(re, NULL, PCRE_INFO_OPTIONS, &get_options) < 0) in main()
4059 if ((get_options & PCRE_UTF8) != 0) use_utf = 1; in main()
4232 if (get_options == 0) fprintf(outfile, "No options\n"); in main()
4234 ((get_options & PCRE_ANCHORED) != 0)? " anchored" : "", in main()
4235 ((get_options & PCRE_CASELESS) != 0)? " caseless" : "", in main()
4236 ((get_options & PCRE_EXTENDED) != 0)? " extended" : "", in main()
4237 ((get_options & PCRE_MULTILINE) != 0)? " multiline" : "", in main()
4238 ((get_options & PCRE_FIRSTLINE) != 0)? " firstline" : "", in main()
4239 ((get_options & PCRE_DOTALL) != 0)? " dotall" : "", in main()
4240 ((get_options & PCRE_BSR_ANYCRLF) != 0)? " bsr_anycrlf" : "", in main()
4241 ((get_options & PCRE_BSR_UNICODE) != 0)? " bsr_unicode" : "", in main()
4242 ((get_options & PCRE_DOLLAR_ENDONLY) != 0)? " dollar_endonly" : "", in main()
4243 ((get_options & PCRE_EXTRA) != 0)? " extra" : "", in main()
4244 ((get_options & PCRE_UNGREEDY) != 0)? " ungreedy" : "", in main()
4245 ((get_options & PCRE_NO_AUTO_CAPTURE) != 0)? " no_auto_capture" : "", in main()
4246 ((get_options & PCRE_NO_AUTO_POSSESS) != 0)? " no_auto_possessify" : "", in main()
4247 ((get_options & PCRE_UTF8) != 0)? " utf" : "", in main()
4248 ((get_options & PCRE_UCP) != 0)? " ucp" : "", in main()
4249 ((get_options & PCRE_NO_UTF8_CHECK) != 0)? " no_utf_check" : "", in main()
4250 ((get_options & PCRE_NO_START_OPTIMIZE) != 0)? " no_start_optimize" : "", in main()
4251 ((get_options & PCRE_DUPNAMES) != 0)? " dupnames" : "", in main()
4252 ((get_options & PCRE_NEVER_UTF) != 0)? " never_utf" : ""); in main()
4256 switch (get_options & PCRE_NEWLINE_BITS) in main()