Home
last modified time | relevance | path

Searched refs:as_path (Results 1 – 5 of 5) sorted by relevance

/third_party/flutter/skia/src/c/
Dsk_surface.cpp97 static SkPath* as_path(sk_path_t* cpath) { in as_path() function
178 void sk_path_delete(sk_path_t* cpath) { delete as_path(cpath); } in sk_path_delete()
181 as_path(cpath)->moveTo(x, y); in sk_path_move_to()
185 as_path(cpath)->lineTo(x, y); in sk_path_line_to()
189 as_path(cpath)->quadTo(x0, y0, x1, y1); in sk_path_quad_to()
193 as_path(cpath)->conicTo(x0, y0, x1, y1, w); in sk_path_conic_to()
197 as_path(cpath)->cubicTo(x0, y0, x1, y1, x2, y2); in sk_path_cubic_to()
201 as_path(cpath)->close(); in sk_path_close()
209 as_path(cpath)->addRect(AsRect(*crect), dir); in sk_path_add_rect()
217 as_path(cpath)->addOval(AsRect(*crect), dir); in sk_path_add_oval()
/third_party/boost/tools/build/src/build/
Dproperty_set.py361 def as_path (self): member in PropertySet
412 p = self.as_path()
Dvirtual_target.py524 property_grist = ps.as_path ()
/third_party/skia/src/c/
Dsk_surface.cpp101 static SkPath* as_path(sk_path_t* cpath) { in as_path() function
236 void sk_path_delete(sk_path_t* cpath) { delete as_path(cpath); } in sk_path_delete()
/third_party/skia/modules/svg/src/
DSkSVGText.cpp601 const SkSVGTextContext::ShapedTextCallback as_path = in onAsPath() local
634 SkSVGTextContext tctx(ctx, as_path); in onAsPath()