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/ast/
scopes.cc 335 Scope* current_scope = nullptr; local
389 if (current_scope != nullptr) {
390 outer_scope->AddInnerScope(current_scope);
392 current_scope = outer_scope;
393 if (innermost_scope == nullptr) innermost_scope = current_scope;
399 script_scope->AddInnerScope(current_scope);
    [all...]
  /external/v8/src/debug/
liveedit.cc 1901 Scope* current_scope = scope; local
    [all...]
  /external/v8/src/compiler/
ast-graph-builder.cc 445 DeclarationScope* closure_scope = current_scope()->GetClosureScope();
981 Scope* AstGraphBuilder::current_scope() const { function in class:v8::internal::compiler::AstGraphBuilder
    [all...]

Completed in 235 milliseconds