Lines Matching full:bytelength
405 void SkDumpCanvas::onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
408 toString(text, byteLength, paint.getTextEncoding(), &str);
410 byteLength, SkScalarToFloat(x), SkScalarToFloat(y));
413 void SkDumpCanvas::onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
416 toString(text, byteLength, paint.getTextEncoding(), &str);
418 str.c_str(), byteLength, SkScalarToFloat(pos[0].fX),
422 void SkDumpCanvas::onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
425 toString(text, byteLength, paint.getTextEncoding(), &str);
427 str.c_str(), byteLength, SkScalarToFloat(xpos[0]),
431 void SkDumpCanvas::onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
434 toString(text, byteLength, paint.getTextEncoding(), &str);
436 str.c_str(), byteLength);
439 void SkDumpCanvas::onDrawTextRSXform(const void* text, size_t byteLength, const SkRSXform xform[],
442 toString(text, byteLength, paint.getTextEncoding(), &str);
444 str.c_str(), byteLength);