HomeSort by relevance Sort by last modified time
    Searched defs:current_scope (Results 1 - 5 of 5) 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/ast/
scopes.cc 212 Scope* current_scope = NULL; local
218 Scope(zone, current_scope, WITH_SCOPE, Handle<ScopeInfo>::null(),
220 current_scope = with_scope;
227 current_scope = new (zone) Scope(zone, current_scope, SCRIPT_SCOPE,
232 current_scope = new (zone) Scope(zone, current_scope, MODULE_SCOPE,
237 current_scope = new (zone) Scope(zone, current_scope, FUNCTION_SCOPE,
240 if (scope_info->IsAsmFunction()) current_scope->asm_function_ = true
    [all...]
  /external/v8/src/debug/
liveedit.cc 2038 Scope* current_scope = scope; local
    [all...]
  /external/v8/src/interpreter/
bytecode-generator.cc 392 RegisterAllocationScope* current_scope = generator()->register_allocator(); local
393 if ((current_scope == this) ||
394 (current_scope->outer() == this &&
395 !current_scope->allocator_.HasConsecutiveAllocations())) {
    [all...]
  /external/v8/src/compiler/
ast-graph-builder.cc 497 Scope* closure_scope = current_scope()->ClosureScope();
1000 Scope* AstGraphBuilder::current_scope() const { function in class:v8::internal::compiler::AstGraphBuilder
    [all...]

Completed in 136 milliseconds