Home | History | Annotate | Download | only in src

Lines Matching refs:current_

110   HandleScope() : previous_(current_) {
111 current_.extensions = 0;
124 internal::Object** cur = current_.next;
125 if (cur == current_.limit) cur = Extend();
128 ASSERT(cur < current_.limit);
129 current_.next = cur + 1;
150 static v8::ImplementationUtilities::HandleScopeData current_;
156 *previous = current_;
157 current_.extensions = 0;
164 if (current_.extensions > 0) {
167 current_ = *previous;
169 ZapRange(current_.next, current_.limit);