HomeSort by relevance Sort by last modified time
    Searched refs:RegExpLookaround (Results 1 - 5 of 5) sorted by null

  /external/v8/src/regexp/
regexp-ast.cc 49 Interval RegExpLookaround::CaptureRegisters() {
123 bool RegExpLookaround::IsAnchoredAtStart() {
268 void* RegExpUnparser::VisitLookaround(RegExpLookaround* that, void* data) {
270 os_ << (that->type() == RegExpLookaround::LOOKAHEAD ? "->" : "<-");
regexp-parser.h 205 RegExpLookaround::Type lookaround_type,
220 RegExpLookaround::Type lookaround_type() { return lookaround_type_; }
237 RegExpLookaround::Type lookaround_type_;
regexp-parser.cc 144 RegExpParserState initial_state(NULL, INITIAL, RegExpLookaround::LOOKAHEAD, 0,
184 body = new (zone()) RegExpLookaround(
239 RegExpLookaround::Type lookaround_type = state->lookaround_type();
247 lookaround_type = RegExpLookaround::LOOKAHEAD;
251 lookaround_type = RegExpLookaround::LOOKAHEAD;
257 lookaround_type = RegExpLookaround::LOOKBEHIND;
    [all...]
regexp-ast.h 428 class RegExpLookaround final : public RegExpTree {
432 RegExpLookaround(RegExpTree* body, bool is_positive, int capture_count,
442 RegExpLookaround* AsLookaround() override;
jsregexp.cc     [all...]

Completed in 643 milliseconds