/external/chromium_org/build/linux/unbundle/ |
re2.gyp | 20 # Chromium copy of re2 is patched to rename POSIX to POSIX_SYNTAX 24 '--define', 'POSIX=POSIX_SYNTAX',
|
/external/chromium_org/third_party/re2/patches/ |
rename-posix-option.patch | 11 + posix_syntax_(opt == RE2::POSIX_SYNTAX), 12 + longest_match_(opt == RE2::POSIX_SYNTAX), 25 + POSIX_SYNTAX, // POSIX syntax, leftmost-longest match
|
/external/chromium_org/third_party/re2/re2/ |
re2.h | 254 POSIX_SYNTAX, // POSIX syntax, leftmost-longest match 509 // posix_syntax (false) restrict regexps to POSIX egrep syntax 517 // with (?i) unless in posix_syntax mode) 519 // The following options are only consulted when posix_syntax == true. 520 // (When posix_syntax == false these features are always enabled and 581 bool posix_syntax() const { return posix_syntax_; } function in class:re2::RE2::Options [all...] |
re2.cc | 59 posix_syntax_(opt == RE2::POSIX_SYNTAX), 60 longest_match_(opt == RE2::POSIX_SYNTAX), 163 if (!posix_syntax()) [all...] |
/external/regex-re2/re2/ |
re2.h | 509 // posix_syntax (false) restrict regexps to POSIX egrep syntax 517 // with (?i) unless in posix_syntax mode) 519 // The following options are only consulted when posix_syntax == true. 520 // (When posix_syntax == false these features are always enabled and 593 bool posix_syntax() const { return posix_syntax_; } function in class:re2::RE2::Options [all...] |
re2.cc | 145 if (!posix_syntax()) [all...] |