Lines Matching refs:bytesCount
358 status_t DisplayListRenderer::drawTextOnPath(const char* text, int bytesCount, int count, in drawTextOnPath() argument
362 text = refText(text, bytesCount); in drawTextOnPath()
366 DrawOp* op = new (alloc()) DrawTextOnPathOp(text, bytesCount, count, path, in drawTextOnPath()
372 status_t DisplayListRenderer::drawPosText(const char* text, int bytesCount, int count, in drawPosText() argument
376 text = refText(text, bytesCount); in drawPosText()
380 DrawOp* op = new (alloc()) DrawPosTextOp(text, bytesCount, count, positions, paint); in drawPosText()
395 status_t DisplayListRenderer::drawText(const char* text, int bytesCount, int count, in drawText() argument
401 text = refText(text, bytesCount); in drawText()
414 addDrawOp(new (alloc()) DrawTextOp(text, bytesCount, count, in drawText()
421 addDrawOp(new (alloc()) DrawTextOp(text, bytesCount, count, in drawText()
427 DrawOp* op = new (alloc()) DrawTextOp(text, bytesCount, count, in drawText()