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

1 2 3 4 5

  /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/wpa_supplicant_8/wpa_supplicant/
config_none.c 40 struct wpa_config_blob *blob; local
51 for (blob = config->blobs; blob; blob = blob->next) {
  /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/bindings/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());
68 if (!properties.parseBlobPropertyBag(info[1], "Blob", exceptionState, info.GetIsolate())) {
81 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), blobSize)); local
82 v8SetReturnValue(info, blob.release())
    [all...]
V8BlobCustomHelpers.cpp 125 Blob* blob = V8Blob::toNative(v8::Handle<v8::Object>::Cast(item)); local
126 ASSERT(blob);
127 blob->appendTo(blobData);
V8XMLHttpRequestCustom.cpp 128 Blob* blob = xmlHttpRequest->responseBlob(); local
129 v8SetReturnValueFast(info, blob, xmlHttpRequest);
224 Blob* blob = V8Blob::toNative(object); local
225 ASSERT(blob);
226 xmlHttpRequest->send(blob, exceptionState);
  /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 "webkit/browser/blob/blob_data_handle.h"
13 #include "webkit/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/core/html/
FormDataList.h 24 #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(); } function in class:WebCore::FormDataList::Item
50 RefPtrWillBeMember<Blob> m_blob;
71 void appendBlob(const String& key, PassRefPtrWillBeRawPtr<Blob> blob, const String& filename = String())
74 appendBlob(blob, filename)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebBlob.cpp 36 #include "core/fileapi/Blob.h"
37 #include "platform/blob/BlobData.h"
46 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(uuid, type, size)); local
47 return WebBlob(blob);
54 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), size)); local
55 return WebBlob(blob);
62 Blob* blob = V8Blob::toNative(object); local
    [all...]
WebDragData.cpp 101 RefPtrWillBeRawPtr<WebCore::Blob> blob = originalItem->getAsFile(); local
102 if (blob->isFile()) {
103 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;
  /system/keymaster/
google_softkeymaster.h 29 root_of_trust.blob.data = reinterpret_cast<const uint8_t*>("SW");
30 root_of_trust.blob.data_length = 2;
39 keymaster_key_blob_t blob; local
40 blob.key_material = master_key_;
41 blob.key_material_size = 16;
42 return blob;
  /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)
81 Blob::~Blob(
    [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 613 milliseconds

1 2 3 4 5