Home
last modified time | relevance | path

Searched refs:current_scope (Results 1 – 4 of 4) 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()
363 sym->next_with_same_scope = table->current_scope->symbols; in _mesa_symbol_table_add_symbol()
372 table->current_scope->symbols = sym; in _mesa_symbol_table_add_symbol()
419 for (top_scope = table->current_scope in _mesa_symbol_table_add_global_symbol()
476 while (table->current_scope != NULL) { in _mesa_symbol_table_dtor()
/external/v8/src/
Dscopes.cc205 Scope* current_scope = NULL; in DeserializeScopeChain() local
210 Scope* with_scope = new Scope(current_scope, in DeserializeScopeChain()
213 current_scope = with_scope; in DeserializeScopeChain()
221 current_scope = new Scope(current_scope, in DeserializeScopeChain()
226 current_scope = new Scope(current_scope, in DeserializeScopeChain()
232 current_scope = new Scope(current_scope, Handle<String>(name)); in DeserializeScopeChain()
234 if (contains_with) current_scope->RecordWithStatement(); in DeserializeScopeChain()
235 if (innermost_scope == NULL) innermost_scope = current_scope; in DeserializeScopeChain()
244 global_scope->AddInnerScope(current_scope); in DeserializeScopeChain()
/external/webkit/Source/WebCore/inspector/front-end/UglifyJS/
Dprocess.js360 var current_scope = null;
365 current_scope = new Scope(current_scope);
366 var ret = current_scope.body = cont();
367 ret.scope = current_scope;
368 current_scope = current_scope.parent;
373 return current_scope.define(name);
377 current_scope.refs[name] = true;
393 for (var s = current_scope; s; s = s.parent)
412 having_eval.push(current_scope);
451 fixrefs(current_scope);
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
Dtask.rb54 @namespace = Rake.application.current_scope