Lines Matching refs:v8Source
109 v8::Local<v8::String> v8Source;
110 if (!m_scriptSource.Get(m_isolate)->JavaScriptCode().ToLocal(&v8Source)) {
113 if (pos >= static_cast<size_t>(v8Source->Length())) return String16();
115 std::min(len, static_cast<size_t>(v8Source->Length()) - pos);
117 v8Source->Write(m_isolate, reinterpret_cast<uint16_t*>(buffer.get()),
178 v8::Local<v8::String> v8Source = toV8String(m_isolate, newSource);
179 if (!m_script.Get(m_isolate)->SetScriptSource(v8Source, preview, result)) {
260 v8::Local<v8::String> v8Source;
261 if (!m_scriptSource.Get(m_isolate)->JavaScriptCode().ToLocal(&v8Source)) {
262 v8Source = v8::String::Empty(m_isolate);
264 m_hash = calculateHash(m_isolate, v8Source);