Home
last modified time | relevance | path

Searched refs:outer_scope_ (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/core/grappler/optimizers/data/
Dvectorization_utils.cc221 std::unique_ptr<Graph> outer_scope_; member in tensorflow::grappler::vectorization_utils::__anonc2de991c0111::Vectorization
275 Status s = vectorizer->Vectorize(*op_node, outer_scope_.get(), in AddConversionMapping()
325 outer_scope_.get()); in ConvertOutput()
326 RemoveMapDefunOutput(output_position, outer_scope_.get(), map_defun_fn_.get(), in ConvertOutput()
363 outer_scope_->RemoveNode(map_defun_node_); in VectorizeHelper()
388 outer_scope_.reset(outer_fn->graph); in Initialize()
400 outer_scope_->nodes()); in Initialize()
405 map_defun_node_ = outer_scope_->FindNodeId(node_id); in Initialize()
428 Graph* g = outer_scope_.get(); in StackTensor()
577 Node* node = outer_scope_->AddNode(tensor.first->def(), &status); in AddUnstackedTensorMappingsHelper()
[all …]
/external/v8/src/ast/
Dscopes.cc137 outer_scope_(nullptr), in Scope()
145 outer_scope_(outer_scope), in Scope()
151 outer_scope_->AddInnerScope(this); in Scope()
155 : outer_scope_(scope), in Snapshot()
162 outer_scope_->scope_calls_eval_ = false; in Snapshot()
168 outer_scope_->scope_calls_eval_ = true; in ~Snapshot()
258 outer_scope_(nullptr), in Scope()
288 outer_scope_(nullptr), in Scope()
325 outer_scope_ ? outer_scope_->GetDeclarationScope() : nullptr; in SetDefaults()
545 if (outer_scope_->LookupLocal(name) != nullptr) { in HoistSloppyBlockFunctions()
[all …]
Dscopes.h125 Scope* outer_scope_; in NON_EXPORTED_BASE()
163 if (outer_scope_) { in NON_EXPORTED_BASE()
164 outer_scope_->SetMustUsePreParsedScopeData(); in NON_EXPORTED_BASE()
391 Scope* outer_scope() const { return outer_scope_; } in NON_EXPORTED_BASE()
513 Scope* outer_scope_; // the immediately enclosing outer scope, or nullptr in NON_EXPORTED_BASE() local
631 inner_scope->outer_scope_ = this; in NON_EXPORTED_BASE()
/external/v8/src/interpreter/
Dbytecode-generator.cc787 : generator_(generator), outer_scope_(generator->current_scope()) { in CurrentScope()
789 DCHECK_EQ(outer_scope_, scope->outer_scope()); in CurrentScope()
794 if (outer_scope_ != generator_->current_scope()) { in ~CurrentScope()
795 generator_->set_current_scope(outer_scope_); in ~CurrentScope()
801 Scope* outer_scope_; member in v8::internal::interpreter::BytecodeGenerator::CurrentScope
/external/v8/src/parsing/
Dparser-base.h376 : scope_stack_(scope_stack), outer_scope_(*scope_stack) { in BlockState()
384 ~BlockState() { *scope_stack_ = outer_scope_; } in ~BlockState()
388 Scope* const outer_scope_; variable