Lines Matching defs:options
80 // If the user doesn't ask for any options, we just use this one
83 void RE::Init(const string& pat, const RE_Options* options) {
85 if (options == NULL) {
88 options_ = *options;
113 // First, convert RE_Options into pcre options
524 // int options = 0;
526 int options = (options_.all_options() & PCRE_NO_UTF8_CHECK);
529 options |= PCRE_ANCHORED;
531 options |= PCRE_NOTEMPTY;
538 options,