HomeSort by relevance Sort by last modified time
    Searched refs:Blob (Results 1 - 25 of 166) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
Blob.h 47 class Blob : public ScriptWrappable, public URLRegistrable, public RefCounted<Blob> {
49 static PassRefPtr<Blob> create()
51 return adoptRef(new Blob);
54 static PassRefPtr<Blob> create(PassOwnPtr<BlobData> blobData, long long size)
56 return adoptRef(new Blob(blobData, size));
60 static PassRefPtr<Blob> create(const KURL& srcURL, const String& type, long long size)
62 return adoptRef(new Blob(srcURL, type, size));
65 virtual ~Blob();
76 PassRefPtr<Blob> slice(long long start = 0, long long end = std::numeric_limits<long long>::max(), const String& c (…)
    [all...]
FileReaderSync.idl 35 [CallWith=ScriptExecutionContext, RaisesException] ArrayBuffer readAsArrayBuffer(Blob blob);
36 [CallWith=ScriptExecutionContext, RaisesException] DOMString readAsBinaryString(Blob blob);
37 [CallWith=ScriptExecutionContext, RaisesException] DOMString readAsText(Blob blob, optional DOMString encoding);
38 [CallWith=ScriptExecutionContext, RaisesException] DOMString readAsDataURL(Blob blob);
BlobBuilder.h 43 class Blob;
51 void append(Blob*);
56 PassRefPtr<Blob> getBlob(const String& contentType);
FileReaderSync.h 41 class Blob;
55 PassRefPtr<ArrayBuffer> readAsArrayBuffer(ScriptExecutionContext*, Blob*, ExceptionState&);
56 String readAsBinaryString(ScriptExecutionContext*, Blob*, ExceptionState&);
57 String readAsText(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionState& ec)
59 return readAsText(scriptExecutionContext, blob, "", ec);
61 String readAsText(ScriptExecutionContext*, Blob*, const String& encoding, ExceptionState&);
62 String readAsDataURL(ScriptExecutionContext*, Blob*, ExceptionState&);
67 void startLoading(ScriptExecutionContext*, FileReaderLoader&, const Blob&, ExceptionState&);
File.idl 26 interface File : Blob {
Blob.cpp 32 #include "core/fileapi/Blob.h"
49 void BlobURLRegistry::registerURL(SecurityOrigin* origin, const KURL& publicURL, URLRegistrable* blob)
51 ASSERT(&blob->registry() == this);
52 BlobRegistry::registerBlobURL(origin, publicURL, static_cast<Blob*>(blob)->url());
67 Blob::Blob()
73 // Create a new internal URL and register it with the provided blob data.
78 Blob::Blob(PassOwnPtr<BlobData> blobData, long long size
    [all...]
Blob.idl 36 ] interface Blob {
40 Blob slice(optional long long start, optional long long end, [TreatNullAs=NullString, TreatUndefinedAs=NullString] optional DOMString contentType);
FileReader.h 46 class Blob;
62 void readAsArrayBuffer(Blob*, ExceptionState&);
63 void readAsBinaryString(Blob*, ExceptionState&);
64 void readAsText(Blob*, const String& encoding, ExceptionState&);
65 void readAsText(Blob*, ExceptionState&);
66 void readAsDataURL(Blob*, ExceptionState&);
111 void readInternal(Blob*, FileReaderLoader::ReadType, ExceptionState&);
128 RefPtr<Blob> m_blob;
FileReader.idl 45 [RaisesException] void readAsArrayBuffer(Blob blob);
46 [RaisesException] void readAsBinaryString(Blob blob);
47 [RaisesException] void readAsText(Blob blob, optional DOMString encoding);
48 [RaisesException] void readAsDataURL(Blob blob);
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
AsyncFileWriter.h 39 class Blob;
45 virtual void write(long long position, Blob* data) = 0;
FileWriterSync.h 42 class Blob;
54 void write(Blob*, ExceptionState&);
FileWriterSync.idl 35 [RaisesException] void write(Blob data);
  /external/chromium/chrome/browser/sync/syncable/
blob.h 15 typedef std::vector<uint8> Blob;
  /external/chromium_org/sync/syncable/
blob.h 15 typedef std::vector<uint8> Blob;
  /system/core/include/utils/
BlobCache.h 40 // Create an empty blob cache. The blob cache will cache key/value pairs
120 // A Blob is an immutable sized unstructured data blob.
121 class Blob : public RefBase {
123 Blob(const void* data, size_t size, bool copyData);
124 ~Blob();
126 bool operator<(const Blob& rhs) const;
133 Blob(const Blob&)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
TestOverloadedConstructors.idl 31 Constructor(Blob blob),
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DataTransferItem.h 40 class Blob;
61 virtual PassRefPtr<Blob> getAsFile() const = 0;
DataTransferItem.idl 38 Blob getAsFile();
  /external/chromium_org/third_party/WebKit/Source/core/html/
DOMURL.h 36 class Blob;
45 static String createObjectURL(ScriptExecutionContext*, Blob*);
URL.idl 32 [CallWith=ScriptExecutionContext,TreatReturnedNullStringAs=Null] static DOMString createObjectURL(Blob? blob);
FormDataList.h 24 #include "core/fileapi/Blob.h"
37 Item(PassRefPtr<Blob> blob, const String& filename) : m_blob(blob), m_filename(filename) { }
40 Blob* blob() const { return m_blob.get(); } function in class:WebCore::FormDataList::Item
45 RefPtr<Blob> m_blob;
66 void appendBlob(const String& key, PassRefPtr<Blob> blob, const String& filename = String())
69 appendBlob(blob, filename)
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebBlob.h 44 namespace WebCore { class Blob; }
72 WebBlob(const WTF::PassRefPtr<WebCore::Blob>&);
73 WebBlob& operator=(const WTF::PassRefPtr<WebCore::Blob>&);
74 operator WTF::PassRefPtr<WebCore::Blob>() const;
78 WebPrivatePtr<WebCore::Blob> m_private;
  /external/chromium_org/third_party/smhasher/src/
Types.h 29 // Mix the given blob of data into the verification code
31 void MixVCode ( const void * blob, int len );
36 typedef void (*pfHash) ( const void * blob, const int len, const uint32_t seed, void * out );
192 class Blob
196 Blob()
204 Blob ( int x )
214 Blob ( const Blob & k )
222 Blob & operator = ( const Blob & k
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebBlob.cpp 36 #include "core/fileapi/Blob.h"
48 RefPtr<Blob> blob = Blob::create(blobData.release(), size); local
49 return WebBlob(blob);
56 Blob* blob = V8Blob::toNative(object); local
57 ASSERT(blob);
58 return WebBlob(blob);
87 WebBlob::WebBlob(const WTF::PassRefPtr<WebCore::Blob>& blob
    [all...]
  /system/core/libutils/
BlobCache.cpp 80 sp<Blob> dummyKey(new Blob(key, keySize, false));
87 sp<Blob> keyBlob(new Blob(key, keySize, true));
88 sp<Blob> valueBlob(new Blob(value, valueSize, true));
109 sp<Blob> valueBlob(new Blob(value, valueSize, true));
110 sp<Blob> oldValueBlob(mCacheEntries[index].getValue());
140 sp<Blob> dummyKey(new Blob(key, keySize, false))
    [all...]

Completed in 822 milliseconds

1 2 3 4 5 6 7