Searched defs:current_scope (Results 1 - 5 of 5) sorted by relevance

/external/mesa3d/src/mesa/program/
H A Dsymbol_table.c78 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/
H A Dbytecode-generator.h179 inline Scope* current_scope() const { return current_scope_; } function in class:v8::internal::interpreter::final
/external/v8/src/ast/
H A Dscopes.cc378 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);
/external/v8/src/debug/
H A Dliveedit.cc1632 Scope* current_scope = scope; local
1633 while (current_scope != NULL) {
1635 for (Variable* var : *current_scope->locals()) {
1643 scope_info_length += current_scope->ContextLocalCount() * 2;
1648 current_scope = current_scope->outer_scope();
/external/v8/src/compiler/
H A Dast-graph-builder.cc300 DeclarationScope* closure_scope = current_scope()->GetClosureScope();
819 Scope* AstGraphBuilder::current_scope() const { function in class:v8::internal::compiler::AstGraphBuilder
2231 return current_scope()->language_mode();
2422 int depth = current_scope()->ContextChainLength(variable->scope());
2542 int depth = current_scope()->ContextChainLength(variable->scope());

Completed in 146 milliseconds