Home
last modified time | relevance | path

Searched refs:sourceURL (Results 1 – 10 of 10) sorted by relevance

/external/v8/tools/
DSourceMap.js141 sourceContent: function(sourceURL) argument
143 return this._sourceContentByURL[sourceURL];
151 sourceContentProvider: function(sourceURL, contentType) argument
153 var lastIndexOfDot = sourceURL.lastIndexOf(".");
154 var extension = lastIndexOfDot !== -1 ? sourceURL.substr(lastIndexOfDot + 1) : "";
156 var sourceContent = this.sourceContent(sourceURL);
159 … return new WebInspector.CompilerSourceMappingContentProvider(sourceURL, contentType, mimeType);
215 findEntryReversed: function(sourceURL, lineNumber) argument
217 var mappings = this._reverseMappingsBySourceURL[sourceURL];
254 var sourceURL = sources[sourceIndex];
[all …]
/external/v8/src/inspector/
Dv8-debugger-script.cc295 const String16& V8DebuggerScript::sourceURL() const { in sourceURL() function in v8_inspector::V8DebuggerScript
305 void V8DebuggerScript::setSourceURL(const String16& sourceURL) { in setSourceURL() argument
306 m_sourceURL = sourceURL; in setSourceURL()
Dv8-debugger-script.h60 const String16& sourceURL() const;
Dv8-stack-trace-impl.h38 const String16& sourceURL() const { return m_scriptName; } in sourceURL() function
Dv8-runtime-agent-impl.h91 Response compileScript(const String16& expression, const String16& sourceURL,
Dv8-stack-trace-impl.cc295 stackTrace.append(frame.sourceURL()); in toString()
Dv8-runtime-agent-impl.cc536 const String16& expression, const String16& sourceURL, bool persistScript, in compileScript() argument
552 bool isOk = m_inspector->compileScript(scope.context(), expression, sourceURL) in compileScript()
Dv8-debugger-agent-impl.cc302 if (!matches(m_inspector, script.second->sourceURL(), url, isRegex)) in setBreakpointByUrl()
431 const String16& scriptSourceURL = it->second->sourceURL(); in isFunctionBlackboxed()
1015 String16 scriptURL = script->sourceURL(); in didParseSource()
/external/v8/src/
Dmessages.cc213 Handle<Object> sourceURL(script->GetNameOrSourceURL(), isolate); in FormatEvalOrigin() local
214 if (!sourceURL->IsUndefined(isolate)) { in FormatEvalOrigin()
215 DCHECK(sourceURL->IsString()); in FormatEvalOrigin()
216 return Handle<String>::cast(sourceURL); in FormatEvalOrigin()
/external/v8/
DChangeLog19379 [V8] Don't ignore sourceURL comment in inline scripts in .stack (issue
24117 Added support for //# sourceURL similar to deprecated //@ sourceURL one.
24796 Function::GetScriptOrigin supplies sourceURL when script name is
24925 Support sourceURL for dynamically inserted scripts (issue 2342).
27418 Added "//@ sourceURL" information to the StackTrace API.