HomeSort by relevance Sort by last modified time
    Searched refs:blob (Results 26 - 50 of 281) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/harfbuzz_ng/src/
test-would-substitute.cc 47 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;
test.cc 46 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;
test-buffer-serialize.cc 45 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/content/browser/fileapi/
chrome_blob_storage_context.cc 10 #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/core/html/
DOMURL.cpp 32 #include "core/fileapi/Blob.h"
41 String DOMURL::createObjectURL(ScriptExecutionContext* scriptExecutionContext, Blob* blob)
43 if (!scriptExecutionContext || !blob)
45 return createPublicURL(scriptExecutionContext, blob);
FormDataList.cpp 44 void FormDataList::appendBlob(PassRefPtr<Blob> blob, const String& filename)
46 m_items.append(Item(blob, filename));
DOMFormData.cpp 34 #include "core/fileapi/Blob.h"
67 void DOMFormData::append(const String& name, Blob* blob, const String& filename)
70 appendBlob(name, blob, filename);
  /external/chromium_org/third_party/harfbuzz-ng/src/
test.cc 46 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;
test-buffer-serialize.cc 45 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;
  /dalvik/vm/
DvmDex.cpp 57 u1 *blob = (u1 *)dvmAllocRegion(totalSize, local
59 if ((void *)blob == MAP_FAILED)
62 pDvmDex = (DvmDex*)blob;
63 blob += sizeof(DvmDex);
68 pDvmDex->pResStrings = (struct StringObject**)blob;
69 blob += stringSize;
70 pDvmDex->pResClasses = (struct ClassObject**)blob;
71 blob += classSize;
72 pDvmDex->pResMethods = (struct Method**)blob;
73 blob += methodSize
    [all...]
  /external/chromium_org/third_party/smhasher/src/
Bitvec.cpp 17 void printbits ( const void * blob, int len )
19 const uint8_t * data = (const uint8_t *)blob;
58 void printhex32 ( const void * blob, int len )
62 uint32_t * d = (uint32_t*)blob;
74 void printbytes ( const void * blob, int len )
76 uint8_t * d = (uint8_t*)blob;
88 void printbytes2 ( const void * blob, int len )
90 uint8_t * d = (uint8_t*)blob;
194 void lshift1 ( void * blob, int len, int c )
200 setbit(blob,len,i,getbit(blob,len,i-c))
    [all...]
Random.h 72 void rand_p ( void * blob, int bytes )
74 uint32_t * blocks = reinterpret_cast<uint32_t*>(blob);
99 inline void rand_p ( void * blob, int bytes )
101 uint32_t * blocks = (uint32_t*)blob;
Types.cpp 7 uint32_t MurmurOAAT ( const void * blob, int len, uint32_t seed );
30 void MixVCode ( const void * blob, int len )
32 g_verify = MurmurOAAT(blob,len,g_verify);
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebArrayBuffer.cpp 87 WebArrayBuffer::WebArrayBuffer(const WTF::PassRefPtr<WTF::ArrayBuffer>& blob)
88 : m_private(blob)
92 WebArrayBuffer& WebArrayBuffer::operator=(const WTF::PassRefPtr<WTF::ArrayBuffer>& blob)
94 m_private = blob;
  /external/libvpx/libvpx/examples/includes/
vp8_doc_tools.php 134 * @param $blob str - The blob to transform
141 function do_geshi($blob, $open = '<pre>',
148 while (preg_match($regexp, $blob, $matches))
157 $blob = preg_replace($regexp, $blob_new, $blob, 1); variable
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
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&);
  /libcore/luni/src/test/java/libcore/sqlite/
OldBlobTest.java 19 import SQLite.Blob;
29 private static Blob testBlob = null;
35 testBlob = new Blob();
42 db.exec("create table B(id integer primary key, val blob)",null);
47 // can not fill Blob with data at this point...
55 .getResourceAsStream("/blob.c");
86 Blob blob = db.open_blob(dbFile.getPath(), "B", "val", 1, true); local
89 OutputStream os = blob.getOutputStream();
93 InputStream is = blob.getInputStream()
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
FolderList.java 69 public static FolderList fromBlob(byte[] blob) {
70 if (blob == null) {
75 p.unmarshall(blob, 0, blob.length);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8FormDataCustom.cpp 68 Blob* blob = V8Blob::toNative(object); local
69 ASSERT(blob);
75 domFormData->append(name, blob, filename);
V8BlobCustom.cpp 32 #include "core/fileapi/Blob.h"
46 v8::Handle<v8::Object> wrap(Blob* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
57 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
    [all...]
  /external/harfbuzz_ng/test/api/
test-font.c 51 hb_blob_t *blob; local
53 blob = hb_blob_create (test_data, sizeof (test_data), HB_MEMORY_MODE_READONLY, NULL, NULL);
54 face = hb_face_create (blob, 0);
55 hb_blob_destroy (blob);
88 hb_blob_t *blob; local
98 blob = hb_face_reference_table (face, HB_TAG ('a','b','c','d'));
99 g_assert (blob != hb_blob_get_empty ());
101 data = hb_blob_get_data (blob, &len);
104 hb_blob_destroy (blob);
147 hb_blob_t *blob; local
252 hb_blob_t *blob; local
364 hb_blob_t *blob; local
    [all...]
test-blob.c 29 /* Unit tests for hb-blob.h */
48 hb_blob_t *blob; local
57 blob = hb_blob_get_empty ();
58 g_assert (blob == hb_blob_get_empty ());
60 len = hb_blob_get_length (blob);
63 data = hb_blob_get_data (blob, NULL);
66 data = hb_blob_get_data (blob, &len);
70 data_writable = hb_blob_get_data_writable (blob, NULL);
73 data_writable = hb_blob_get_data_writable (blob, &len);
91 hb_blob_t *blob; member in struct:__anon20482
    [all...]
test-shape.c 86 hb_blob_t *blob; local
95 blob = hb_blob_create (test_data, sizeof (test_data), HB_MEMORY_MODE_READONLY, NULL, NULL);
96 face = hb_face_create (blob, 0);
97 hb_blob_destroy (blob);
  /hardware/samsung_slsi/exynos5/mobicore/common/LogWrapper/
log.h 57 /** LOG_I_BUF(szDescriptor, blob, sizeOfBlob)
134 const void * blob,
161 index += sprintf(&buffer[index], " (0x%08x, %d bytes)", (uint32_t)blob,sizeOfBlob);
167 index += sprintf(&buffer[index], "Data at 0x%08x: ", (uint32_t)blob);
191 index += sprintf(&buffer[index], "%02x ", ((const char *)blob)[i] );
205 char c = ((const char *)blob)[i];
209 blob = &(((const char *)blob)[blockLen]);
  /external/chromium/chrome/browser/sync/engine/
syncer_proto_util.h 12 #include "chrome/browser/sync/syncable/blob.h"
63 syncable::Blob* blob);
65 const syncable::Blob& blob);
66 static void CopyBlobIntoProtoBytes(const syncable::Blob& blob,

Completed in 2863 milliseconds

12 3 4 5 6 7 8 91011>>