Home
last modified time | relevance | path

Searched refs:ANPPath (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/WebKit/android/plugins/
DANPPathInterface.cpp30 static ANPPath* anp_newPath() { in anp_newPath()
31 return new ANPPath; in anp_newPath()
34 static void anp_deletePath(ANPPath* path) { in anp_deletePath()
38 static void anp_copy(ANPPath* dst, const ANPPath* src) { in anp_copy()
42 static bool anp_equal(const ANPPath* p0, const ANPPath* p1) { in anp_equal()
46 static void anp_reset(ANPPath* path) { in anp_reset()
50 static bool anp_isEmpty(const ANPPath* path) { in anp_isEmpty()
54 static void anp_getBounds(const ANPPath* path, ANPRectF* bounds) { in anp_getBounds()
58 static void anp_moveTo(ANPPath* path, float x, float y) { in anp_moveTo()
62 static void anp_lineTo(ANPPath* path, float x, float y) { in anp_lineTo()
[all …]
Dandroid_npapi.h88 struct ANPPath;
319 ANPPath* (*newPath)();
322 void (*deletePath)(ANPPath*);
327 void (*copy)(ANPPath* dst, const ANPPath* src);
331 bool (*equal)(const ANPPath* path0, const ANPPath* path1);
334 void (*reset)(ANPPath*);
337 bool (*isEmpty)(const ANPPath*);
340 void (*getBounds)(const ANPPath*, ANPRectF* bounds);
342 void (*moveTo)(ANPPath*, float x, float y);
343 void (*lineTo)(ANPPath*, float x, float y);
[all …]
DSkANP.h39 struct ANPPath : SkPath { struct
DANPCanvasInterface.cpp68 static void anp_clipPath(ANPCanvas* canvas, const ANPPath* path) { in anp_clipPath()
126 static void anp_drawPath(ANPCanvas* canvas, const ANPPath* path, in anp_drawPath()