Home
last modified time | relevance | path

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

/external/v8/src/
Dregexp-stack.cc35 : regexp_stack_(isolate->regexp_stack()) { in RegExpStackScope()
37 regexp_stack_->EnsureCapacity(0); in RegExpStackScope()
42 ASSERT(Isolate::Current() == regexp_stack_->isolate_); in ~RegExpStackScope()
44 regexp_stack_->Reset(); in ~RegExpStackScope()
Dregexp-stack.h49 RegExpStack* stack() const { return regexp_stack_; } in stack()
52 RegExpStack* regexp_stack_;
Disolate.cc1473 regexp_stack_(NULL), in Isolate()
1610 delete regexp_stack_; in ~Isolate()
1611 regexp_stack_ = NULL; in ~Isolate()
1772 regexp_stack_ = new RegExpStack(); in Init()
1773 regexp_stack_->isolate_ = this; in Init()
Disolate.h908 RegExpStack* regexp_stack() { return regexp_stack_; } in regexp_stack()
1204 RegExpStack* regexp_stack_; variable