Lines Matching refs:re
215 // Create re string that will be used for RE and RE2.
216 string re = regexp_str.as_string();
220 re = "(?m)" + re;
222 re = "(?U)" + re;
224 re = "(?s)" + re;
233 re2_ = new RE2(re, options);
235 LOG(INFO) << "Cannot RE2: " << CEscape(re);
241 // Compile regexp to RE.
242 // PCRE as exposed by the RE interface isn't always usable.
258 re_ = new PCRE("("+re+")", o);
260 LOG(INFO) << "Cannot PCRE: " << CEscape(re);
436 // Work around RE interface bug: PCRE returns -1 as the
437 // offsets for an unmatched subexpression, and RE should