Searched refs:outer_scope (Results 1 - 24 of 24) sorted by relevance

/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DSymtab.py255 # outer_scope Scope or None Enclosing scope
297 def __init__(self, name, outer_scope, parent_scope):
298 # The outer_scope is the next scope in the lookup chain.
301 self.outer_scope = outer_scope
401 return self.outer_scope.global_scope()
405 return self.outer_scope.builtin_scope()
574 entry.type.namespace = self.outer_scope.lookup(self.name).type
626 return self.outer_scope.declare_builtin(name, pos)
768 or (self.outer_scope an
[all...]
H A DParseTreeTransforms.py1628 genv = genv.outer_scope
2094 outer_scope = self.scope
2098 self.scope = outer_scope
2302 cscope = cscope.outer_scope
2978 qname = '%s.%s.%s' % (entry.scope.outer_scope.qualified_name,
H A DVisitor.py381 self.enter_scope(node, self.current_env().outer_scope)
H A DNodes.py1211 env.directives = env.outer_scope.directives
1548 genv = genv.outer_scope
1551 outer_scope = genv,
1556 outer_scope=genv,
1631 cenv = cenv.outer_scope
4106 genv = genv.outer_scope
4107 cenv = self.scope = PyClassScope(name = self.name, outer_scope = genv)
H A DPyrexTypes.py2873 if env.outer_scope is None:
2892 if env.outer_scope is None:
H A DExprNodes.py6401 def init_scope(self, outer_scope, expr_scope=None):
6405 self.expr_scope = Symtab.GeneratorExpressionScope(outer_scope)
/external/chromium_org/v8/src/
H A Dscopes.cc70 Scope::Scope(Scope* outer_scope, ScopeType scope_type, argument
86 SetDefaults(scope_type, outer_scope, Handle<ScopeInfo>::null());
88 DCHECK(scope_type == GLOBAL_SCOPE || outer_scope != NULL);
150 Scope* outer_scope,
152 outer_scope_ = outer_scope;
164 asm_function_ = outer_scope != NULL && outer_scope->asm_module_;
166 strict_mode_ = outer_scope != NULL ? outer_scope->strict_mode_ : SLOPPY;
170 force_context_allocation_ = (outer_scope !
149 SetDefaults(ScopeType scope_type, Scope* outer_scope, Handle<ScopeInfo> scope_info) argument
[all...]
H A Dscopes.h75 Scope(Scope* outer_scope, ScopeType scope_type,
333 Scope* outer_scope() const { return outer_scope_; } function in class:v8::internal::Scope
620 Scope* outer_scope,
H A Dpreparser.h941 explicit PreParserScope(PreParserScope* outer_scope, ScopeType scope_type, argument
944 strict_mode_ = outer_scope ? outer_scope->strict_mode() : SLOPPY;
1252 PreParserScope NewScope(PreParserScope* outer_scope, ScopeType scope_type) { argument
1253 return PreParserScope(outer_scope, scope_type);
H A Dhydrogen.cc4532 Scope* outer_scope = scope(); local
4534 BreakAndContinueInfo break_info(stmt, outer_scope);
4564 set_scope(outer_scope);
4687 Scope* outer_scope = NULL; local
4692 &outer_scope, &drop_extra);
4695 int context_pop_count = inner_scope->ContextChainLength(outer_scope);
4719 Scope* outer_scope = NULL; local
4724 &outer_scope, &drop_extra);
4727 int context_pop_count = inner_scope->ContextChainLength(outer_scope);
H A Dliveedit.cc796 current_scope = current_scope->outer_scope();
H A Dd8.cc1156 HandleScope outer_scope(isolate);
/external/chromium_org/v8/test/cctest/
H A Dtest-heap.cc124 HandleScope outer_scope(isolate);
1791 v8::HandleScope outer_scope(isolate);
1837 v8::HandleScope outer_scope(isolate);
1881 v8::HandleScope outer_scope(isolate);
1925 v8::HandleScope outer_scope(isolate);
1979 v8::HandleScope outer_scope(CcTest::isolate());
2095 v8::HandleScope outer_scope(CcTest::isolate());
2152 v8::HandleScope outer_scope(CcTest::isolate());
3923 HandleScope outer_scope(heap->isolate());
3966 HandleScope outer_scope(hea
[all...]
H A Dtest-strings.cc653 HandleScope outer_scope(isolate);
H A Dtest-api.cc15609 v8::HandleScope outer_scope(isolate);
22346 HandleScope outer_scope(CcTest::isolate());
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddescriptor.cc3652 string outer_scope; local
3654 outer_scope = file_->package();
3656 outer_scope = parent->containing_type()->full_name();
3659 if (outer_scope.empty()) {
3660 outer_scope = "the global scope";
3662 outer_scope = "\"" + outer_scope + "\"";
3670 + outer_scope + ", not just within \"" + parent->name() + "\".");
/external/protobuf/src/google/protobuf/
H A Ddescriptor.cc3258 string outer_scope; local
3260 outer_scope = file_->package();
3262 outer_scope = parent->containing_type()->full_name();
3265 if (outer_scope.empty()) {
3266 outer_scope = "the global scope";
3268 outer_scope = "\"" + outer_scope + "\"";
3276 + outer_scope + ", not just within \"" + parent->name() + "\".");
/external/chromium_org/v8/src/arm/
H A Dfull-codegen-arm.cc1401 s = s->outer_scope();
1446 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) {
/external/chromium_org/v8/src/arm64/
H A Dfull-codegen-arm64.cc1387 s = s->outer_scope();
1427 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) {
/external/chromium_org/v8/src/ia32/
H A Dfull-codegen-ia32.cc1324 s = s->outer_scope();
1371 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) {
/external/chromium_org/v8/src/mips/
H A Dfull-codegen-mips.cc1386 s = s->outer_scope();
1429 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) {
/external/chromium_org/v8/src/mips64/
H A Dfull-codegen-mips64.cc1381 s = s->outer_scope();
1424 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) {
/external/chromium_org/v8/src/x64/
H A Dfull-codegen-x64.cc1358 s = s->outer_scope();
1405 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) {
/external/chromium_org/v8/src/x87/
H A Dfull-codegen-x87.cc1313 s = s->outer_scope();
1360 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) {

Completed in 1721 milliseconds