Lines Matching refs:Script
669 bool Debug::SetBreakPointForScript(Handle<Script> script, in SetBreakPointForScript()
673 if (script->type() == Script::TYPE_WASM) { in SetBreakPointForScript()
1345 bool Debug::GetPossibleBreakpoints(Handle<Script> script, int start_position, in GetPossibleBreakpoints()
1459 Handle<Object> Debug::FindSharedFunctionInfoInScript(Handle<Script> script, in FindSharedFunctionInfoInScript()
1612 Script::Iterator iterator(isolate_); in GetLoadedScripts()
1613 Script* script; in GetLoadedScripts()
1650 MaybeHandle<Object> Debug::MakeCompileEvent(Handle<Script> script, in MakeCompileEvent()
1653 Handle<Object> script_wrapper = Script::GetWrapper(script); in MakeCompileEvent()
1822 void Debug::OnCompileError(Handle<Script> script) { in OnCompileError()
1828 void Debug::OnAfterCompile(Handle<Script> script) { in OnAfterCompile()
1944 debug::Location GetDebugLocation(Handle<Script> script, int source_position) { in GetDebugLocation()
1945 Script::PositionInfo info; in GetDebugLocation()
1946 Script::GetPositionInfo(script, source_position, &info, Script::WITH_OFFSET); in GetDebugLocation()
1960 Handle<Script> script(Script::cast(shared->script())); in IsBlackboxed()
1961 if (script->type() == i::Script::TYPE_NORMAL) { in IsBlackboxed()
1966 ToApiHandle<debug::Script>(script), start, end); in IsBlackboxed()
1988 void Debug::ProcessCompileEvent(v8::DebugEvent event, Handle<Script> script) { in ProcessCompileEvent()
1990 if (script->type() != i::Script::TYPE_NORMAL && in ProcessCompileEvent()
1991 script->type() != i::Script::TYPE_WASM) { in ProcessCompileEvent()
2001 debug_delegate_->ScriptCompiled(ToApiHandle<debug::Script>(script), in ProcessCompileEvent()
2160 Handle<Script> script = Handle<Script>::cast(script_obj); in PrintBreakLocation()
2162 Script::InitLineEnds(script); in PrintBreakLocation()
2164 Script::GetLineNumber(script, source_position) - script->line_offset(); in PrintBreakLocation()
2165 int column = Script::GetColumnNumber(script, source_position) - in PrintBreakLocation()
2272 void LegacyDebugDelegate::ScriptCompiled(v8::Local<v8::debug::Script> script, in ScriptCompiled()