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() {
274 void* RegExpUnparser::VisitLookaround(RegExpLookaround* that, void* data) {
276 os_ << (that->type() == RegExpLookaround::LOOKAHEAD ? "->" : "<-");
regexp-parser.h 235 RegExpLookaround::Type lookaround_type,
253 RegExpLookaround::Type lookaround_type() const { return lookaround_type_; }
277 const RegExpLookaround::Type lookaround_type_;
regexp-parser.cc 184 RegExpParserState initial_state(nullptr, INITIAL, RegExpLookaround::LOOKAHEAD,
230 body = new (zone()) RegExpLookaround(
577 RegExpLookaround::Type lookaround_type = state->lookaround_type();
592 lookaround_type = RegExpLookaround::LOOKAHEAD;
597 lookaround_type = RegExpLookaround::LOOKAHEAD;
666 lookaround_type = RegExpLookaround::LOOKBEHIND;
671 lookaround_type = RegExpLookaround::LOOKBEHIND;
    [all...]
regexp-ast.h 503 class RegExpLookaround final : public RegExpTree {
507 RegExpLookaround(RegExpTree* body, bool is_positive, int capture_count,
517 RegExpLookaround* AsLookaround() override;
jsregexp.cc     [all...]

Completed in 66 milliseconds