Lines Matching refs:Blob
122 // the Blob.
128 class Blob {
130 * @typedef {string|ArrayBuffer|ArrayBufferView|Blob} SourcePart
139 * @constructs {Blob}
187 return `Blob ${inspect({
215 throw new ERR_INVALID_THIS('Blob');
225 throw new ERR_INVALID_THIS('Blob');
233 * @returns {Blob}
237 throw new ERR_INVALID_THIS('Blob');
272 return PromiseReject(new ERR_INVALID_THIS('Blob'));
315 throw new ERR_INVALID_THIS('Blob');
327 throw new ERR_INVALID_THIS('Blob');
351 return makeTransferable(ReflectConstruct(function() {}, [], Blob));
360 }, [], Blob));
363 ObjectDefineProperty(Blob.prototype, SymbolToStringTag, {
366 value: 'Blob',
369 ObjectDefineProperties(Blob.prototype, {
415 Blob,