Home
last modified time | relevance | path

Searched refs:ContextScope (Results 1 – 9 of 9) sorted by relevance

/external/v8/src/inspector/
Dinjected-script.h135 class ContextScope : public Scope {
137 ContextScope(V8InspectorImpl*, int contextGroupId, int executionContextId);
138 ~ContextScope();
144 DISALLOW_COPY_AND_ASSIGN(ContextScope);
Dinjected-script.cc489 InjectedScript::ContextScope::ContextScope(V8InspectorImpl* inspector, in ContextScope() function in v8_inspector::InjectedScript::ContextScope
495 InjectedScript::ContextScope::~ContextScope() {} in ~ContextScope()
497 Response InjectedScript::ContextScope::findInjectedScript( in findInjectedScript()
Dv8-runtime-agent-impl.cc187 InjectedScript::ContextScope scope(m_inspector, m_contextGroupId, in wrapObject()
279 InjectedScript::ContextScope scope(m_inspector, m_session->contextGroupId(), in evaluate()
545 InjectedScript::ContextScope scope(m_inspector, m_session->contextGroupId(), in compileScript()
602 InjectedScript::ContextScope scope(m_inspector, m_session->contextGroupId(), in runScript()
/external/v8/src/interpreter/
Dbytecode-generator.h40 class ContextScope;
186 inline ContextScope* execution_context() const { return execution_context_; } in execution_context()
187 inline void set_execution_context(ContextScope* context) { in set_execution_context()
223 ContextScope* execution_context_;
Dbytecode-generator.cc28 class BytecodeGenerator::ContextScope BASE_EMBEDDED {
30 ContextScope(BytecodeGenerator* generator, Scope* scope, in ContextScope() function in v8::internal::interpreter::BASE_EMBEDDED
51 ~ContextScope() { in ~ContextScope()
67 ContextScope* Previous(int depth) { in Previous()
72 ContextScope* previous = this; in Previous()
89 ContextScope* outer_;
127 ContextScope* context() const { return context_; } in context()
132 ContextScope* context_;
370 ContextScope* context = generator()->execution_context(); in PerformCommand()
712 ContextScope incoming_context(this, closure_scope(), false); in GenerateBytecode()
[all …]
/external/v8/src/compiler/
Dast-graph-builder.h70 class ContextScope; variable
92 ContextScope* execution_context_;
131 ContextScope* execution_context() const { return execution_context_; } in execution_context()
151 void set_execution_context(ContextScope* ctx) { execution_context_ = ctx; } in set_execution_context()
Dast-graph-builder.cc114 class AstGraphBuilder::ContextScope BASE_EMBEDDED {
116 ContextScope(AstGraphBuilder* builder, Scope* scope, Node* context) in ContextScope() function in v8::internal::compiler::BASE_EMBEDDED
125 ~ContextScope() { in ~ContextScope()
136 ContextScope* outer_;
375 ContextScope incoming(this, scope, GetFunctionContext()); in CreateGraph()
390 ContextScope top_context(this, scope, inner_context); in CreateGraph()
1015 ContextScope scope(this, stmt->scope(), context); in VisitBlock()
/external/vixl/src/aarch32/
Dmacro-assembler-aarch32.cc34 ContextScope context(this, __FILE__ ":" TOSTRING(__LINE__))
Dmacro-assembler-aarch32.h174 class ContextScope {
176 explicit ContextScope(MacroAssembler* const masm, const char* loc) in ContextScope() function
181 ~ContextScope() { masm_->GetContext()->Down(); } in ~ContextScope()