Home
last modified time | relevance | path

Searched refs:top_scope (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/src/mesa/program/
Dsymbol_table.c388 struct scope_level *top_scope; in _mesa_symbol_table_add_global_symbol() local
420 for (top_scope = table->current_scope in _mesa_symbol_table_add_global_symbol()
421 ; top_scope->next != NULL in _mesa_symbol_table_add_global_symbol()
422 ; top_scope = top_scope->next) { in _mesa_symbol_table_add_global_symbol()
427 sym->next_with_same_scope = top_scope->symbols; in _mesa_symbol_table_add_global_symbol()
447 top_scope->symbols = sym; in _mesa_symbol_table_add_global_symbol()
/external/v8/src/
Dpreparser.cc125 PreParserScope top_scope(scope_, GLOBAL_SCOPE); in PreParseLazyFunction() local
126 FunctionState top_state(&function_state_, &scope_, &top_scope, NULL, in PreParseLazyFunction()
Dparser.cc819 Scope* top_scope = NULL; in ParseProgram() local
828 result = DoParseProgram(info(), &top_scope, &eval_scope); in ParseProgram()
832 result = DoParseProgram(info(), &top_scope, &eval_scope); in ParseProgram()
834 top_scope->set_end_position(source->length()); in ParseProgram()
4945 Scope* top_scope = NULL; in ParseOnBackground() local
4947 result = DoParseProgram(info(), &top_scope, &eval_scope); in ParseOnBackground()
4949 top_scope->set_end_position(scanner()->location().end_pos); in ParseOnBackground()
Dpreparser.h1430 FunctionState top_scope(&function_state_, &scope_, &scope); in PreParseProgram()