Home
last modified time | relevance | path

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

/external/v8/src/inspector/
Dinjected-script.h153 class ContextScope : public Scope {
155 ContextScope(V8InspectorSessionImpl*, int executionContextId);
156 ~ContextScope();
162 DISALLOW_COPY_AND_ASSIGN(ContextScope);
Dinjected-script.cc163 InjectedScript::ContextScope scope(session, m_executionContextId); in thenCallback()
188 InjectedScript::ContextScope scope(session, m_executionContextId); in catchCallback()
241 InjectedScript::ContextScope scope(session, m_executionContextId); in sendPromiseCollected()
736 InjectedScript::ContextScope::ContextScope(V8InspectorSessionImpl* session, in ContextScope() function in v8_inspector::InjectedScript::ContextScope
741 InjectedScript::ContextScope::~ContextScope() {} in ~ContextScope()
743 Response InjectedScript::ContextScope::findInjectedScript( in findInjectedScript()
Dv8-runtime-agent-impl.cc248 InjectedScript::ContextScope scope(m_session, contextId); in evaluate()
362 InjectedScript::ContextScope scope(m_session, contextId); in callFunctionOn()
490 InjectedScript::ContextScope scope(m_session, contextId); in compileScript()
546 InjectedScript::ContextScope scope(m_session, contextId); in runScript()
618 InjectedScript::ContextScope scope(m_session, contextId); in globalLexicalScopeNames()
Dv8-debugger-agent-impl.cc1147 InjectedScript::ContextScope scope(m_session, iterator->GetContextId()); in setReturnValue()
/external/v8/src/interpreter/
Dbytecode-generator.h49 class ContextScope;
313 inline ContextScope* execution_context() const { return execution_context_; } in execution_context()
314 inline void set_execution_context(ContextScope* context) { in set_execution_context()
369 ContextScope* execution_context_;
Dbytecode-generator.cc32 class BytecodeGenerator::ContextScope BASE_EMBEDDED {
34 ContextScope(BytecodeGenerator* generator, Scope* scope) in ContextScope() function in v8::internal::interpreter::BASE_EMBEDDED
53 ~ContextScope() { in ~ContextScope()
69 ContextScope* Previous(int depth) { in Previous()
74 ContextScope* previous = this; in Previous()
90 ContextScope* outer_;
145 ContextScope* context() const { return context_; } in context()
150 ContextScope* context_;
1034 ContextScope incoming_context(this, closure_scope()); in GenerateBytecode()
1050 ContextScope local_function_context(this, closure_scope()); in GenerateBytecode()
[all …]
/external/vixl/src/aarch32/
Dmacro-assembler-aarch32.cc34 ContextScope context(this, __FILE__ ":" TOSTRING(__LINE__))
Dmacro-assembler-aarch32.h166 class ContextScope {
168 explicit ContextScope(MacroAssembler* const masm, const char* loc) in ContextScope() function
173 ~ContextScope() { masm_->GetContext()->Down(); } in ~ContextScope()