Searched refs:sourceURL (Results 1 – 10 of 10) sorted by relevance
/external/v8/tools/ |
D | SourceMap.js | 141 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/ |
D | v8-debugger-script.cc | 295 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()
|
D | v8-debugger-script.h | 60 const String16& sourceURL() const;
|
D | v8-stack-trace-impl.h | 38 const String16& sourceURL() const { return m_scriptName; } in sourceURL() function
|
D | v8-runtime-agent-impl.h | 91 Response compileScript(const String16& expression, const String16& sourceURL,
|
D | v8-stack-trace-impl.cc | 295 stackTrace.append(frame.sourceURL()); in toString()
|
D | v8-runtime-agent-impl.cc | 536 const String16& expression, const String16& sourceURL, bool persistScript, in compileScript() argument 552 bool isOk = m_inspector->compileScript(scope.context(), expression, sourceURL) in compileScript()
|
D | v8-debugger-agent-impl.cc | 302 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/ |
D | messages.cc | 213 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/ |
D | ChangeLog | 19379 [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.
|