Lines Matching refs:source

1404 var $export = function $export(type, name, source) {
1414 if (IS_GLOBAL) source = name;
1416 for (key in source) {
1418 out = (own ? target : source)[key];
2784 }) ? function assign(target, source) {
4523 from: function from(source) {
4529 if (source == undefined) return new this();
4535 forOf(source, false, function (nextItem) {
4539 forOf(source, false, A.push, A);
8996 var source = new TransformStreamSource(this, startPromise);
8997 this._readable = new ReadableStream(source, readableStrategy);
9896 var source;
9899 source = {
9903 source = {
9907 source = {
9919 source = src;
9926 for (var key in source) {
9928 params[key] = new _util.URL(source[key], window.location).href;
9931 rangeTransport = source[key];
9934 worker = source[key];
9936 } else if (key === 'data' && !(source[key] instanceof Uint8Array)) {
9937 var pdfBytes = source[key];
9952 params[key] = source[key];
10048 function _fetchDocument(worker, source, pdfDataRangeTransport, docId) {
10054 source.length = pdfDataRangeTransport.length;
10055 source.initialData = pdfDataRangeTransport.initialData;
10056 source.progressiveDone = pdfDataRangeTransport.progressiveDone;
10062 source: {
10063 data: source.data,
10064 url: source.url,
10065 password: source.password,
10066 disableAutoFetch: source.disableAutoFetch,
10067 rangeChunkSize: source.rangeChunkSize,
10068 length: source.length
10070 maxImageSize: source.maxImageSize,
10071 disableFontFace: source.disableFontFace,
10072 disableCreateObjectURL: source.disableCreateObjectURL,
10074 docBaseUrl: source.docBaseUrl,
10075 nativeImageDecoderSupport: source.nativeImageDecoderSupport,
10076 ignoreErrors: source.ignoreErrors,
10077 isEvalSupported: source.isEvalSupported
20716 source: _assertThisInitialized(_this6),
22649 function PDFNodeStream(source) {
22652 this.source = source;
22653 this.url = parseUrl(source.url);
22656 this.httpHeaders = this.isHttp && source.httpHeaders || {};
22716 var source = stream.source;
22717 this._contentLength = source.length;
22720 this._disableRange = source.disableRange || false;
22721 this._rangeChunkSize = source.rangeChunkSize;
22727 this._isStreamingSupported = !source.disableStream;
22728 this._isRangeSupported = !source.disableRange;
22896 var source = stream.source;
22897 this._isStreamingSupported = !source.disableStream;
23765 function PDFNetworkStream(source) {
23768 this._source = source;
23769 this._manager = new NetworkManager(source.url, {
23770 httpHeaders: source.httpHeaders,
23771 withCredentials: source.withCredentials
23773 this._rangeChunkSize = source.rangeChunkSize;
23827 function PDFNetworkStreamFullRequestReader(manager, source) {
23837 this._url = source.url;
23840 this._disableRange = source.disableRange || false;
23841 this._contentLength = source.length;
23842 this._rangeChunkSize = source.rangeChunkSize;
24255 function PDFFetchStream(source) {
24258 this.source = source;
24259 this.isHttp = /^https?:/i.test(source.url);
24260 this.httpHeaders = this.isHttp && source.httpHeaders || {};
24322 var source = stream.source;
24323 this._withCredentials = source.withCredentials || false;
24324 this._contentLength = source.length;
24326 this._disableRange = source.disableRange || false;
24327 this._rangeChunkSize = source.rangeChunkSize;
24337 this._isStreamingSupported = !source.disableStream;
24338 this._isRangeSupported = !source.disableRange;
24351 var url = source.url;
24501 var source = stream.source;
24502 this._withCredentials = source.withCredentials || false;
24504 this._isStreamingSupported = !source.disableStream;
24524 var url = source.url;