Home
last modified time | relevance | path

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

/external/mesa3d/src/mesa/program/
Dsymbol_table.c105 struct scope_level *current_scope; member
139 for (scope = table->current_scope; scope != NULL; scope = scope->next) { in check_symbol_table()
161 struct scope_level *const scope = table->current_scope; in _mesa_symbol_table_pop_scope()
164 table->current_scope = scope->next; in _mesa_symbol_table_pop_scope()
191 scope->next = table->current_scope; in _mesa_symbol_table_push_scope()
192 table->current_scope = scope; in _mesa_symbol_table_push_scope()
364 sym->next_with_same_scope = table->current_scope->symbols; in _mesa_symbol_table_add_symbol()
373 table->current_scope->symbols = sym; in _mesa_symbol_table_add_symbol()
420 for (top_scope = table->current_scope in _mesa_symbol_table_add_global_symbol()
477 while (table->current_scope != NULL) { in _mesa_symbol_table_dtor()
/external/v8/src/
Dscopes.cc190 Scope* current_scope = NULL; in DeserializeScopeChain() local
195 Scope* with_scope = new(zone) Scope(current_scope, in DeserializeScopeChain()
200 current_scope = with_scope; in DeserializeScopeChain()
208 current_scope = new(zone) Scope(current_scope, in DeserializeScopeChain()
215 current_scope = new(zone) Scope(current_scope, in DeserializeScopeChain()
222 current_scope = new(zone) Scope(current_scope, in DeserializeScopeChain()
227 if (scope_info->IsAsmFunction()) current_scope->asm_function_ = true; in DeserializeScopeChain()
228 if (scope_info->IsAsmModule()) current_scope->asm_module_ = true; in DeserializeScopeChain()
231 current_scope = new(zone) Scope(current_scope, in DeserializeScopeChain()
239 current_scope = new (zone) Scope( in DeserializeScopeChain()
[all …]
Dliveedit.cc770 Scope* current_scope = scope; in SerializeFunctionScope() local
771 while (current_scope != NULL) { in SerializeFunctionScope()
773 ZoneList<Variable*> stack_list(current_scope->StackLocalCount(), zone); in SerializeFunctionScope()
775 current_scope->ContextLocalCount(), zone); in SerializeFunctionScope()
776 current_scope->CollectStackAndContextLocals(&stack_list, &context_list); in SerializeFunctionScope()
796 current_scope = current_scope->outer_scope(); in SerializeFunctionScope()
/external/v8/src/compiler/
Dast-graph-builder.h139 inline Scope* current_scope() const;
423 Scope* AstGraphBuilder::current_scope() const { in current_scope() function
Dast-graph-builder.cc1794 int depth = current_scope()->ContextChainLength(variable->scope()); in BuildVariableLoad()
1902 int depth = current_scope()->ContextChainLength(variable->scope()); in BuildVariableAssignment()
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
Dtask.rb54 @namespace = Rake.application.current_scope