Home | History | Annotate | Download | only in poppler

Lines Matching refs:ArrayBuffer

1108 var buffer = new ArrayBuffer(TOTAL_MEMORY);
3596 if (typeof Uint8Array != 'undefined') xhr.responseType = 'arraybuffer';
4043 ws.binaryType = 'arraybuffer';
4096 assert(typeof data !== 'string' && data.byteLength !== undefined); // must receive an ArrayBuffer
4124 handleMessage((new Uint8Array(data)).buffer); // copy from node Buffer -> ArrayBuffer
4345 if (buffer instanceof Array || buffer instanceof ArrayBuffer) {
4401 // queued.data will be an ArrayBuffer if it's unadulterated, but if it's
4577 // Safari's Blob can only take an ArrayBuffer
4917 xhr.responseType = 'arraybuffer';
4928 Browser.xhrLoad(url, function(arrayBuffer) {
4929 assert(arrayBuffer, 'Loading data file "' + url + '" failed (no arrayBuffer).');
4930 onload(new Uint8Array(arrayBuffer));