HomeSort by relevance Sort by last modified time
    Searched defs:blob (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/chromium_org/extensions/renderer/
blob_native_handler.cc 14 // Expects a single Blob argument. Returns the Blob's UUID.
17 blink::WebBlob blob = blink::WebBlob::fromV8Value(args[0]); local
19 v8::String::NewFromUtf8(args.GetIsolate(), blob.uuid().utf8().data()));
22 // Take ownership of a Blob created on the browser process. Expects the Blob's
23 // UUID, type, and size as arguments. Returns the Blob we just took to
24 // Javascript. The Blob reference in the browser process is dropped through
33 blink::WebBlob blob = local
37 args.GetReturnValue().Set(blob.toV8Value(args.Holder(), args.GetIsolate()))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8BlobCustom.cpp 41 ExceptionState exceptionState(ExceptionState::ConstructionContext, "Blob", info.Holder(), info.GetIsolate());
43 RefPtrWillBeRawPtr<Blob> blob = Blob::create(); local
44 v8SetReturnValue(info, blob.release());
63 if (!properties.parseBlobPropertyBag(info[1], "Blob", exceptionState, info.GetIsolate())) {
75 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), blobSize)); local
76 v8SetReturnValue(info, blob.release())
    [all...]
V8BlobCustomHelpers.cpp 128 Blob* blob = V8Blob::toImpl(v8::Handle<v8::Object>::Cast(item)); local
129 ASSERT(blob);
130 blob->appendTo(blobData);
  /external/chromium_org/chrome/renderer/extensions/
page_capture_custom_bindings.cc 33 blink::WebBlob blob = local
35 args.GetReturnValue().Set(blob.toV8Value(args.Holder(), args.GetIsolate()));
  /external/harfbuzz_ng/src/
sample.py 10 blob = hb.blob_create (fontdata, hb.memory_mode_t.WRITABLE, None, nothing) variable
11 print blob
test-size-params.cc 46 hb_blob_t *blob = NULL; local
53 /* Create the blob */
82 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
86 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
87 hb_blob_destroy (blob);
88 blob = NULL;
test-would-substitute.cc 50 hb_blob_t *blob = NULL; local
57 /* Create the blob */
86 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
90 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
91 hb_blob_destroy (blob);
92 blob = NULL;
test-buffer-serialize.cc 48 hb_blob_t *blob = NULL; local
55 /* Create the blob */
84 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
87 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
88 hb_blob_destroy (blob);
89 blob = NULL;
test.cc 49 hb_blob_t *blob = NULL; local
56 /* Create the blob */
85 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
88 printf ("Opened font file %s: %u bytes long\n", argv[1], hb_blob_get_length (blob));
91 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
92 hb_blob_destroy (blob);
93 blob = NULL;
  /external/chromium_org/third_party/WebKit/Source/core/clipboard/
