OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RegexpOp
(Results
1 - 3
of
3
) sorted by null
/external/regex-re2/re2/
regexp.h
95
enum
RegexpOp
{
313
RegexpOp
op() { return static_cast<
RegexpOp
>(op_); }
434
explicit Regexp(
RegexpOp
op, ParseFlags parse_flags);
457
static Regexp* ConcatOrAlternate(
RegexpOp
op, Regexp** subs, int nsubs,
505
// uint8 instead of
RegexpOp
to control space usage.
parse.cc
66
bool PushSimpleOp(
RegexpOp
op);
83
bool PushRepeatOp(
RegexpOp
op, const StringPiece& s, bool nongreedy);
90
bool IsMarker(
RegexpOp
op);
146
void DoCollapse(
RegexpOp
op);
163
const
RegexpOp
kLeftParen = static_cast<
RegexpOp
>(kMaxRegexpOp+1);
164
const
RegexpOp
kVerticalBar = static_cast<
RegexpOp
>(kMaxRegexpOp+2);
439
bool Regexp::ParseState::PushSimpleOp(
RegexpOp
op) {
447
bool Regexp::ParseState::PushRepeatOp(
RegexpOp
op, const StringPiece& s
[
all
...]
regexp.cc
16
Regexp::Regexp(
RegexpOp
op, ParseFlags parse_flags)
209
Regexp* Regexp::ConcatOrAlternate(
RegexpOp
op, Regexp** sub, int nsub,
Completed in 366 milliseconds