HomeSort by relevance Sort by last modified time
    Searched full:inner_scope (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/v8/src/
scopes.h 625 Scope(Scope* inner_scope, ScopeType type, Handle<ScopeInfo> scope_info,
629 Scope(Scope* inner_scope, Handle<String> catch_variable_name, Zone* zone);
631 void AddInnerScope(Scope* inner_scope) {
632 if (inner_scope != NULL) {
633 inner_scopes_.Add(inner_scope, zone_);
634 inner_scope->outer_scope_ = this;
scopes.cc 128 Scope::Scope(Scope* inner_scope,
150 AddInnerScope(inner_scope);
154 Scope::Scope(Scope* inner_scope, Handle<String> catch_variable_name, Zone* zone)
167 AddInnerScope(inner_scope);
1165 Scope* inner_scope = inner_scopes_[i]; local
1392 Scope* inner_scope = inner_scopes_.at(i); local
    [all...]
d8.cc     [all...]
  /external/v8/src/
scopes.h 591 Scope(Scope* inner_scope, ScopeType type, Handle<ScopeInfo> scope_info);
594 Scope(Scope* inner_scope, Handle<String> catch_variable_name);
596 void AddInnerScope(Scope* inner_scope) {
597 if (inner_scope != NULL) {
598 inner_scopes_.Add(inner_scope);
599 inner_scope->outer_scope_ = this;
scopes.cc 123 Scope::Scope(Scope* inner_scope,
142 AddInnerScope(inner_scope);
146 Scope::Scope(Scope* inner_scope, Handle<String> catch_variable_name)
157 AddInnerScope(inner_scope);
1069 Scope* inner_scope = inner_scopes_[i]; local
    [all...]
d8.cc 1089 HandleScope inner_scope; local
1136 HandleScope inner_scope; local
    [all...]
  /external/chromium_org/v8/test/cctest/
test-heap.cc 264 HandleScope inner_scope(isolate);
296 HandleScope inner_scope(isolate);
    [all...]
test-parsing.cc 1039 i::Scope* inner_scope = scope->inner_scopes()->at(0); local
    [all...]