HomeSort by relevance Sort by last modified time
    Searched refs:SkParsePath (Results 1 - 25 of 34) sorted by null

1 2

  /external/skia/include/utils/
SkParsePath.h 17 class SkParsePath {
  /external/skqp/include/utils/
SkParsePath.h 17 class SkParsePath {
  /external/skia/gm/
crbug_691386.cpp 9 #include "SkParsePath.h"
13 if (!SkParsePath::FromSVGString("M -1 0 A 1 1 0 0 0 1 0 Z", &path)) {
dashcubics.cpp 11 #include "SkParsePath.h"
49 SkParsePath::FromSVGString(d, &path);
arcto.cpp 9 #include "SkParsePath.h"
88 SkParsePath::FromSVGString(arcstr, &svgArc);
158 SkAssertResult(SkParsePath::FromSVGString(spec.c_str(), &path));
221 SkParsePath::FromSVGString(d, &path);
path_stroke_with_zero_length.cpp 11 #include "SkParsePath.h"
148 SkParsePath::FromSVGString(pathStr.c_str(), &path);
217 SkParsePath::FromSVGString(pathStr.c_str(), &path);
strokes.cpp 13 #include "SkParsePath.h"
92 SkAssertResult(SkParsePath::FromSVGString("M0,0h0M10,0h0M20,0h0", &fMoveHfPath));
93 SkAssertResult(SkParsePath::FromSVGString("M0,0zM10,0zM20,0z", &fMoveZfPath));
94 SkAssertResult(SkParsePath::FromSVGString("M0,0h25", &fDashedfPath));
95 SkAssertResult(SkParsePath::FromSVGString("M 0 0 C 0 0 0 0 0 0", &fCubicPath));
96 SkAssertResult(SkParsePath::FromSVGString("M 0 0 Q 0 0 0 0", &fQuadPath));
97 SkAssertResult(SkParsePath::FromSVGString("M 0 0 L 0 0", &fLinePath));
    [all...]
  /external/skqp/gm/
crbug_691386.cpp 9 #include "SkParsePath.h"
13 if (!SkParsePath::FromSVGString("M -1 0 A 1 1 0 0 0 1 0 Z", &path)) {
dashcubics.cpp 11 #include "SkParsePath.h"
49 SkParsePath::FromSVGString(d, &path);
arcto.cpp 9 #include "SkParsePath.h"
88 SkParsePath::FromSVGString(arcstr, &svgArc);
158 SkAssertResult(SkParsePath::FromSVGString(spec.c_str(), &path));
221 SkParsePath::FromSVGString(d, &path);
strokes.cpp 13 #include "SkParsePath.h"
92 SkAssertResult(SkParsePath::FromSVGString("M0,0h0M10,0h0M20,0h0", &fMoveHfPath));
93 SkAssertResult(SkParsePath::FromSVGString("M0,0zM10,0zM20,0z", &fMoveZfPath));
94 SkAssertResult(SkParsePath::FromSVGString("M0,0h25", &fDashedfPath));
95 SkAssertResult(SkParsePath::FromSVGString("M 0 0 C 0 0 0 0 0 0", &fCubicPath));
96 SkAssertResult(SkParsePath::FromSVGString("M 0 0 Q 0 0 0 0", &fQuadPath));
97 SkAssertResult(SkParsePath::FromSVGString("M 0 0 L 0 0", &fLinePath));
path_stroke_with_zero_length.cpp 11 #include "SkParsePath.h"
148 SkParsePath::FromSVGString(pathStr.c_str(), &path);
217 SkParsePath::FromSVGString(pathStr.c_str(), &path);
  /external/skia/tests/
ParsePathTest.cpp 8 #include "SkParsePath.h"
13 SkParsePath::ToSVGString(path, &str);
16 bool success = SkParsePath::FromSVGString(str.c_str(), &path2);
19 SkParsePath::ToSVGString(path2, &str2);
47 bool success = SkParsePath::FromSVGString(gRec[i].fStr, &path);
71 bool success = SkParsePath::FromSVGString("M 5", &path);
87 bool success = SkParsePath::FromSVGString(spec.c_str(), &path);
126 REPORTER_ASSERT(r, SkParsePath::FromSVGString(gTests[i].fStr, &path));
  /external/skqp/tests/
ParsePathTest.cpp 8 #include "SkParsePath.h"
13 SkParsePath::ToSVGString(path, &str);
16 bool success = SkParsePath::FromSVGString(str.c_str(), &path2);
19 SkParsePath::ToSVGString(path2, &str2);
47 bool success = SkParsePath::FromSVGString(gRec[i].fStr, &path);
71 bool success = SkParsePath::FromSVGString("M 5", &path);
87 bool success = SkParsePath::FromSVGString(spec.c_str(), &path);
126 REPORTER_ASSERT(r, SkParsePath::FromSVGString(gTests[i].fStr, &path));
  /external/skia/samplecode/
SampleArc.cpp 27 #include "SkParsePath.h"
35 SkParsePath::ToSVGString(p, &str);
36 SkParsePath::FromSVGString(str.c_str(), &p2);
37 SkParsePath::ToSVGString(p2, &str2);
SampleStrokePath.cpp 11 #include "SkParsePath.h"
111 SkParsePath::FromSVGString(str, &fPath);
SamplePath.cpp 21 #include "SkParsePath.h"
53 SkParsePath::FromSVGString(str, &path);
  /external/skqp/samplecode/
SampleArc.cpp 27 #include "SkParsePath.h"
35 SkParsePath::ToSVGString(p, &str);
36 SkParsePath::FromSVGString(str.c_str(), &p2);
37 SkParsePath::ToSVGString(p2, &str2);
SampleStrokePath.cpp 11 #include "SkParsePath.h"
111 SkParsePath::FromSVGString(str, &fPath);
SamplePath.cpp 21 #include "SkParsePath.h"
53 SkParsePath::FromSVGString(str, &path);
  /external/skia/fuzz/
FuzzParsePath.cpp 10 #include "SkParsePath.h"
123 SkDebugf("SkParsePath::FromSVGString(%s, &path);\n",spec.c_str());
124 if (!SkParsePath::FromSVGString(spec.c_str(), &path)){
  /external/skqp/fuzz/
FuzzParsePath.cpp 10 #include "SkParsePath.h"
123 SkDebugf("SkParsePath::FromSVGString(%s, &path);\n",spec.c_str());
124 if (!SkParsePath::FromSVGString(spec.c_str(), &path)){
  /external/skia/src/utils/
SkParsePath.cpp 8 #include "SkParsePath.h"
75 bool SkParsePath::FromSVGString(const char data[], SkPath* result) {
232 void SkParsePath::ToSVGString(const SkPath& path, SkString* str) {
  /external/skqp/src/utils/
SkParsePath.cpp 8 #include "SkParsePath.h"
75 bool SkParsePath::FromSVGString(const char data[], SkPath* result) {
232 void SkParsePath::ToSVGString(const SkPath& path, SkString* str) {
  /external/skia/experimental/svg/model/
SkSVGDOM.cpp 10 #include "SkParsePath.h"
89 if (!SkParsePath::FromSVGString(stringValue, &path)) {

Completed in 3183 milliseconds

1 2