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 78 struct scope_level *current_scope; member in struct:_mesa_symbol_table
87 struct scope_level *const scope = table->current_scope;
90 table->current_scope = scope->next;
125 scope->next = table->current_scope;
126 table->current_scope = scope;
203 new_sym->next_with_same_scope = table->current_scope->symbols;
207 table->current_scope->symbols = new_sym;
248 for (top_scope = table->current_scope; top_scope->next != NULL;
306 while (table->current_scope != NULL) {
  /external/v8/src/interpreter/
bytecode-generator.h 179 inline Scope* current_scope() const { return current_scope_; } function in class:v8::internal::interpreter::final
  /external/v8/src/ast/
scopes.cc 378 Scope* current_scope = nullptr; local
431 if (current_scope != nullptr) {
432 outer_scope->AddInnerScope(current_scope);
434 current_scope = outer_scope;
435 if (innermost_scope == nullptr) innermost_scope = current_scope;
441 script_scope->AddInnerScope(current_scope);
    [all...]
  /external/v8/src/debug/
liveedit.cc 1632 Scope* current_scope = scope; local
    [all...]
  /external/v8/src/compiler/
ast-graph-builder.cc 300 DeclarationScope* closure_scope = current_scope()->GetClosureScope();
819 Scope* AstGraphBuilder::current_scope() const { function in class:v8::internal::compiler::AstGraphBuilder
    [all...]

Completed in 437 milliseconds