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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/smhasher/src/
Bitvec.h 9 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, int len, uint32_t bit )
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-blob.cc 35 #include "hb-blob.h"
70 static bool _try_writable (hb_blob_t *blob);
73 _hb_blob_destroy_user_data (hb_blob_t *blob)
75 if (blob->destroy) {
76 blob->destroy (blob->user_data);
77 blob->user_data = NULL;
78 blob->destroy = NULL;
89 hb_blob_t *blob; local
91 if (!length || !(blob = hb_object_create<hb_blob_t> ()))
120 hb_blob_t *blob; local
    [all...]
hb-blob.h 43 * that is passed to HarfBuzz in a blob. If there is
76 * Even if the parent blob is writable, we don't
77 * want the user of the sub-blob to be able to
90 hb_blob_reference (hb_blob_t *blob);
93 hb_blob_destroy (hb_blob_t *blob);
96 hb_blob_set_user_data (hb_blob_t *blob,
104 hb_blob_get_user_data (hb_blob_t *blob,
109 hb_blob_make_immutable (hb_blob_t *blob);
112 hb_blob_is_immutable (hb_blob_t *blob);
116 hb_blob_get_length (hb_blob_t *blob);
    [all...]
test-size-params.cc 43 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;
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;
  /external/harfbuzz_ng/src/
hb-blob.cc 32 #include "hb-blob.h"
67 static bool _try_writable (hb_blob_t *blob);
70 _hb_blob_destroy_user_data (hb_blob_t *blob)
72 if (blob->destroy) {
73 blob->destroy (blob->user_data);
74 blob->user_data = NULL;
75 blob->destroy = NULL;
86 hb_blob_t *blob; local
88 if (!length || !(blob = hb_object_create<hb_blob_t> ()))
117 hb_blob_t *blob; local
    [all...]
hb-blob.h 43 * that is passed to HarfBuzz in a blob. If there is
76 * Even if the parent blob is writable, we don't
77 * want the user of the sub-blob to be able to
90 hb_blob_reference (hb_blob_t *blob);
93 hb_blob_destroy (hb_blob_t *blob);
96 hb_blob_set_user_data (hb_blob_t *blob,
104 hb_blob_get_user_data (hb_blob_t *blob,
109 hb_blob_make_immutable (hb_blob_t *blob);
112 hb_blob_is_immutable (hb_blob_t *blob);
116 hb_blob_get_length (hb_blob_t *blob);
    [all...]
test-size-params.cc 43 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;
  /external/harfbuzz_ng/src/hb-icu-le/
FontTableCache.cpp 19 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, NULL)
    [all...]
FontTableCache.h 13 #include <hb-blob.h>
35 virtual void freeFontTable(hb_blob_t *blob) const;
39 void add(LETag tableTag, hb_blob_t *blob);
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileReaderSync.idl 35 [CallWith=ScriptExecutionContext, RaisesException] ArrayBuffer readAsArrayBuffer(Blob blob);
36 [CallWith=ScriptExecutionContext, RaisesException] DOMString readAsBinaryString(Blob blob);
37 [CallWith=ScriptExecutionContext, RaisesException] DOMString readAsText(Blob blob, optional DOMString encoding);
38 [CallWith=ScriptExecutionContext, RaisesException] DOMString readAsDataURL(Blob blob);
FileReaderSync.cpp 36 #include "core/fileapi/Blob.h"
49 PassRefPtr<ArrayBuffer> FileReaderSync::readAsArrayBuffer(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionState& es)
51 if (!blob) {
57 startLoading(scriptExecutionContext, loader, *blob, es);
62 String FileReaderSync::readAsBinaryString(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionState& es)
64 if (!blob) {
70 startLoading(scriptExecutionContext, loader, *blob, es);
74 String FileReaderSync::readAsText(ScriptExecutionContext* scriptExecutionContext, Blob* blob, const String& encoding, ExceptionState& es
    [all...]
FileReader.cpp 49 const CString utf8BlobURL(Blob* blob)
51 return blob->url().string().utf8();
54 const CString utf8FilePath(Blob* blob)
56 return blob->isFile() ? toFile(blob)->path().utf8() : "";
101 void FileReader::readAsArrayBuffer(Blob* blob, ExceptionState& es)
103 if (!blob)
    [all...]
File.h 29 #include "core/fileapi/Blob.h"
38 class File : public Blob {
123 inline File* toFile(Blob* blob)
125 ASSERT_WITH_SECURITY_IMPLICATION(!blob || blob->isFile());
126 return static_cast<File*>(blob);
129 inline const File* toFile(const Blob* blob)
131 ASSERT_WITH_SECURITY_IMPLICATION(!blob || blob->isFile())
    [all...]
FileReader.idl 45 [RaisesException] void readAsArrayBuffer(Blob blob);
46 [RaisesException] void readAsBinaryString(Blob blob);
47 [RaisesException] void readAsText(Blob blob, optional DOMString encoding);
48 [RaisesException] void readAsDataURL(Blob blob);
BlobBuilder.cpp 35 #include "core/fileapi/Blob.h"
93 void BlobBuilder::append(Blob* blob)
95 if (!blob)
97 if (blob->isFile()) {
98 File* file = toFile(blob);
99 // If the blob is file that is not snapshoted, capture the snapshot now.
111 long long blobSize = static_cast<long long>(blob->size());
113 m_items.append(BlobDataItem(blob->url(), 0, blobSize));
125 PassRefPtr<Blob> BlobBuilder::getBlob(const String& contentType
131 RefPtr<Blob> blob = Blob::create(blobData.release(), m_size); local
    [all...]
  /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/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/third_party/WebKit/Source/web/
WebBlob.cpp 36 #include "core/fileapi/Blob.h"
48 RefPtr<Blob> blob = Blob::create(blobData.release(), size); local
49 return WebBlob(blob);
56 Blob* blob = V8Blob::toNative(object); local
57 ASSERT(blob);
58 return WebBlob(blob);
87 WebBlob::WebBlob(const WTF::PassRefPtr<WebCore::Blob>& blob
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
TestOverloadedConstructors.idl 31 Constructor(Blob blob),
  /external/chromium_org/chrome/renderer/extensions/
feedback_private_custom_bindings.cc 16 WebKit::WebBlob blob = WebKit::WebBlob::fromV8Value(args[0]); local
17 args.GetReturnValue().Set(v8::String::New(blob.url().spec().data()));
  /external/chromium_org/third_party/WebKit/Source/core/html/
URL.idl 32 [CallWith=ScriptExecutionContext,TreatReturnedNullStringAs=Null] static DOMString createObjectURL(Blob? blob);
FormDataList.h 24 #include "core/fileapi/Blob.h"
37 Item(PassRefPtr<Blob> blob, const String& filename) : m_blob(blob), m_filename(filename) { }
40 Blob* blob() const { return m_blob.get(); } function in class:WebCore::FormDataList::Item
45 RefPtr<Blob> m_blob;
66 void appendBlob(const String& key, PassRefPtr<Blob> blob, const String& filename = String())
69 appendBlob(blob, filename)
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
wal_common.tcl 42 proc wal_cksum {endian ckv1 ckv2 blob} {
52 binary scan $blob $scanpattern values
58 set blob [binary format I6 $intlist]
63 wal_cksum $endian c1 c2 $blob
64 append blob [binary format II $c1 $c2]
70 puts -nonewline $fd $blob
77 set blob [read $fd 24]
80 binary scan $blob I6 ints
fts3_common.tcl 210 upvar $varname blob
211 set n [read_fts3varint $blob ret]
212 set blob [string range $blob $n end]
216 upvar $varname blob
217 set ret [string range $blob 0 [expr $nLength-1]]
218 set blob [string range $blob $nLength end]
222 # The argument is a blob of data representing an FTS3 segment leaf.
226 proc fts3_readleaf {blob} {
    [all...]

Completed in 608 milliseconds

1 2 3 4 5 6 7 8 91011>>