HomeSort by relevance Sort by last modified time
    Searched refs:blob (Results 226 - 250 of 322) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/skia/include/core/
SkCanvas.h     [all...]
  /external/skia/src/core/
SkDevice.cpp 102 void SkBaseDevice::drawTextBlob(const SkDraw& draw, const SkTextBlob* blob, SkScalar x, SkScalar y,
107 SkTextBlobRunIterator it(blob);
SkPicturePlayback.cpp 405 const SkTextBlob* blob = fPictureData->getTextBlob(reader); local
408 canvas->drawTextBlob(blob, x, y, paint);
SkRecordDraw.cpp 115 DRAW(DrawTextBlob, drawTextBlob(r.blob, r.x, r.y, r.paint));
511 SkRect dst = op.blob->bounds();
  /system/keymaster/
attestation_record.cpp 396 if (!ASN1_OCTET_STRING_set(*string_ptr, entry.blob.data, entry.blob.data_length))
soft_keymaster_device.cpp     [all...]
keymaster_enforcement_test.cpp 864 keymaster_key_blob_t blob = {reinterpret_cast<const uint8_t*>("foobar"), 6}; local
    [all...]
  /external/libdrm/
xf86drmMode.h 236 uint64_t *values; /* store the blob lengths */
240 uint32_t *blob_ids; /* store the blob IDs */
500 void *blob);
  /external/skia/include/private/
SkRecords.h 327 RefBox<const SkTextBlob> blob;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_coverage_libcdep.cc 520 // trailing zero), followed by data blob.
527 static void CovWritePacked(int pid, const char *module, const void *blob,
537 WriteToFile(cov_fd, blob, blob_size);
553 const char *blob_pos = (const char *)blob;
    [all...]
  /frameworks/base/media/jni/
android_media_Utils.cpp 624 struct camera3_jpeg_blob *blob = (struct camera3_jpeg_blob*)(header); local
625 if (blob->jpeg_blob_id == CAMERA3_JPEG_BLOB_ID) {
626 size = blob->jpeg_size;
634 * means that in certain rare situations a regular JPEG blob
754 "RGBA override BLOB format buffer should have height == width");
757 "BLOB format buffer should have height value 1");
  /packages/apps/Launcher2/src/com/android/launcher2/
WidgetPreviewLoader.java 307 COLUMN_PREVIEW_BITMAP + " BLOB NOT NULL, " +
430 byte[] blob = result.getBlob(0);
435 Bitmap out = BitmapFactory.decodeByteArray(blob, 0, blob.length, opts);
  /packages/apps/Launcher3/src/com/android/launcher3/
WidgetPreviewLoader.java 132 COLUMN_PREVIEW_BITMAP + " BLOB, " +
271 // If cancelled, skip getting the blob and decoding it into a bitmap
276 byte[] blob = cursor.getBlob(0);
281 return BitmapFactory.decodeByteArray(blob, 0, blob.length, opts);
  /external/skia/src/utils/
SkLua.cpp 331 void SkLua::pushTextBlob(const SkTextBlob* blob, const char key[]) {
332 push_ref(fL, const_cast<SkTextBlob*>(blob));
609 const SkTextBlob* blob = get_ref<SkTextBlob>(L, 2); local
613 get_ref<SkCanvas>(L, 1)->drawTextBlob(blob, x, y, paint);
    [all...]
  /external/harfbuzz_ng/src/
hb-coretext.cc 122 hb_blob_t *blob = hb_face_reference_blob (face); local
124 const char *blob_data = hb_blob_get_data (blob, &blob_length);
126 DEBUG_MSG (CORETEXT, face, "Face has empty blob");
128 CGDataProviderRef provider = CGDataProviderCreateWithData (blob, blob_data, blob_length, &release_data);
    [all...]
  /external/wpa_supplicant_8/src/rsn_supp/
wpa.h 43 void (*set_config_blob)(void *ctx, struct wpa_config_blob *blob);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/
README.rst 199 .. _Contributing Guidelines: https://github.com/boto/boto/blob/develop/CONTRIBUTING
  /external/skia/src/gpu/
GrDrawContext.cpp 148 const SkMatrix& viewMatrix, const SkTextBlob* blob,
160 fAtlasTextContext->drawTextBlob(fContext, this, clip, skPaint, viewMatrix, fSurfaceProps, blob,
  /external/skia/src/gpu/text/
GrAtlasTextBlob.cpp 172 // to regenerate the blob on any color change
221 // We can update the positions in the cachedtextblobs without regenerating the whole blob,
237 // A scale outside of [blob.fMaxMinScale, blob.fMinMaxScale] would result in a different
247 // It is possible that a blob has neither distanceField nor bitmaptext. This is in the case
248 // when all of the runs inside the blob are drawn as paths. In this case, we always regenerate
249 // the blob anyways at flush time, so no need to regenerate explicitly
404 const SkTextBlob* blob,
414 // We loop through the runs of the blob, flushing each. If any run is too large, then we flush
420 SkTextBlobRunIterator it(blob);
    [all...]
  /external/skia/tools/debugger/
SkDebugCanvas.cpp 484 void SkDebugCanvas::onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
486 this->addDrawCommand(new SkDrawTextBlobCommand(blob, x, y, paint));
  /external/wpa_supplicant_8/wpa_supplicant/
wpas_glue.c 35 struct wpa_config_blob *blob)
38 wpa_config_set_blob(wpa_s->conf, blob);
43 "blob set");
  /system/tpm/attestation/server/
attestation_service.cc 353 database_pb.delegate().blob(),
582 database_pb.delegate().blob(),
  /hardware/libhardware/tests/keymaster/
keymaster_test.cpp 73 friend std::ostream &operator<<(std::ostream &stream, const UniqueBlob& blob);
79 std::ostream &operator<<(std::ostream &stream, const UniqueBlob& blob) {
80 const size_t length = blob.mLength;
81 stream << "Blob length=" << length << " < ";
83 const uint8_t* data = blob.get();
681 << "Should not be able to succeed with NULL destination blob";
700 << "Should not be able to succeed with NULL destination blob";
733 UniqueBlob blob(key_blob, key_blob_length);
    [all...]
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
PduPersister.java 444 byte [] blob = new EncodedStringValue(text != null ? text : "")
446 baos.write(blob, 0, blob.length);
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
PduPersister.java 456 final byte[] blob = new EncodedStringValue(
460 baos.write(blob, 0, blob.length);
    [all...]

Completed in 1996 milliseconds

1 2 3 4 5 6 7 8 91011>>