/external/skia/legacy/src/utils/ |
SkDeferredCanvas.cpp | 383 void SkDeferredCanvas::drawText(const void* text, size_t byteLength, 385 drawingCanvas()->drawText(text, byteLength, x, y, paint); 388 void SkDeferredCanvas::drawPosText(const void* text, size_t byteLength, 390 drawingCanvas()->drawPosText(text, byteLength, pos, paint); 393 void SkDeferredCanvas::drawPosTextH(const void* text, size_t byteLength, 396 drawingCanvas()->drawPosTextH(text, byteLength, xpos, constY, paint); 399 void SkDeferredCanvas::drawTextOnPath(const void* text, size_t byteLength, 403 drawingCanvas()->drawTextOnPath(text, byteLength,
|
/external/skia/include/core/ |
SkUtils.h | 59 int SkUTF8_CountUnichars(const char utf8[], size_t byteLength);
|
SkPaint.h | 772 int textToGlyphs(const void* text, size_t byteLength, 782 bool containsText(const void* text, size_t byteLength) const; 796 int countText(const void* text, size_t byteLength) const { 797 return this->textToGlyphs(text, byteLength, NULL); [all...] |
/external/skia/legacy/include/core/ |
SkUtils.h | 59 int SkUTF8_CountUnichars(const char utf8[], size_t byteLength);
|
/external/webkit/Source/WebCore/html/canvas/ |
TypedArrayBase.h | 63 virtual unsigned byteLength() const
|
/external/skia/src/core/ |
SkOrderedWriteBuffer.cpp | 87 void SkOrderedWriteBuffer::writeEncodedString(const void* value, size_t byteLength, 90 fWriter.writeInt(byteLength); 91 fWriter.write(value, byteLength);
|
SkCanvas.cpp | [all...] |
SkUtils.cpp | 170 int SkUTF8_CountUnichars(const char utf8[], size_t byteLength) { 171 SkASSERT(NULL != utf8 || 0 == byteLength); 174 const char* stop = utf8 + byteLength;
|
SkOrderedWriteBuffer.h | 52 virtual void writeEncodedString(const void* value, size_t byteLength,
|
SkPaint.cpp | 487 int SkPaint::textToGlyphs(const void* textData, size_t byteLength, 489 if (byteLength == 0) { 498 return SkUTF8_CountUnichars((const char*)textData, byteLength); 501 byteLength >> 1); 503 return byteLength >> 2; 505 return byteLength >> 1; 516 // we want to ignore the low bit of byteLength 517 memcpy(glyphs, textData, byteLength >> 1 << 1); 518 return byteLength >> 1; 525 const char* stop = text + byteLength; [all...] |
/external/skia/legacy/src/core/ |
SkCanvas.cpp | [all...] |
SkUtils.cpp | 170 int SkUTF8_CountUnichars(const char utf8[], size_t byteLength) { 171 SkASSERT(NULL != utf8 || 0 == byteLength); 174 const char* stop = utf8 + byteLength;
|
SkPaint.cpp | 454 size_t byteLength, uint16_t glyphs[]) const { 460 const char* stop = text + byteLength; 485 int SkPaint::textToGlyphs(const void* textData, size_t byteLength, 487 if (byteLength == 0) { 496 return SkUTF8_CountUnichars((const char*)textData, byteLength); 499 byteLength >> 1); 501 return byteLength >> 1; 512 // we want to ignore the low bit of byteLength 513 memcpy(glyphs, textData, byteLength >> 1 << 1); 514 return byteLength >> 1 [all...] |
SkDraw.cpp | [all...] |
/dalvik/dx/src/com/android/dx/cf/direct/ |
AttributeListParser.java | 144 at += attrib.byteLength();
|
/external/icu4c/common/ |
propsvec.c | 453 int32_t byteLength; 462 byteLength=pv->rows*(pv->columns-2)*4; 463 clonedArray=(uint32_t *)uprv_malloc(byteLength); 468 uprv_memcpy(clonedArray, pv->v, byteLength);
|
/external/icu4c/test/cintltst/ |
ucsdetst.c | 69 static char *extractBytes(const UChar *src, int32_t length, const char *codepage, int32_t *byteLength) 81 *byteLength = byteCount; 123 int32_t byteLength = 0, sLength = 0, dLength = 0; 131 bytes = extractBytes(s, sLength, "UTF-8", &byteLength); 133 ucsdet_setText(csd, bytes, byteLength, &status); 286 int32_t byteLength = 0; 293 bytes = extractBytes(s, sLength, "ISO-8859-1", &byteLength); 302 ucsdet_setText(csd, bytes, byteLength, &status); 324 ucsdet_setText(csd, bytes, byteLength, &status);
|
/external/webkit/Source/WebCore/fileapi/ |
WebKitBlobBuilder.cpp | 95 buffer.append(static_cast<const char*>(arrayBuffer->data()), arrayBuffer->byteLength());
|
/external/webkit/Source/WebCore/platform/graphics/android/context/ |
PlatformGraphicsContextSkia.h | 102 virtual void drawPosText(const void* text, size_t byteLength,
|
/external/webkit/Source/WebKit/android/plugins/ |
android_npapi.h | 585 float (*measureText)(ANPPaint*, const void* text, uint32_t byteLength, 593 int (*getTextWidths)(ANPPaint*, const void* text, uint32_t byteLength, 648 void (*drawText)(ANPCanvas*, const void* text, uint32_t byteLength, 650 void (*drawPosText)(ANPCanvas*, const void* text, uint32_t byteLength, [all...] |
ANPCanvasInterface.cpp | 138 uint32_t byteLength, const float xy[], const ANPPaint* paint) { 139 canvas->skcanvas->drawPosText(text, byteLength,
|
/external/skia/src/utils/ |
SkDeferredCanvas.cpp | 860 void SkDeferredCanvas::drawText(const void* text, size_t byteLength, 863 this->drawingCanvas()->drawText(text, byteLength, x, y, paint); 867 void SkDeferredCanvas::drawPosText(const void* text, size_t byteLength, 870 this->drawingCanvas()->drawPosText(text, byteLength, pos, paint); 874 void SkDeferredCanvas::drawPosTextH(const void* text, size_t byteLength, 878 this->drawingCanvas()->drawPosTextH(text, byteLength, xpos, constY, paint); 882 void SkDeferredCanvas::drawTextOnPath(const void* text, size_t byteLength, 887 this->drawingCanvas()->drawTextOnPath(text, byteLength, path, matrix, paint);
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8ArrayBufferViewCustom.h | 57 if ((buf->byteLength() - offset) % sizeof(ElementType)) 59 uint32_t length = (buf->byteLength() - offset) / sizeof(ElementType);
|
/external/icu4c/test/intltest/ |
csdetest.cpp | 171 int32_t byteLength = 0; 172 char *bytes = extractBytes(testString, codepage, byteLength); 181 ucsdet_setText(csd.getAlias(), bytes, byteLength, &status); 288 int32_t byteLength = 0, sLength = s.length(); 289 char *bytes = extractBytes(s, "UTF-8", byteLength); 294 ucsdet_setText(csd, bytes, byteLength, &status); 388 int32_t byteLength = 0; 389 char *bytes = extractBytes(s, "ISO-8859-1", byteLength); 401 ucsdet_setText(csd, bytes, byteLength, &status); 423 ucsdet_setText(csd, bytes, byteLength, &status) [all...] |
/dalvik/vm/hprof/ |
HprofHeap.cpp | 275 int byteLength = sFieldCount*sizeof(StaticField); 282 hprofAddU4ToRecord(rec, byteLength); 284 for (int i = 0; i < byteLength; i++) {
|