Home
last modified time | relevance | path

Searched refs:ArrayDestroyer (Results 1 – 2 of 2) sorted by relevance

/external/skia/src/gpu/
DGrSubRunAllocator.h152 struct ArrayDestroyer { struct
196 std::unique_ptr<T[], ArrayDestroyer> makeUniqueArray(int n) { in makeUniqueArray()
202 return std::unique_ptr<T[], ArrayDestroyer>{array, ArrayDestroyer{n}}; in makeUniqueArray()
206 std::unique_ptr<T[], ArrayDestroyer> makeUniqueArray(int n, I initializer) { in makeUniqueArray()
212 return std::unique_ptr<T[], ArrayDestroyer>{array, ArrayDestroyer{n}}; in makeUniqueArray()
/external/skia/src/gpu/text/
DGrTextBlob.cpp171 std::unique_ptr<PathGlyph[], GrSubRunAllocator::ArrayDestroyer> pathData);
199 const std::unique_ptr<PathGlyph[], GrSubRunAllocator::ArrayDestroyer> fPathData;
206 std::unique_ptr<PathGlyph[], GrSubRunAllocator::ArrayDestroyer> pathData) in PathSubRun()