DataObjectTest.cpp 37 RefPtrWillBeRawPtr<Blob> blob = item->getAsFile(); local
38 ASSERT_TRUE(blob->isFile());
39 RefPtrWillBeRawPtr<File> file = toFile(blob.get());
56 RefPtrWillBeRawPtr<Blob> blob = item->getAsFile(); local
57 ASSERT_TRUE(blob->isFile());
58 RefPtrWillBeRawPtr<File> file = toFile(blob.get());
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCPreparedStatement.java 9 boolean blob; field in class:BatchArg
11 BatchArg(String arg, boolean blob) {
17 this.blob = blob;
409 blobs[k] = b.blob;
451 public void setBlob(int i, Blob x) throws SQLException {
723 public Blob getBlob(String parameterName) throws SQLException {
727 public Blob getBlob(int parameterIndex) throws SQLException {
  /external/javasqlite/src/main/java/SQLite/
Blob.java 7 * SQLite 3.4.0 incremental blob I/O interface.
13 * Blob instance
16 private Blob blob; field in class:BlobR
25 * Contruct InputStream from blob instance.
28 BlobR(Blob blob) {
29 this.blob = blob;
39 int ret = blob.size - pos
162 private Blob blob; field in class:BlobW
    [all...]
  /external/chromium_org/content/browser/fileapi/
chrome_blob_storage_context.cc 12 #include "storage/browser/blob/blob_data_handle.h"
13 #include "storage/browser/blob/blob_storage_context.h"
47 scoped_refptr<ChromeBlobStorageContext> blob = local
51 new UserDataAdapter<ChromeBlobStorageContext>(blob.get()));
56 base::Bind(&ChromeBlobStorageContext::InitializeOnIOThread, blob));
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
RequestInit.cpp 14 #include "core/fileapi/Blob.h"
16 #include "platform/blob/BlobData.h"
46 Blob* blob = V8Blob::toImpl(v8::Handle<v8::Object>::Cast(body)); local
47 ASSERT(blob);
48 blob->appendTo(*blobData);
49 blobData->setContentType(blob->type());
Response.cpp 10 #include "core/fileapi/Blob.h"
49 Response* Response::create(ExecutionContext* context, Blob* body, const Dictionary& responseInit, ExceptionState& exceptionState)
61 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), length)); local
62 return create(context, blob.get(), ResponseInit(responseInit), exceptionState);
70 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), length)); local
71 return create(context, blob.get(), ResponseInit(responseInit), exceptionState)
79 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), length)); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebBlob.cpp 36 #include "core/fileapi/Blob.h"
37 #include "platform/blob/BlobData.h"
44 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(uuid, type, size)); local
45 return WebBlob(blob);
52 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), size)); local
53 return WebBlob(blob);
60 Blob* blob = V8Blob::toImpl(object); local
    [all...]
WebDragData.cpp 99 RefPtrWillBeRawPtr<Blob> blob = originalItem->getAsFile(); local
100 if (blob->isFile()) {
101 File* file = toFile(blob.get());
  /external/chromium_org/third_party/harfbuzz-ng/src/
test-size-params.cc 46 hb_blob_t *blob = NULL; local
53 /* Create the blob */
82 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
86 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
87 hb_blob_destroy (blob);
88 blob = NULL;
test-would-substitute.cc 50 hb_blob_t *blob = NULL; local
57 /* Create the blob */
86 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
90 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
91 hb_blob_destroy (blob);
92 blob = NULL;
test-buffer-serialize.cc 48 hb_blob_t *blob = NULL; local
55 /* Create the blob */
84 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
87 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
88 hb_blob_destroy (blob);
89 blob = NULL;
test.cc 49 hb_blob_t *blob = NULL; local
56 /* Create the blob */
85 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
88 printf ("Opened font file %s: %u bytes long\n", argv[1], hb_blob_get_length (blob));
91 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
92 hb_blob_destroy (blob);
93 blob = NULL;
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
Blob.cpp 32 #include "core/fileapi/Blob.h"
39 #include "platform/blob/BlobRegistry.h"
40 #include "platform/blob/BlobURL.h"
57 Blob* blob = static_cast<Blob*>(registrableObject); local
58 BlobRegistry::registerPublicBlobURL(origin, publicURL, blob->blobDataHandle());
74 Blob::Blob(PassRefPtr<BlobDataHandle> dataHandle)
80 Blob::~Blob(
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
FormDataList.h 24 #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(); } function in class:blink::FormDataList::Item
51 RefPtrWillBeMember<Blob> m_blob;
75 void appendBlob(const String& key, PassRefPtrWillBeRawPtr<Blob> blob, const String& filename = String())
78 appendBlob(blob, filename)
    [all...]
  /art/test/044-proxy/src/
BasicTest.java 45 shapes.blob();
53 colors.blob();
133 public String blob(); method in interface:Shapes
157 public String blob(); method in interface:Colors
193 public String blob() { method in class:Mix
194 System.out.println("--- blob");
  /external/chromium_org/chrome/app/
signature_validator_win_unittest.cc 77 CRYPT_BIT_BLOB blob = cert->pCertInfo->SubjectPublicKeyInfo.PublicKey; local
78 size_t public_key_length = blob.cbData;
79 uint8* public_key = blob.pbData;

Completed in 448 milliseconds

1 2 3