Lines Matching refs:m_pRuntime
18 m_pRuntime(pRuntime), in CJS_Context()
36 ASSERT(m_pRuntime != NULL); in GetReaderDocument()
38 return m_pRuntime->GetReaderDocument(); in GetReaderDocument()
43 ASSERT(m_pRuntime != NULL); in GetReaderApp()
45 return m_pRuntime->GetReaderApp(); in GetReaderApp()
58 ASSERT(m_pRuntime != NULL); in DoJob()
62 if (!m_pRuntime->AddEventToLoop(m_pEventHandler->TargetName(), m_pEventHandler->EventType())) in DoJob()
75 nRet = JS_Execute(*m_pRuntime, this, script.c_str(), script.GetLength(), &error); in DoJob()
79 nRet = JS_Parse(*m_pRuntime, this, script.c_str(), script.GetLength(), &error); in DoJob()
99 m_pRuntime->RemoveEventInLoop(m_pEventHandler->TargetName(), m_pEventHandler->EventType()); in DoJob()
109 v8::Isolate::Scope isolate_scope(m_pRuntime->GetIsolate()); in RunScript()
110 v8::HandleScope handle_scope(m_pRuntime->GetIsolate()); in RunScript()
111 v8::Local<v8::Context> context = m_pRuntime->NewJSContext(); in RunScript()
119 v8::Isolate::Scope isolate_scope(m_pRuntime->GetIsolate()); in Compile()
120 v8::HandleScope handle_scope(m_pRuntime->GetIsolate()); in Compile()
121 v8::Local<v8::Context> context = m_pRuntime->NewJSContext(); in Compile()