Home
last modified time | relevance | path

Searched refs:new_scope (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/torque/
Dscope.cc23 Scope* new_scope = new Scope(*this); in NewScope() local
24 scopes_.emplace_back(std::unique_ptr<Scope>(new_scope)); in NewScope()
25 return new_scope; in NewScope()
/external/selinux/libsepol/src/
Dlink.c1853 scope_datum_t *new_scope; in scope_copy_callback() local
1858 if ((new_scope = in scope_copy_callback()
1859 (scope_datum_t *) calloc(1, sizeof(*new_scope))) == NULL) { in scope_copy_callback()
1865 (hashtab_datum_t) new_scope); in scope_copy_callback()
1868 free(new_scope); in scope_copy_callback()
1871 new_scope->scope = SCOPE_REQ; /* this is reset further down */ in scope_copy_callback()
1872 base_scope = new_scope; in scope_copy_callback()
/external/mesa3d/src/compiler/glsl/
Dast.h434 ast_compound_statement(int new_scope, ast_node *statements);
440 int new_scope; variable
Dglsl_parser_extras.cpp1173 ast_compound_statement::ast_compound_statement(int new_scope, in ast_compound_statement() argument
1176 this->new_scope = new_scope; in ast_compound_statement()
Dast_to_hir.cpp2218 if (new_scope) in hir()
2224 if (new_scope) in hir()
/external/tensorflow/tensorflow/python/kernel_tests/
Dvariable_scope_test.py1536 with variable_scope.variable_scope("new_scope") as new_scope:
1539 new_scope, reuse=True, custom_getter=custom_getter):