Searched refs:Blob (Results 1 - 25 of 178) 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;
56 PassRefPtr<ArrayBuffer> readAsArrayBuffer(ExecutionContext*, Blob*, ExceptionState&);
57 String readAsBinaryString(ExecutionContext*, Blob*, ExceptionState&);
58 String readAsText(ExecutionContext* executionContext, Blob* blob, ExceptionState& ec)
62 String readAsText(ExecutionContext*, Blob*, const String& encoding, ExceptionState&);
63 String readAsDataURL(ExecutionContext*, Blob*, ExceptionState&);
70 void startLoading(ExecutionContext*, FileReaderLoader&, const Blob&, ExceptionState&);
H A DBlob.h48 class Blob : public RefCountedWillBeGarbageCollectedFinalized<Blob>, public ScriptWrappable, public URLRegistrable { class in namespace:WebCore
50 static PassRefPtrWillBeRawPtr<Blob> create()
52 return adoptRefWillBeNoop(new Blob(BlobDataHandle::create()));
55 static PassRefPtrWillBeRawPtr<Blob> create(PassRefPtr<BlobDataHandle> blobDataHandle)
57 return adoptRefWillBeNoop(new Blob(blobDataHandle));
60 virtual ~Blob();
63 virtual PassRefPtrWillBeRawPtr<Blob> slice(long long start, long long end, const String& contentType, ExceptionState&) const;
66 PassRefPtrWillBeRawPtr<Blob> slice(ExceptionState& exceptionState) const
70 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:WebCore::Blob
81 Blob::~Blob()
85 void Blob::clampSliceOffsets(long long size, long long& start, long long& end)
109 PassRefPtrWillBeRawPtr<Blob> Blob
[all...]
H A DFileReader.idl46 [RaisesException] void readAsArrayBuffer(Blob blob);
47 [RaisesException] void readAsBinaryString(Blob blob);
48 [RaisesException] void readAsText(Blob blob, optional DOMString encoding);
49 [RaisesException] void readAsDataURL(Blob blob);
H A DFileReader.h48 class Blob;
66 void readAsArrayBuffer(Blob*, ExceptionState&);
67 void readAsBinaryString(Blob*, ExceptionState&);
68 void readAsText(Blob*, const String& encoding, ExceptionState&);
69 void readAsText(Blob*, ExceptionState&);
70 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, [TreatNullAs=NullString, TreatUndefinedAs=NullString] optional DOMString contentType);
H A DFileReaderSync.cpp36 #include "core/fileapi/Blob.h"
49 PassRefPtr<ArrayBuffer> FileReaderSync::readAsArrayBuffer(ExecutionContext* executionContext, Blob* blob, ExceptionState& exceptionState)
62 String FileReaderSync::readAsBinaryString(ExecutionContext* executionContext, Blob* blob, ExceptionState& exceptionState)
74 String FileReaderSync::readAsText(ExecutionContext* executionContext, Blob* blob, const String& encoding, ExceptionState& exceptionState)
87 String FileReaderSync::readAsDataURL(ExecutionContext* executionContext, Blob* blob, ExceptionState& exceptionState)
100 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 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;
58 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;
54 void write(Blob*, ExceptionState&);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebBlob.cpp36 #include "core/fileapi/Blob.h"
46 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(uuid, type, size));
54 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), size));
62 Blob* blob = V8Blob::toNative(object);
93 WebBlob::WebBlob(const PassRefPtrWillBeRawPtr<WebCore::Blob>& blob)
98 WebBlob& WebBlob::operator=(const PassRefPtrWillBeRawPtr<WebCore::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"
40 Item(PassRefPtrWillBeRawPtr<Blob> blob, const String& filename) : m_blob(blob), m_filename(filename) { }
43 Blob* blob() const { return m_blob.get(); }
50 RefPtrWillBeMember<Blob> m_blob;
71 void appendBlob(const String& key, PassRefPtrWillBeRawPtr<Blob> blob, const String& filename = String())
90 void appendBlob(PassRefPtrWillBeRawPtr<Blob>, const String& filename);
H A DDOMFormData.h46 class Blob;
62 void append(const String& name, Blob*, const String& filename = String());
/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/v8/custom/
H A DV8BlobCustom.cpp41 ExceptionState exceptionState(ExceptionState::ConstructionContext, "Blob", info.Holder(), info.GetIsolate());
43 RefPtrWillBeRawPtr<Blob> blob = Blob::create();
68 if (!properties.parseBlobPropertyBag(info[1], "Blob", exceptionState, info.GetIsolate())) {
81 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), blobSize));
/external/chromium_org/third_party/WebKit/public/web/
H A DWebBlob.h51 namespace WebCore { class Blob; }
80 explicit WebBlob(const PassRefPtrWillBeRawPtr<WebCore::Blob>&);
81 WebBlob& operator=(const PassRefPtrWillBeRawPtr<WebCore::Blob>&);
85 WebPrivatePtr<WebCore::Blob> m_private;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DURL.idl41 [RaisesException, CallWith=ExecutionContext, TreatReturnedNullStringAs=Null] static DOMString createObjectURL(Blob? blob);

Completed in 1164 milliseconds

12345678