HomeSort by relevance Sort by last modified time
    Searched defs:current_scope (Results 1 - 4 of 4) sorted by null

  /external/mesa3d/src/mesa/program/
symbol_table.c 105 struct scope_level *current_scope; member in struct:_mesa_symbol_table
139 for (scope = table->current_scope; scope != NULL; scope = scope->next) {
161 struct scope_level *const scope = table->current_scope;
164 table->current_scope = scope->next;
191 scope->next = table->current_scope;
192 table->current_scope = scope;
364 sym->next_with_same_scope = table->current_scope->symbols;
373 table->current_scope->symbols = sym;
420 for (top_scope = table->current_scope
477 while (table->current_scope != NULL)
    [all...]
  /external/v8/src/compiler/
ast-graph-builder.h 139 inline Scope* current_scope() const;
423 Scope* AstGraphBuilder::current_scope() const { function in class:v8::internal::compiler::AstGraphBuilder
  /external/v8/src/
scopes.cc 190 Scope* current_scope = NULL; local
195 Scope* with_scope = new(zone) Scope(current_scope,
200 current_scope = with_scope;
208 current_scope = new(zone) Scope(current_scope,
215 current_scope = new(zone) Scope(current_scope,
222 current_scope = new(zone) Scope(current_scope,
227 if (scope_info->IsAsmFunction()) current_scope->asm_function_ = true
    [all...]
liveedit.cc 770 Scope* current_scope = scope; local
771 while (current_scope != NULL) {
773 ZoneList<Variable*> stack_list(current_scope->StackLocalCount(), zone);
775 current_scope->ContextLocalCount(), zone);
776 current_scope->CollectStackAndContextLocals(&stack_list, &context_list);
796 current_scope = current_scope->outer_scope();
    [all...]

Completed in 54 milliseconds