/external/pcre/dist/ |
pcrecpp.cc | 114 int pcre_options = 0; local 115 pcre_options = options_.all_options(); 133 re = pcre_compile(pattern_.c_str(), pcre_options, 141 re = pcre_compile(wrapped.c_str(), pcre_options, 353 static int NewlineMode(int pcre_options) { 357 if (pcre_options & (PCRE_NEWLINE_CRLF|PCRE_NEWLINE_CR|PCRE_NEWLINE_LF| 359 newline_mode = (pcre_options &
|
pcregrep.c | 173 static int pcre_options = 0; variable [all...] |
/external/regex-re2/util/ |
pcre.h | 191 class PCRE_Options; 227 PCRE(const char *pattern, const PCRE_Options& re_option); 228 PCRE(const string& pattern, const PCRE_Options& re_option); 516 // PCRE_Options allow you to set the PCRE::Options, plus any pcre 528 class PCRE_Options { 531 PCRE_Options() : option_(PCRE::None), match_limit_(0), stack_limit_(0), report_errors_(true) {}
|
pcre.cc | 87 PCRE::PCRE(const string& pattern, const PCRE_Options& re_option) { 92 PCRE::PCRE(const char *pattern, const PCRE_Options& re_option) { [all...] |
/external/libselinux/src/ |
label_file.c | 582 int i, rc, file_stem, pcre_options = 0; local 616 pcre_options |= PCRE_PARTIAL_SOFT; 634 rc = pcre_exec(spec_arr[i].regex, spec_arr[i].sd, key, strlen(key), 0, pcre_options, NULL, 0); 636 rc = pcre_exec(spec_arr[i].regex, spec_arr[i].sd, buf, strlen(buf), 0, pcre_options, NULL, 0);
|
/external/regex-re2/re2/testing/ |
tester.cc | 252 PCRE_Options o;
|