Searched refs:ANPPath (Results 1 – 4 of 4) sorted by relevance
/external/webkit/Source/WebKit/android/plugins/ |
D | ANPPathInterface.cpp | 30 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 …]
|
D | android_npapi.h | 88 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 …]
|
D | SkANP.h | 39 struct ANPPath : SkPath { struct
|
D | ANPCanvasInterface.cpp | 68 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()
|