/external/chromium_org/third_party/cython/src/Cython/Compiler/ |
D | Symtab.py | 297 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 …]
|
D | ParseTreeTransforms.py | 1628 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,
|
D | Visitor.py | 381 self.enter_scope(node, self.current_env().outer_scope)
|
D | Nodes.py | 1211 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)
|
D | PyrexTypes.py | 2873 if env.outer_scope is None: 2892 if env.outer_scope is None:
|
D | ExprNodes.py | 6401 def init_scope(self, outer_scope, expr_scope=None): argument 6405 self.expr_scope = Symtab.GeneratorExpressionScope(outer_scope)
|
/external/chromium_org/v8/src/ |
D | scopes.cc | 70 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 …]
|
D | scopes.h | 75 Scope(Scope* outer_scope, ScopeType scope_type, 333 Scope* outer_scope() const { return outer_scope_; } in outer_scope() function 620 Scope* outer_scope,
|
D | preparser.h | 941 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()
|
D | hydrogen.cc | 4532 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()
|
D | liveedit.cc | 796 current_scope = current_scope->outer_scope(); in SerializeFunctionScope()
|
D | d8.cc | 1156 HandleScope outer_scope(isolate); in RunShell() local
|
/external/chromium_org/v8/test/cctest/ |
D | test-heap.cc | 124 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 …]
|
D | test-strings.cc | 653 HandleScope outer_scope(isolate); in TestStringCharacterStream() local
|
D | test-api.cc | 15609 v8::HandleScope outer_scope(isolate); in TEST() local 22346 HandleScope outer_scope(CcTest::isolate()); in TEST() local
|
/external/protobuf/src/google/protobuf/ |
D | descriptor.cc | 3258 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/ |
D | descriptor.cc | 3652 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/ |
D | full-codegen-arm64.cc | 1387 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/ |
D | full-codegen-x87.cc | 1313 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/ |
D | full-codegen-ia32.cc | 1324 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/ |
D | full-codegen-x64.cc | 1358 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/ |
D | full-codegen-mips.cc | 1386 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/ |
D | full-codegen-arm.cc | 1401 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/ |
D | full-codegen-mips64.cc | 1381 s = s->outer_scope(); in EmitLoadGlobalCheckExtensions() 1424 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) { in ContextSlotOperandCheckExtensions()
|