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

12 3 4 5 6 7 8 91011>>

  /external/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;
hb-face.cc 107 hb_blob_t *blob; member in struct:hb_face_for_data_closure_t
112 _hb_face_for_data_closure_create (hb_blob_t *blob, unsigned int index)
120 closure->blob = blob;
129 hb_blob_destroy (closure->blob);
139 return hb_blob_reference (data->blob);
141 const OT::OpenTypeFontFile &ot_file = *OT::Sanitizer<OT::OpenTypeFontFile>::lock_instance (data->blob);
146 hb_blob_t *blob = hb_blob_create_sub_blob (data->blob, table.offset, table.length); local
148 return blob;
    [all...]
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/html/
FormDataList.cpp 46 void FormDataList::appendBlob(PassRefPtrWillBeRawPtr<Blob> blob, const String& filename)
48 m_items.append(Item(blob, filename));
82 // If the current type is blob, then we also need to include the filename
83 if (value.blob()) {
85 if (value.blob()->isFile()) {
86 File* file = toFile(value.blob());
87 // For file blob, use the filename (or relative path if it is present) as the name.
90 // If a filename is passed in FormData.append(), use it instead of the file blob's name.
94 // For non-file blob, use the filename if it is passed in FormData.append()
    [all...]
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...]
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);
  /system/keymaster/
key.cpp 32 Key::Key(const KeyBlob& blob, const Logger& logger) : logger_(logger) {
33 authorizations_.push_back(blob.unenforced());
34 authorizations_.push_back(blob.enforced());
38 Key* Key::CreateKey(const KeyBlob& blob, const Logger& logger, keymaster_error_t* error) {
39 switch (blob.algorithm()) {
41 return new RsaKey(blob, logger, error);
43 return new DsaKey(blob, logger, error);
45 return new EcdsaKey(blob, logger, error);
  /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/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/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...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
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;
hb-face.cc 107 hb_blob_t *blob; member in struct:hb_face_for_data_closure_t
112 _hb_face_for_data_closure_create (hb_blob_t *blob, unsigned int index)
120 closure->blob = blob;
129 hb_blob_destroy (closure->blob);
139 return hb_blob_reference (data->blob);
141 const OT::OpenTypeFontFile &ot_file = *OT::Sanitizer<OT::OpenTypeFontFile>::lock_instance (data->blob);
146 hb_blob_t *blob = hb_blob_create_sub_blob (data->blob, table.offset, table.length); local
148 return blob;
    [all...]
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/dom/
URL.idl 41 [RaisesException, CallWith=ExecutionContext, TreatReturnedNullStringAs=Null] static DOMString createObjectURL(Blob? blob);
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileReaderSync.h 42 class Blob;
56 PassRefPtr<ArrayBuffer> readAsArrayBuffer(ExecutionContext*, Blob*, ExceptionState&);
57 String readAsBinaryString(ExecutionContext*, Blob*, ExceptionState&);
58 String readAsText(ExecutionContext* executionContext, Blob* blob, ExceptionState& ec)
60 return readAsText(executionContext, blob, "", ec);
62 String readAsText(ExecutionContext*, Blob*, const String& encoding, ExceptionState&);
63 String readAsDataURL(ExecutionContext*, Blob*, ExceptionState&);
70 void startLoading(ExecutionContext*, FileReaderLoader&, const Blob&, ExceptionState&);
  /external/chromium_org/content/test/data/service_worker/
fetch_event.js 9 var blob = new Blob(["This resource is gone. Gone, gone, gone."]);
10 var response = new Response(blob, {
  /external/chromium_org/extensions/browser/
blob_holder.cc 43 void BlobHolder::HoldBlobReference(scoped_ptr<content::BlobHandle> blob) {
45 DCHECK(!ContainsBlobHandle(blob.get()));
47 std::string uuid = blob->GetUUID();
48 held_blobs_.insert(make_pair(uuid, make_linked_ptr(blob.release())));
78 DLOG(ERROR) << "Tried to release a Blob we don't have ownership to."
  /external/chromium_org/third_party/WebKit/Source/modules/imagebitmap/
ImageBitmapFactories.idl 39 Blob or
51 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(Blob blob);
52 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(Blob blob, long sx, long sy, long sw, long sh);
  /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/libvpx/source/libvpx/test/android/
scrape_gtest_log.py 41 blob = sys.stdin.read()
43 re.findall(r'{([^}]*.?)}', blob)) + ']'
44 print blob
  /external/libvpx/libvpx/test/android/
scrape_gtest_log.py 41 blob = sys.stdin.read()
43 re.findall(r'{([^}]*.?)}', blob)) + ']'
44 print blob

Completed in 1545 milliseconds

12 3 4 5 6 7 8 91011>>