Home
last modified time | relevance | path

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

/third_party/node/lib/internal/source_map/
Dsource_map_cache.js45 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 …]
Dsource_map.js256 let sourceURL = sources[sourceIndex];
279 sourceURL = sources[sourceIndex];
292 [lineNumber, columnNumber, sourceURL, sourceLineNumber,
/third_party/gstreamer/gstplugins_bad/ext/dash/
Dgstmpdurltypenode.c33 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()
Dgstmpdurltypenode.h36 gchar *sourceURL; member
Dgstmpdparser.c244 &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/
Dsourcemap.mjs138 * @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/
Dv8-debugger-script.cc273 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()
Dv8-stack-trace-impl.cc173 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()
Dv8-stack-trace-impl.h30 StackFrame(String16&& functionName, int scriptId, String16&& sourceURL,
36 const String16& sourceURL() const;
Dv8-debugger-script.h65 const String16& sourceURL() const { return m_url; } in sourceURL() function
Dv8-runtime-agent-impl.h109 Response compileScript(const String16& expression, const String16& sourceURL,
Dv8-debugger.cc1133 stackFrame->sourceURL(), in symbolize()
1138 auto sourceURL = in symbolize() local
1143 std::move(functionName), scriptId, std::move(sourceURL), lineNumber, in symbolize()
Dv8-debugger-agent-impl.cc506 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()
Dv8-runtime-agent-impl.cc526 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/
Dscript.tq54 // [source_url]: sourceURL from magic comment
Dcall-site-info.cc204 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/
Ddash_mpd.c522 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/
Djs_protocol.pdl563 # True, if this script has sourceURL.
604 # True, if this script has sourceURL.
1359 string sourceURL
/third_party/node/deps/corepack/dist/lib/
Dcorepack.cjs15662 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/
DChangeLog132676 gst_mpdparser_get_initializationURL: assertion `InitializationURL->sourceURL