Searched defs:blob (Results 1 - 25 of 120) sorted by relevance

12345

/external/chromium_org/chrome/renderer/extensions/
H A Dfeedback_private_custom_bindings.cc16 WebKit::WebBlob blob = WebKit::WebBlob::fromV8Value(args[0]); local
17 args.GetReturnValue().Set(v8::String::New(blob.url().spec().data()));
H A Dpage_capture_custom_bindings.cc35 WebKit::WebBlob blob = local
37 args.GetReturnValue().Set(blob.toV8Value());
/external/wpa_supplicant_8/wpa_supplicant/
H A Dconfig_none.c40 struct wpa_config_blob *blob; local
51 for (blob = config->blobs; blob; blob = blob->next) {
/external/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DFileReaderSync.h57 String readAsText(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionState& ec) argument
59 return readAsText(scriptExecutionContext, blob, "", ec);
H A DFileReaderSync.cpp49 PassRefPtr<ArrayBuffer> FileReaderSync::readAsArrayBuffer(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionState& es) argument
51 if (!blob) {
57 startLoading(scriptExecutionContext, loader, *blob, es);
62 String FileReaderSync::readAsBinaryString(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionState& es) argument
64 if (!blob) {
70 startLoading(scriptExecutionContext, loader, *blob, es);
74 String FileReaderSync::readAsText(ScriptExecutionContext* scriptExecutionContext, Blob* blob, const String& encoding, ExceptionState& es) argument
76 if (!blob) {
83 startLoading(scriptExecutionContext, loader, *blob, es);
87 String FileReaderSync::readAsDataURL(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionStat argument
100 startLoading(ScriptExecutionContext* scriptExecutionContext, FileReaderLoader& loader, const Blob& blob, ExceptionState& es) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DDOMFormData.cpp67 void DOMFormData::append(const String& name, Blob* blob, const String& filename) argument
70 appendBlob(name, blob, filename);
H A DDOMURL.cpp41 String DOMURL::createObjectURL(ScriptExecutionContext* scriptExecutionContext, Blob* blob) argument
43 if (!scriptExecutionContext || !blob)
45 return createPublicURL(scriptExecutionContext, blob);
H A DFormDataList.cpp44 void FormDataList::appendBlob(PassRefPtr<Blob> blob, const String& filename) argument
46 m_items.append(Item(blob, filename));
H A DFormDataList.h37 Item(PassRefPtr<Blob> blob, const String& filename) : m_blob(blob), m_filename(filename) { } argument
40 Blob* blob() const { return m_blob.get(); } function in class:WebCore::FormDataList::Item
66 void appendBlob(const String& key, PassRefPtr<Blob> blob, const String& filename = String()) argument
69 appendBlob(blob, filename);
/external/javasqlite/src/main/java/SQLite/JDBC2z/
H A DJDBCPreparedStatement.java9 boolean blob; field in class:BatchArg
11 BatchArg(String arg, boolean blob) { argument
17 this.blob = blob;
409 blobs[k] = b.blob;
/external/chromium_org/content/browser/fileapi/
H A Dchrome_blob_storage_context.cc10 #include "webkit/browser/blob/blob_storage_controller.h"
24 scoped_refptr<ChromeBlobStorageContext> blob = local
28 new UserDataAdapter<ChromeBlobStorageContext>(blob.get()));
33 base::Bind(&ChromeBlobStorageContext::InitializeOnIOThread, blob));
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8BlobCustom.cpp57 RefPtr<Blob> blob = Blob::create(); local
58 args.GetReturnValue().Set(toV8(blob.get(), args.Holder(), args.GetIsolate()));
116 Blob* blob = V8Blob::toNative(v8::Handle<v8::Object>::Cast(item)); local
117 ASSERT(blob);
118 blobBuilder.append(blob);
125 RefPtr<Blob> blob = blobBuilder.getBlob(type); local
126 args.GetReturnValue().Set(toV8(blob.get(), args.Holder(), args.GetIsolate()));
H A DV8FormDataCustom.cpp68 Blob* blob = V8Blob::toNative(object); local
69 ASSERT(blob);
75 domFormData->append(name, blob, filename);
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dtest-size-params.cc43 hb_blob_t *blob = NULL; local
50 /* Create the blob */
79 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
83 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
84 hb_blob_destroy (blob);
85 blob = NULL;
H A Dtest-would-substitute.cc47 hb_blob_t *blob = NULL; local
54 /* Create the blob */
83 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;
H A Dtest-buffer-serialize.cc45 hb_blob_t *blob = NULL; local
52 /* Create the blob */
81 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
84 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
85 hb_blob_destroy (blob);
86 blob = NULL;
H A Dtest.cc46 hb_blob_t *blob = NULL; local
53 /* Create the blob */
82 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
85 printf ("Opened font file %s: %u bytes long\n", argv[1], hb_blob_get_length (blob));
88 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
89 hb_blob_destroy (blob);
90 blob = NULL;
/external/chromium_org/third_party/smhasher/src/
H A DBitvec.h9 void printbits ( const void * blob, int len );
10 void printhex32 ( const void * blob, int len );
11 void printbytes ( const void * blob, int len );
12 void printbytes2 ( const void * blob, int len );
17 uint32_t getbit ( const void * blob, int len, uint32_t bit );
18 uint32_t getbit_wrap ( const void * blob, int len, uint32_t bit );
20 void setbit ( void * blob, int len, uint32_t bit );
21 void setbit ( void * blob, int len, uint32_t bit, uint32_t val );
23 void clearbit ( void * blob, int len, uint32_t bit );
25 void flipbit ( void * blob, in
37 getbit( T & blob, uint32_t bit ) argument
42 getbit( uint32_t & blob, uint32_t bit ) argument
43 getbit( uint64_t & blob, uint32_t bit ) argument
48 setbit( T & blob, uint32_t bit ) argument
53 setbit( uint32_t & blob, uint32_t bit ) argument
54 setbit( uint64_t & blob, uint32_t bit ) argument
59 flipbit( T & blob, uint32_t bit ) argument
64 flipbit( uint32_t & blob, uint32_t bit ) argument
65 flipbit( uint64_t & blob, uint32_t bit ) argument
79 lshift( void * blob, int len, int c ) argument
91 rshift( void * blob, int len, int c ) argument
104 lshift( T & blob, int c ) argument
117 rshift( T & blob, int c ) argument
129 lshift( uint32_t & blob, int c ) argument
130 lshift( uint64_t & blob, int c ) argument
131 rshift( uint32_t & blob, int c ) argument
132 rshift( uint64_t & blob, int c ) argument
146 lrot( void * blob, int len, int c ) argument
158 rrot( void * blob, int len, int c ) argument
171 lrot( T & blob, int c ) argument
184 rrot( T & blob, int c ) argument
196 lrot( uint32_t & blob, int c ) argument
197 lrot( uint64_t & blob, int c ) argument
198 rrot( uint32_t & blob, int c ) argument
199 rrot( uint64_t & blob, int c ) argument
208 window( void * blob, int len, int start, int count ) argument
221 window( T & blob, int start, int count ) argument
234 window( uint32_t & blob, int start, int count ) argument
240 window( uint64_t & blob, int start, int count ) argument
[all...]
H A DRandom.h72 void rand_p ( void * blob, int bytes ) argument
74 uint32_t * blocks = reinterpret_cast<uint32_t*>(blob);
99 inline void rand_p ( void * blob, int bytes ) argument
101 uint32_t * blocks = (uint32_t*)blob;
H A DTypes.cpp7 uint32_t MurmurOAAT ( const void * blob, int len, uint32_t seed );
30 void MixVCode ( const void * blob, int len ) argument
32 g_verify = MurmurOAAT(blob,len,g_verify);
/external/harfbuzz_ng/src/hb-icu-le/
H A DFontTableCache.cpp19 hb_blob_t *blob; member in struct:FontTableCacheEntry
34 fTableCache[i].blob = NULL;
41 hb_blob_destroy(fTableCache[i].blob);
44 fTableCache[i].blob = NULL;
52 void FontTableCache::freeFontTable(hb_blob_t *blob) const
54 hb_blob_destroy(blob);
61 return hb_blob_get_data(fTableCache[i].blob, NULL);
65 hb_blob_t *blob = readFontTable(tableTag); local
67 ((FontTableCache *) this)->add(tableTag, blob);
69 return hb_blob_get_data (blob, NUL
72 add(LETag tableTag, hb_blob_t *blob) argument
[all...]
/external/harfbuzz_ng/src/
H A Dtest-size-params.cc43 hb_blob_t *blob = NULL; local
50 /* Create the blob */
79 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
83 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
84 hb_blob_destroy (blob);
85 blob = NULL;
H A Dtest-would-substitute.cc47 hb_blob_t *blob = NULL; local
54 /* Create the blob */
83 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;
H A Dtest-buffer-serialize.cc45 hb_blob_t *blob = NULL; local
52 /* Create the blob */
81 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
84 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
85 hb_blob_destroy (blob);
86 blob = NULL;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d11/
H A Dd3d11_misc.h40 static HRESULT dxbc_assemble_as_blob(struct dxbc_chunk_header** chunks, unsigned num_chunks, ID3D10Blob** blob) argument
45 *blob = new GalliumD3DBlob(p.first, p.second);

Completed in 444 milliseconds

12345