| /third_party/node/lib/internal/source_map/ |
| D | source_map_cache.js | 45 const kSourceURLMagicComment = /\/[*/]#\s+sourceURL=(?<sourceURL>[^\s]+)/g; 93 let sourceURL = matchSourceURL.groups.sourceURL; 94 if (sourceURL != null && RegExpPrototypeExec(kLeadingProtocol, sourceURL) === null) { 95 sourceURL = pathToFileURL(sourceURL).href; 97 return sourceURL; 114 function maybeCacheSourceMap(filename, content, cjsModuleInstance, isGeneratedSource, sourceURL, so… argument 134 if (sourceURL === undefined) { 135 sourceURL = extractSourceURLMagicComment(content); 146 sourceURL, property 153 sourceURL, property [all …]
|
| D | source_map.js | 256 let sourceURL = sources[sourceIndex]; 279 sourceURL = sources[sourceIndex]; 292 [lineNumber, columnNumber, sourceURL, sourceLineNumber,
|
| /third_party/gstreamer/gstplugins_bad/ext/dash/ |
| D | gstmpdurltypenode.c | 33 if (self->sourceURL) in gst_mpd_url_type_node_finalize() 34 xmlFree (self->sourceURL); in gst_mpd_url_type_node_finalize() 52 self->sourceURL); in gst_mpd_url_type_get_xml_node() 76 self->sourceURL = NULL; in gst_mpd_url_type_node_init() 103 if (url->sourceURL) { in gst_mpd_url_type_node_clone() 104 clone->sourceURL = xmlMemStrdup (url->sourceURL); in gst_mpd_url_type_node_clone()
|
| D | gstmpdurltypenode.h | 36 gchar *sourceURL; member
|
| D | gstmpdparser.c | 244 &new_url_type->sourceURL); in gst_mpdparser_parse_url_type_node() 1378 && InitializationURL->sourceURL) ? InitializationURL->sourceURL : stream-> in gst_mpdparser_get_initializationURL()
|
| /third_party/node/deps/v8/tools/ |
| D | sourcemap.mjs | 138 * @param {string} sourceURL 141 sourceContent(sourceURL) argument 143 return this._sourceContentByURL[sourceURL]; 147 * @param {string} sourceURL 151 sourceContentProvider(sourceURL, contentType) argument 153 const lastIndexOfDot = sourceURL.lastIndexOf("."); 154 const extension = lastIndexOfDot !== -1 ? sourceURL.substr(lastIndexOfDot + 1) : ""; 156 const sourceContent = this.sourceContent(sourceURL); 159 … return new WebInspector.CompilerSourceMappingContentProvider(sourceURL, contentType, mimeType); 211 * @param {string} sourceURL of the originating resource [all …]
|
| /third_party/node/deps/v8/src/inspector/ |
| D | v8-debugger-script.cc | 273 v8::Local<v8::String> sourceURL; in GetScriptURL() local 274 if (script->SourceURL().ToLocal(&sourceURL) && sourceURL->Length() > 0) in GetScriptURL() 275 return toProtocolString(isolate, sourceURL); in GetScriptURL() 369 void V8DebuggerScript::setSourceURL(const String16& sourceURL) { in setSourceURL() argument 370 if (sourceURL.length() > 0) { in setSourceURL() 372 m_url = sourceURL; in setSourceURL()
|
| D | v8-stack-trace-impl.cc | 173 String16&& sourceURL, int lineNumber, int columnNumber, in StackFrame() argument 177 m_sourceURL(std::move(sourceURL)), in StackFrame() 189 const String16& StackFrame::sourceURL() const { return m_sourceURL; } in sourceURL() function in v8_inspector::StackFrame 288 if (current.frame()->sourceURL().length()) { in firstNonEmptySourceURL() 289 return toStringView(current.frame()->sourceURL()); in firstNonEmptySourceURL() 299 return toStringView(m_frames[0]->sourceURL()); in topSourceURL() 343 stackTrace.append(frame.sourceURL()); in toString()
|
| D | v8-stack-trace-impl.h | 30 StackFrame(String16&& functionName, int scriptId, String16&& sourceURL, 36 const String16& sourceURL() const;
|
| D | v8-debugger-script.h | 65 const String16& sourceURL() const { return m_url; } in sourceURL() function
|
| D | v8-runtime-agent-impl.h | 109 Response compileScript(const String16& expression, const String16& sourceURL,
|
| D | v8-debugger.cc | 1133 stackFrame->sourceURL(), in symbolize() 1138 auto sourceURL = in symbolize() local 1143 std::move(functionName), scriptId, std::move(sourceURL), lineNumber, in symbolize()
|
| D | v8-debugger-agent-impl.cc | 506 return script.sourceURL() == selector; in matches() 511 return regex.match(script.sourceURL()) != -1; in matches() 884 const String16& scriptSourceURL = it->second->sourceURL(); in isFunctionBlackboxed() 1615 String16 scriptURL = script->sourceURL(); in didParseSource() 1773 breakAuxData->setString("url", script->sourceURL()); in didPauseOnInstrumentation()
|
| D | v8-runtime-agent-impl.cc | 526 const String16& expression, const String16& sourceURL, bool persistScript, in compileScript() argument 542 bool isOk = m_inspector->compileScript(scope.context(), expression, sourceURL) in compileScript()
|
| /third_party/node/deps/v8/src/objects/ |
| D | script.tq | 54 // [source_url]: sourceURL from magic comment
|
| D | call-site-info.cc | 204 Handle<Object> sourceURL(script->GetNameOrSourceURL(), isolate); in FormatEvalOrigin() local 205 if (sourceURL->IsString()) return Handle<String>::cast(sourceURL); in FormatEvalOrigin()
|
| /third_party/gstreamer/gstplugins_bad/tests/check/elements/ |
| D | dash_mpd.c | 522 assert_equals_string (initialization->sourceURL, "TestSourceURL"); in GST_START_TEST() 559 assert_equals_string (representationIndex->sourceURL, "TestSourceURL"); in GST_START_TEST() 784 assert_equals_string (bitstreamSwitching->sourceURL, "TestSourceURL"); in GST_START_TEST() 1152 assert_equals_string (bitstreamSwitching->sourceURL, "TestSourceURL"); in GST_START_TEST() 2131 assert_equals_string (initialization->sourceURL, "TestSourceURL"); in GST_START_TEST() 2172 assert_equals_string (representationIndex->sourceURL, "TestSourceURL"); in GST_START_TEST()
|
| /third_party/node/deps/v8/include/ |
| D | js_protocol.pdl | 563 # True, if this script has sourceURL. 604 # True, if this script has sourceURL. 1359 string sourceURL
|
| /third_party/node/deps/corepack/dist/lib/ |
| D | corepack.cjs | 15662 function computeSourceURL(sourceRoot, sourceURL, sourceMapURL) { 15663 sourceURL = sourceURL || ""; 15665 if (sourceRoot[sourceRoot.length - 1] !== "/" && sourceURL[0] !== "/") { 15668 sourceURL = sourceRoot + sourceURL; 15681 sourceURL = join2(urlGenerate(parsed), sourceURL); 15683 return normalize(sourceURL);
|
| /third_party/gstreamer/gstplugins_bad/ |
| D | ChangeLog | 132676 gst_mpdparser_get_initializationURL: assertion `InitializationURL->sourceURL
|