Home
last modified time | relevance | path

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

/external/chromium_org/third_party/cython/src/Cython/Compiler/
DSymtab.py297 def __init__(self, name, outer_scope, parent_scope): argument
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 and self.outer_scope.lookup(name))
830 outer = self.outer_scope
837 self.outer_scope.add_include_file(filename)
879 if self.outer_scope is not None:
[all …]
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,
DVisitor.py381 self.enter_scope(node, self.current_env().outer_scope)
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)
DPyrexTypes.py2873 if env.outer_scope is None:
2892 if env.outer_scope is None:
DExprNodes.py6401 def init_scope(self, outer_scope, expr_scope=None): argument
6405 self.expr_scope = Symtab.GeneratorExpressionScope(outer_scope)
/external/chromium_org/v8/src/
Dscopes.cc70 Scope::Scope(Scope* outer_scope, ScopeType scope_type, in Scope() argument
86 SetDefaults(scope_type, outer_scope, Handle<ScopeInfo>::null()); in Scope()
88 DCHECK(scope_type == GLOBAL_SCOPE || outer_scope != NULL); in Scope()
150 Scope* outer_scope, in SetDefaults() argument
152 outer_scope_ = outer_scope; in SetDefaults()
164 asm_function_ = outer_scope != NULL && outer_scope->asm_module_; in SetDefaults()
166 strict_mode_ = outer_scope != NULL ? outer_scope->strict_mode_ : SLOPPY; in SetDefaults()
170 force_context_allocation_ = (outer_scope != NULL && !is_function_scope()) in SetDefaults()
171 ? outer_scope->has_forced_context_allocation() : false; in SetDefaults()
203 for (Scope* s = innermost_scope; s != NULL; s = s->outer_scope()) { in DeserializeScopeChain()
[all …]
Dscopes.h75 Scope(Scope* outer_scope, ScopeType scope_type,
333 Scope* outer_scope() const { return outer_scope_; } in outer_scope() function
620 Scope* outer_scope,
Dpreparser.h941 explicit PreParserScope(PreParserScope* outer_scope, ScopeType scope_type,
944 strict_mode_ = outer_scope ? outer_scope->strict_mode() : SLOPPY; in scope_type_()
1252 PreParserScope NewScope(PreParserScope* outer_scope, ScopeType scope_type) { in NewScope() argument
1253 return PreParserScope(outer_scope, scope_type); in NewScope()
Dhydrogen.cc4532 Scope* outer_scope = scope(); in VisitBlock() local
4534 BreakAndContinueInfo break_info(stmt, outer_scope); in VisitBlock()
4564 set_scope(outer_scope); in VisitBlock()
4687 Scope* outer_scope = NULL; in VisitContinueStatement() local
4692 &outer_scope, &drop_extra); in VisitContinueStatement()
4695 int context_pop_count = inner_scope->ContextChainLength(outer_scope); in VisitContinueStatement()
4719 Scope* outer_scope = NULL; in VisitBreakStatement() local
4724 &outer_scope, &drop_extra); in VisitBreakStatement()
4727 int context_pop_count = inner_scope->ContextChainLength(outer_scope); in VisitBreakStatement()
Dliveedit.cc796 current_scope = current_scope->outer_scope(); in SerializeFunctionScope()
Dd8.cc1156 HandleScope outer_scope(isolate); in RunShell() local
/external/chromium_org/v8/test/cctest/
Dtest-heap.cc124 HandleScope outer_scope(isolate); in TEST() local
1791 v8::HandleScope outer_scope(isolate); in TEST() local
1837 v8::HandleScope outer_scope(isolate); in TEST() local
1881 v8::HandleScope outer_scope(isolate); in TEST() local
1925 v8::HandleScope outer_scope(isolate); in TEST() local
1979 v8::HandleScope outer_scope(CcTest::isolate()); in TEST() local
2095 v8::HandleScope outer_scope(CcTest::isolate()); in TEST() local
2152 v8::HandleScope outer_scope(CcTest::isolate()); in TEST() local
3923 HandleScope outer_scope(heap->isolate()); in TEST() local
3966 HandleScope outer_scope(heap->isolate()); in TEST() local
[all …]
Dtest-strings.cc653 HandleScope outer_scope(isolate); in TestStringCharacterStream() local
Dtest-api.cc15609 v8::HandleScope outer_scope(isolate); in TEST() local
22346 HandleScope outer_scope(CcTest::isolate()); in TEST() local
/external/protobuf/src/google/protobuf/
Ddescriptor.cc3258 string outer_scope; in BuildEnumValue() local
3260 outer_scope = file_->package(); in BuildEnumValue()
3262 outer_scope = parent->containing_type()->full_name(); in BuildEnumValue()
3265 if (outer_scope.empty()) { in BuildEnumValue()
3266 outer_scope = "the global scope"; in BuildEnumValue()
3268 outer_scope = "\"" + outer_scope + "\""; in BuildEnumValue()
3276 + outer_scope + ", not just within \"" + parent->name() + "\"."); in BuildEnumValue()
/external/chromium_org/third_party/protobuf/src/google/protobuf/
Ddescriptor.cc3652 string outer_scope; in BuildEnumValue() local
3654 outer_scope = file_->package(); in BuildEnumValue()
3656 outer_scope = parent->containing_type()->full_name(); in BuildEnumValue()
3659 if (outer_scope.empty()) { in BuildEnumValue()
3660 outer_scope = "the global scope"; in BuildEnumValue()
3662 outer_scope = "\"" + outer_scope + "\""; in BuildEnumValue()
3670 + outer_scope + ", not just within \"" + parent->name() + "\"."); in BuildEnumValue()
/external/chromium_org/v8/src/arm64/
Dfull-codegen-arm64.cc1387 s = s->outer_scope(); in EmitLoadGlobalCheckExtensions()
1427 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) { in ContextSlotOperandCheckExtensions()
/external/chromium_org/v8/src/x87/
Dfull-codegen-x87.cc1313 s = s->outer_scope(); in EmitLoadGlobalCheckExtensions()
1360 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) { in ContextSlotOperandCheckExtensions()
/external/chromium_org/v8/src/ia32/
Dfull-codegen-ia32.cc1324 s = s->outer_scope(); in EmitLoadGlobalCheckExtensions()
1371 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) { in ContextSlotOperandCheckExtensions()
/external/chromium_org/v8/src/x64/
Dfull-codegen-x64.cc1358 s = s->outer_scope(); in EmitLoadGlobalCheckExtensions()
1405 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) { in ContextSlotOperandCheckExtensions()
/external/chromium_org/v8/src/mips/
Dfull-codegen-mips.cc1386 s = s->outer_scope(); in EmitLoadGlobalCheckExtensions()
1429 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) { in ContextSlotOperandCheckExtensions()
/external/chromium_org/v8/src/arm/
Dfull-codegen-arm.cc1401 s = s->outer_scope(); in EmitLoadGlobalCheckExtensions()
1446 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) { in ContextSlotOperandCheckExtensions()
/external/chromium_org/v8/src/mips64/
Dfull-codegen-mips64.cc1381 s = s->outer_scope(); in EmitLoadGlobalCheckExtensions()
1424 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) { in ContextSlotOperandCheckExtensions()