Home
last modified time | relevance | path

Searched refs:current_scope (Results 1 – 15 of 15) sorted by relevance

/external/mesa3d/src/mesa/program/
Dsymbol_table.c80 struct scope_level *current_scope; member
89 struct scope_level *const scope = table->current_scope; in _mesa_symbol_table_pop_scope()
92 table->current_scope = scope->next; in _mesa_symbol_table_pop_scope()
127 scope->next = table->current_scope; in _mesa_symbol_table_push_scope()
128 table->current_scope = scope; in _mesa_symbol_table_push_scope()
205 new_sym->next_with_same_scope = table->current_scope->symbols; in _mesa_symbol_table_add_symbol()
209 table->current_scope->symbols = new_sym; in _mesa_symbol_table_add_symbol()
250 for (top_scope = table->current_scope; top_scope->next != NULL; in _mesa_symbol_table_add_global_symbol()
308 while (table->current_scope != NULL) { in _mesa_symbol_table_dtor()
/external/pdfium/
DPRESUBMIT.py218 current_scope = []
224 scopes.append(current_scope)
225 current_scope = []
229 current_scope.append((line_num, line))
230 scopes.append(current_scope)
/external/python/parse_type/tasks/
Dtest.py147 current_scope = None
151 if scope != current_scope:
156 current_scope = scope
/external/v8/src/torque/
Ddeclaration-visitor.h34 CurrentScope::Scope current_scope(GetOrCreateNamespace(decl->name)); in Predeclare()
61 CurrentScope::Scope current_scope(GetOrCreateNamespace(decl->name)); in Visit()
Dglobal-context.cc18 CurrentScope::Scope current_scope(nullptr); in DEFINE_CONTEXTUAL_VARIABLE() local
Dtype-visitor.cc23 Scope* current_scope = CurrentScope::Get(); in ComputeType() local
25 current_scope = TypeOracle::CreateGenericTypeInstantiationNamespace(); in ComputeType()
26 current_scope->SetSpecializationRequester( in ComputeType()
30 CurrentScope::Scope new_current_scope_scope(current_scope); in ComputeType()
Dimplementation-visitor.cc242 CurrentScope::Scope current_scope(macro); in InlineMacro() local
508 CurrentScope::Scope current_scope(builtin); in Visit() local
3191 CurrentScope::Scope current_scope(declarable->ParentScope()); in Visit() local
/external/tensorflow/tensorflow/python/ops/
Dvariable_scope.py1403 self.current_scope = VariableScope(False)
1437 return get_variable_scope_store().current_scope
1951 self._old = self._var_scope_store.current_scope
1999 self._var_scope_store.current_scope = variable_scope_object
2004 if (self._var_scope_store.current_scope is
2012 self._var_scope_store.current_scope = self._old
2037 current_scope = get_variable_scope()
2038 name = current_scope.name + "/" + prefix if current_scope.name else prefix
Dsummary_ops_v2.py605 current_scope = ops.get_name_scope()
606 tag = current_scope + "/" + name if current_scope else name
/external/tensorflow/tensorflow/python/framework/
Dfunc_graph.py876 current_scope = variable_scope.get_variable_scope()
877 default_use_recource = current_scope.use_resource
878 current_scope.set_use_resource(True)
991 current_scope.set_use_resource(default_use_recource)
/external/antlr/runtime/Ruby/lib/antlr3/
Dtask.rb54 @namespace = Rake.application.current_scope
/external/v8/src/ast/
Dscopes.cc353 Scope* current_scope = nullptr; in DeserializeScopeChain() local
426 if (current_scope != nullptr) { in DeserializeScopeChain()
427 outer_scope->AddInnerScope(current_scope); in DeserializeScopeChain()
429 current_scope = outer_scope; in DeserializeScopeChain()
430 if (innermost_scope == nullptr) innermost_scope = current_scope; in DeserializeScopeChain()
442 script_scope->AddInnerScope(current_scope); in DeserializeScopeChain()
/external/v8/src/interpreter/
Dbytecode-generator.cc843 : generator_(generator), outer_scope_(generator->current_scope()) { in CurrentScope()
850 if (outer_scope_ != generator_->current_scope()) { in ~CurrentScope()
1436 CurrentScope current_scope(this, stmt->scope()); in VisitBlock() local
2146 DCHECK(expr->scope()->outer_scope() == current_scope()); in VisitFunctionLiteral()
2432 CurrentScope current_scope(this, expr->scope()); in VisitClassLiteral() local
3169 current_scope()->ContextChainLengthUntilOutermostSloppyEval(); in BuildVariableLoad()
4965 .LoadLiteral(Smi::FromInt(current_scope()->start_position())) in VisitCall()
6174 DCHECK_EQ(current_scope(), closure_scope()); in BuildNewLocalActivationContext()
6533 CurrentScope current_scope(this, scope); in VisitInScope() local
6548 return current_scope()->language_mode(); in language_mode()
Dbytecode-generator.h454 inline Scope* current_scope() const { return current_scope_; } in current_scope() function
/external/v8/src/wasm/
Dwasm-code-manager.cc2103 WasmCodeRefScope* current_scope = current_code_refs_scope; in AddRef() local
2104 DCHECK_NOT_NULL(current_scope); in AddRef()
2105 auto entry = current_scope->code_ptrs_.insert(code); in AddRef()