Home
last modified time | relevance | path

Searched refs:regexp_stack_ (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/regexp/
Dregexp-stack.cc14 : regexp_stack_(isolate->regexp_stack()) { in RegExpStackScope()
16 regexp_stack_->EnsureCapacity(0); in RegExpStackScope()
20 CHECK(!regexp_stack_->is_in_use()); in RegExpStackScope()
21 regexp_stack_->set_is_in_use(true); in RegExpStackScope()
27 regexp_stack_->Reset(); in ~RegExpStackScope()
28 DCHECK(!regexp_stack_->is_in_use()); in ~RegExpStackScope()
Dregexp-stack.h32 RegExpStack* stack() const { return regexp_stack_; } in stack()
35 RegExpStack* regexp_stack_;
/external/v8/src/execution/
Disolate.h1123 RegExpStack* regexp_stack() { return regexp_stack_; } in regexp_stack()
1792 RegExpStack* regexp_stack_ = nullptr; variable
Disolate.cc3165 delete regexp_stack_; in ThrowInternal()
3166 regexp_stack_ = nullptr; in ThrowInternal()
3513 regexp_stack_ = new RegExpStack(); in ThrowInternal()
3514 regexp_stack_->isolate_ = this; in ThrowInternal()