Searched refs:Blob (Results 1 - 25 of 194) sorted by relevance

12345678

/external/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DFileReaderSync.idl36 [CallWith=ExecutionContext, RaisesException] ArrayBuffer readAsArrayBuffer(Blob blob);
37 [CallWith=ExecutionContext, RaisesException] DOMString readAsBinaryString(Blob blob);
38 [CallWith=ExecutionContext, RaisesException] DOMString readAsText(Blob blob, optional DOMString encoding);
39 [CallWith=ExecutionContext, RaisesException] DOMString readAsDataURL(Blob blob);
H A DFileReaderSync.h42 class Blob;
55 PassRefPtr<ArrayBuffer> readAsArrayBuffer(ExecutionContext*, Blob*, ExceptionState&);
56 String readAsBinaryString(ExecutionContext*, Blob*, ExceptionState&);
57 String readAsText(ExecutionContext* executionContext, Blob* blob, ExceptionState& ec)
61 String readAsText(ExecutionContext*, Blob*, const String& encoding, ExceptionState&);
62 String readAsDataURL(ExecutionContext*, Blob*, ExceptionState&);
69 void startLoading(ExecutionContext*, FileReaderLoader&, const Blob&, ExceptionState&);
H A DBlob.h48 class Blob : public RefCountedWillBeGarbageCollectedFinalized<Blob>, public ScriptWrappable, public URLRegistrable { class in namespace:blink
51 static PassRefPtrWillBeRawPtr<Blob> create()
53 return adoptRefWillBeNoop(new Blob(BlobDataHandle::create()));
56 static PassRefPtrWillBeRawPtr<Blob> create(PassRefPtr<BlobDataHandle> blobDataHandle)
58 return adoptRefWillBeNoop(new Blob(blobDataHandle));
61 virtual ~Blob();
64 virtual PassRefPtrWillBeRawPtr<Blob> slice(long long start, long long end, const String& contentType, ExceptionState&) const;
67 PassRefPtrWillBeRawPtr<Blob> slice(ExceptionState& exceptionState) const
71 PassRefPtrWillBeRawPtr<Blob> slic
[all...]
H A DBlob.cpp32 #include "core/fileapi/Blob.h"
57 Blob* blob = static_cast<Blob*>(registrableObject);
74 Blob::Blob(PassRefPtr<BlobDataHandle> dataHandle) function in class:blink::Blob
80 Blob::~Blob()
84 void Blob::clampSliceOffsets(long long size, long long& start, long long& end)
108 PassRefPtrWillBeRawPtr<Blob> Blob
[all...]
H A DFileReader.idl47 [RaisesException] void readAsArrayBuffer(Blob blob);
48 [RaisesException] void readAsBinaryString(Blob blob);
49 [RaisesException] void readAsText(Blob blob, optional DOMString encoding);
50 [RaisesException] void readAsDataURL(Blob blob);
H A DFileReader.h46 class Blob;
65 void readAsArrayBuffer(Blob*, ExceptionState&);
66 void readAsBinaryString(Blob*, ExceptionState&);
67 void readAsText(Blob*, const String& encoding, ExceptionState&);
68 void readAsText(Blob*, ExceptionState&);
69 void readAsDataURL(Blob*, ExceptionState&);
109 void readInternal(Blob*, FileReaderLoader::ReadType, ExceptionState&);
H A DBlob.idl37 ] interface Blob {
41 [RaisesException] Blob slice(optional long long start, optional long long end, [TreatUndefinedAs=NullString] optional DOMString? contentType);
H A DFileReaderSync.cpp36 #include "core/fileapi/Blob.h"
48 PassRefPtr<ArrayBuffer> FileReaderSync::readAsArrayBuffer(ExecutionContext* executionContext, Blob* blob, ExceptionState& exceptionState)
61 String FileReaderSync::readAsBinaryString(ExecutionContext* executionContext, Blob* blob, ExceptionState& exceptionState)
73 String FileReaderSync::readAsText(ExecutionContext* executionContext, Blob* blob, const String& encoding, ExceptionState& exceptionState)
86 String FileReaderSync::readAsDataURL(ExecutionContext* executionContext, Blob* blob, ExceptionState& exceptionState)
99 void FileReaderSync::startLoading(ExecutionContext* executionContext, FileReaderLoader& loader, const Blob& blob, ExceptionState& exceptionState)
H A DFile.idl29 ] interface File : Blob {
/external/chromium_org/sync/syncable/
H A Dblob.h15 typedef std::vector<uint8> Blob; typedef in namespace:syncer::syncable
/external/chromium_org/third_party/smhasher/src/
H A DTypes.h192 class Blob class
196 Blob() function in class:Blob
204 Blob ( int x ) function in class:Blob
214 Blob ( const Blob & k ) function in class:Blob
222 Blob & operator = ( const Blob & k )
232 Blob ( uint64_t a, uint64_t b ) function in class:Blob
268 bool operator < ( const Blob & k ) const
279 bool operator == ( const Blob
[all...]
/external/chromium_org/content/test/data/service_worker/
H A Dfetch_event_reload.js8 var blob = new Blob(['<title>reload='+ event.isReload + '</title>']);
H A Dsync.js8 response = new Response(new Blob(), {
H A Dfetch_event.js9 var blob = new Blob(["This resource is gone. Gone, gone, gone."]);
/external/chromium_org/third_party/WebKit/Source/core/clipboard/
H A DDataTransferItem.idl39 Blob getAsFile();
H A DDataTransferItem.h42 class Blob;
59 PassRefPtrWillBeRawPtr<Blob> getAsFile() const;
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DFileWriterSync.idl36 [RaisesException] void write(Blob data);
H A DFileWriterSync.h42 class Blob;
55 void write(Blob*, ExceptionState&);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebBlob.cpp36 #include "core/fileapi/Blob.h"
44 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(uuid, type, size));
52 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), size));
60 Blob* blob = V8Blob::toImpl(object);
91 WebBlob::WebBlob(const PassRefPtrWillBeRawPtr<Blob>& blob)
96 WebBlob& WebBlob::operator=(const PassRefPtrWillBeRawPtr<Blob>& blob)
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DFormData.idl39 void append(DOMString name, Blob value, optional DOMString filename);
H A DFormDataList.h24 #include "core/fileapi/Blob.h"
41 Item(PassRefPtrWillBeRawPtr<Blob> blob, const String& filename) : m_blob(blob), m_filename(filename) { }
44 Blob* blob() const { return m_blob.get(); }
51 RefPtrWillBeMember<Blob> m_blob;
75 void appendBlob(const String& key, PassRefPtrWillBeRawPtr<Blob> blob, const String& filename = String())
97 void appendBlob(PassRefPtrWillBeRawPtr<Blob>, const String& filename);
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DBeaconLoader.h18 class Blob;
33 static bool sendBeacon(LocalFrame*, int, const KURL&, PassRefPtrWillBeRawPtr<Blob>&, int&);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8BlobCustom.cpp41 ExceptionState exceptionState(ExceptionState::ConstructionContext, "Blob", info.Holder(), info.GetIsolate());
43 RefPtrWillBeRawPtr<Blob> blob = Blob::create();
63 if (!properties.parseBlobPropertyBag(info[1], "Blob", exceptionState, info.GetIsolate())) {
75 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), blobSize));
/external/chromium_org/third_party/WebKit/public/web/
H A DWebBlob.h53 class Blob;
80 explicit WebBlob(const PassRefPtrWillBeRawPtr<Blob>&);
81 WebBlob& operator=(const PassRefPtrWillBeRawPtr<Blob>&);
85 WebPrivatePtr<Blob> m_private;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DURL.idl41 [RaisesException, CallWith=ExecutionContext] static DOMString? createObjectURL(Blob? blob);

Completed in 1072 milliseconds

12345678