Home | History | Annotate | Download | only in hwui

Lines Matching full:alloc

156     addDrawOp(new (alloc()) DrawFunctorOp(functor));
162 addStateOp(new (alloc()) SaveOp(flags));
185 addStateOp(new (alloc()) SaveLayerOp(left, top, right, bottom, alpha, mode, flags));
198 addStateOp(new (alloc()) RotateOp(degrees));
203 addStateOp(new (alloc()) ScaleOp(sx, sy));
208 addStateOp(new (alloc()) SkewOp(sx, sy));
214 addStateOp(new (alloc()) SetMatrixOp(matrix));
220 addStateOp(new (alloc()) ConcatMatrixOp(matrix));
226 addStateOp(new (alloc()) ClipRectOp(left, top, right, bottom, op));
232 addStateOp(new (alloc()) ClipPathOp(path, op));
238 addStateOp(new (alloc()) ClipRegionOp(region, op));
251 addDrawOp(new (alloc()) DrawDisplayListOp(displayList, flags));
257 addDrawOp(new (alloc()) DrawLayerOp(layer, x, y));
265 addDrawOp(new (alloc()) DrawBitmapOp(bitmap, left, top, paint));
274 addDrawOp(new (alloc()) DrawBitmapMatrixOp(bitmap, matrix, paint));
289 addDrawOp(new (alloc()) DrawBitmapOp(bitmap, dstLeft, dstTop, paint));
293 addDrawOp(new (alloc()) DrawBitmapRectOp(bitmap,
304 addDrawOp(new (alloc()) DrawBitmapDataOp(bitmap, left, top, paint));
316 addDrawOp(new (alloc()) DrawBitmapMeshOp(bitmap, meshWidth, meshHeight,
327 addDrawOp(new (alloc()) DrawPatchOp(bitmap, patch, left, top, right, bottom, paint));
332 addDrawOp(new (alloc()) DrawColorOp(color, mode));
339 addDrawOp(new (alloc()) DrawRectOp(left, top, right, bottom, paint));
346 addDrawOp(new (alloc()) DrawRoundRectOp(left, top, right, bottom, rx, ry, paint));
352 addDrawOp(new (alloc()) DrawCircleOp(x, y, radius, paint));
359 addDrawOp(new (alloc()) DrawOvalOp(left, top, right, bottom, paint));
366 addDrawOp(new (alloc()) DrawArcOp(left, top, right, bottom,
375 addDrawOp(new (alloc()) DrawPathOp(path, paint));
383 addDrawOp(new (alloc()) DrawLinesOp(points, count, paint));
391 addDrawOp(new (alloc()) DrawPointsOp(points, count, paint));
403 DrawOp* op = new (alloc()) DrawTextOnPathOp(text, bytesCount, count, path,
417 DrawOp* op = new (alloc()) DrawPosTextOp(text, bytesCount, count, positions, paint);
432 DrawOp* op = new (alloc()) DrawTextOp(text, bytesCount, count,
443 addDrawOp(new (alloc()) DrawRectsOp(rects, count, paint));
448 addStateOp(new (alloc()) ResetShaderOp());
453 addStateOp(new (alloc()) SetupShaderOp(shader));
457 addStateOp(new (alloc()) ResetColorFilterOp());
462 addStateOp(new (alloc()) SetupColorFilterOp(filter));
466 addStateOp(new (alloc()) ResetShadowOp());
471 addStateOp(new (alloc()) SetupShadowOp(radius, dx, dy, color));
476 addStateOp(new (alloc()) ResetPaintFilterOp());
480 addStateOp(new (alloc()) SetupPaintFilterOp(clearBits, setBits));
485 DisplayListOp* op = new (alloc()) RestoreToCountOp(mRestoreSaveCount);
494 DisplayListOp* op = new (alloc()) TranslateOp(mTranslateX, mTranslateY);