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

1 2 3 4 5

  /external/webkit/Source/WebCore/fileapi/
Blob.h 44 class Blob : public RefCounted<Blob> {
46 static PassRefPtr<Blob> create(PassOwnPtr<BlobData> blobData, long long size)
48 return adoptRef(new Blob(blobData, size));
52 static PassRefPtr<Blob> create(const KURL& srcURL, const String& type, long long size)
54 return adoptRef(new Blob(srcURL, type, size));
57 virtual ~Blob();
65 #if ENABLE(BLOB)
66 PassRefPtr<Blob> webkitSlice(long long start, long long end = std::numeric_limits<long long>::max(), const String& contentType = String()) const;
70 Blob(PassOwnPtr<BlobData>, long long size)
    [all...]
AsyncFileWriter.h 41 class Blob;
47 virtual void write(long long position, Blob* data) = 0;
FileReaderSync.h 34 #if ENABLE(BLOB)
44 class Blob;
57 PassRefPtr<ArrayBuffer> readAsArrayBuffer(ScriptExecutionContext*, Blob*, ExceptionCode&);
58 String readAsBinaryString(ScriptExecutionContext*, Blob*, ExceptionCode&);
59 String readAsText(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionCode& ec)
61 return readAsText(scriptExecutionContext, blob, "", ec);
63 String readAsText(ScriptExecutionContext*, Blob*, const String& encoding, ExceptionCode&);
64 String readAsDataURL(ScriptExecutionContext*, Blob*, ExceptionCode&);
69 void startLoading(ScriptExecutionContext*, FileReaderLoader&, Blob*, ExceptionCode&)
    [all...]
Blob.cpp 32 #include "Blob.h"
40 Blob::Blob(PassOwnPtr<BlobData> blobData, long long size)
46 // Create a new internal URL and register it with the provided blob data.
51 Blob::Blob(const KURL& srcURL, const String& type, long long size)
55 // Create a new internal URL and register it with the same blob data as the source URL.
60 Blob::~Blob()
65 #if ENABLE(BLOB)
    [all...]
FileReaderSync.idl 33 Conditional=BLOB,
37 [CallWith=ScriptExecutionContext] ArrayBuffer readAsArrayBuffer(in Blob blob)
39 [CallWith=ScriptExecutionContext, ConvertScriptString] DOMString readAsBinaryString(in Blob blob)
41 [CallWith=ScriptExecutionContext, ConvertScriptString] DOMString readAsText(in Blob blob, in [Optional] DOMString encoding)
43 [CallWith=ScriptExecutionContext, ConvertScriptString] DOMString readAsDataURL(in Blob blob)
WebKitBlobBuilder.h 41 class Blob;
50 void append(Blob*);
53 #if ENABLE(BLOB)
57 PassRefPtr<Blob> getBlob(const String& contentType = String());
Blob.idl 35 ] Blob {
41 Blob webkitSlice(in long long start, in [Optional] long long end, in [Optional, ConvertUndefinedOrNullToNullString] DOMString contentType);
WebKitBlobBuilder.idl 38 Blob getBlob(in [Optional, ConvertUndefinedOrNullToNullString] DOMString contentType);
40 void append(in Blob blob);
FileReader.idl 33 Conditional=BLOB,
47 void readAsArrayBuffer(in Blob blob);
48 void readAsBinaryString(in Blob blob);
49 void readAsText(in Blob blob, in [Optional] DOMString encoding);
50 void readAsDataURL(in Blob blob);
FileReader.h 34 #if ENABLE(BLOB)
48 class Blob;
66 void readAsArrayBuffer(Blob*);
67 void readAsBinaryString(Blob*);
68 void readAsText(Blob*, const String& encoding = "");
69 void readAsDataURL(Blob*);
125 void readInternal(Blob*, FileReaderLoader::ReadType);
132 RefPtr<Blob> m_blob;
143 #endif // ENABLE(BLOB)
FileReaderSync.cpp 33 #if ENABLE(BLOB)
38 #include "Blob.h"
50 PassRefPtr<ArrayBuffer> FileReaderSync::readAsArrayBuffer(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionCode& ec)
52 if (!blob)
56 startLoading(scriptExecutionContext, loader, blob, ec);
61 String FileReaderSync::readAsBinaryString(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionCode& ec)
63 if (!blob)
67 startLoading(scriptExecutionContext, loader, blob, ec)
    [all...]
FileWriterSync.h 43 class Blob;
56 void write(Blob*, ExceptionCode&);
FileWriterSync.idl 36 void write(in Blob data) raises (FileException);
File.idl 32 ] File : Blob {
  /external/chromium/chrome/browser/sync/syncable/
blob.h 15 typedef std::vector<uint8> Blob;
  /frameworks/native/include/utils/
BlobCache.h 39 // Create an empty blob cache. The blob cache will cache key/value pairs
128 // A Blob is an immutable sized unstructured data blob.
129 class Blob : public RefBase {
131 Blob(const void* data, size_t size, bool copyData);
132 ~Blob();
134 bool operator<(const Blob& rhs) const;
141 Blob(const Blob&)
    [all...]
  /external/webkit/Source/WebCore/dom/
DataTransferItem.h 41 class Blob;
55 virtual PassRefPtr<Blob> getAsFile() = 0;
DataTransferItem.idl 40 Blob getAsFile();
  /external/webkit/Source/WebCore/html/
DOMURL.h 29 #if ENABLE(BLOB)
37 class Blob;
45 String createObjectURL(Blob*);
59 #endif // ENABLE(BLOB)
DOMURL.idl 28 Conditional=BLOB,
34 [ConvertNullStringTo=Undefined] DOMString createObjectURL(in Blob blob);
FormDataList.h 24 #include "Blob.h"
37 Item(PassRefPtr<Blob> blob) : m_blob(blob) { }
40 Blob* blob() const { return m_blob.get(); } function in class:WebCore::FormDataList::Item
44 RefPtr<Blob> m_blob;
64 void appendBlob(const String& key, PassRefPtr<Blob> blob)
67 appendBlob(blob);
    [all...]
DOMFormData.h 41 class Blob;
51 void append(const String& name, Blob*);
  /frameworks/native/libs/utils/
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...]
  /external/webkit/Source/WebKit/chromium/src/
AsyncFileWriterChromium.h 47 class Blob;
58 virtual void write(long long position, Blob* data);
  /libcore/luni/src/main/java/java/sql/
Blob.java 24 * A Java interface representing the SQL {@code BLOB} type.
26 * An SQL {@code BLOB} type stores a large array of binary data (bytes) as the
29 * The {@code java.sql.Blob} interface provides methods for setting and
30 * retrieving data in the {@code Blob}, for querying {@code Blob} data length,
31 * and for searching for data within the {@code Blob}.
33 public interface Blob {
36 * Retrieves this {@code Blob} object as a binary stream.
38 * @return a binary {@code InputStream} giving access to the {@code Blob}
41 * if an error occurs accessing the {@code Blob}
    [all...]

Completed in 479 milliseconds

1 2 3 4 5