OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RE_Options
(Results
1 - 3
of
3
) sorted by null
/external/pcre/dist/
pcrecpp.h
156
// pcrecpp::
RE_Options
options;
173
// The C++ wrapper defines an auxiliary class,
RE_Options
, as a vehicle
202
//
RE_Options
& set_caseless(bool),
217
// a
RE_Options
object, set the appropriate options, and pass this
220
//
RE_options
opt;
225
//
RE_options
has two constructors. The default constructor takes no
230
// RE(pattern,
RE_Options
(PCRE_CASELESS|PCRE_MULTILINE)).PartialMatch(str);
234
//
RE_Options
().set_caseless(true).set_multiline(true)).PartialMatch(str);
238
// convenience functions that return a
RE_Options
class with the
243
// through the pains of declaring a
RE_Options
object and setting severa
[
all
...]
pcrecpp_unittest.cc
48
using pcrecpp::
RE_Options
;
336
RE re(t->regexp,
RE_Options
(PCRE_NEWLINE_CRLF).set_utf8(support_utf8));
349
RE re("b*",
RE_Options
(PCRE_NEWLINE_CR).set_utf8(support_utf8));
356
RE re("b*",
RE_Options
(PCRE_NEWLINE_LF).set_utf8(support_utf8));
453
RE_Options
options_ml;
468
RE_Options
options_mlr;
486
static void TestQuoteMeta(string unquoted,
RE_Options
options =
RE_Options
()) {
495
RE_Options
options =
RE_Options
()) {
[
all
...]
pcrecpp.cc
81
static
RE_Options
default_options;
83
void RE::Init(const string& pat, const
RE_Options
* options) {
113
// First, convert
RE_Options
into pcre options
Completed in 54 milliseconds