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

1 2

  /external/skia/include/utils/
SkParsePath.h 19 static bool FromSVGString(const char str[], SkPath*);
  /external/skqp/include/utils/
SkParsePath.h 19 static bool FromSVGString(const char str[], SkPath*);
  /external/skqp/gm/
crbug_691386.cpp 13 if (!SkParsePath::FromSVGString("M -1 0 A 1 1 0 0 0 1 0 Z", &path)) {
dashcubics.cpp 54 SkParsePath::FromSVGString(d, &path);
70 SkAssertResult(SkParsePath::FromSVGString(
77 SkAssertResult(SkParsePath::FromSVGString(
84 SkAssertResult(SkParsePath::FromSVGString(
arcto.cpp 88 SkParsePath::FromSVGString(arcstr, &svgArc);
158 SkAssertResult(SkParsePath::FromSVGString(spec.c_str(), &path));
221 SkParsePath::FromSVGString(d, &path);
path_stroke_with_zero_length.cpp 150 SkParsePath::FromSVGString(pathStr.c_str(), &path);
219 SkParsePath::FromSVGString(pathStr.c_str(), &path);
strokes.cpp 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/skia/gm/
crbug_691386.cpp 13 if (!SkParsePath::FromSVGString("M -1 0 A 1 1 0 0 0 1 0 Z", &path)) {
dashcubics.cpp 54 SkParsePath::FromSVGString(d, &path);
70 SkAssertResult(SkParsePath::FromSVGString(
77 SkAssertResult(SkParsePath::FromSVGString(
84 SkAssertResult(SkParsePath::FromSVGString(
arcto.cpp 88 SkParsePath::FromSVGString(arcstr, &svgArc);
158 SkAssertResult(SkParsePath::FromSVGString(spec.c_str(), &path));
221 SkParsePath::FromSVGString(d, &path);
path_stroke_with_zero_length.cpp 150 SkParsePath::FromSVGString(pathStr.c_str(), &path);
219 SkParsePath::FromSVGString(pathStr.c_str(), &path);
strokes.cpp 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/skia/tests/
ParsePathTest.cpp 16 bool success = SkParsePath::FromSVGString(str.c_str(), &path2);
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 16 bool success = SkParsePath::FromSVGString(str.c_str(), &path2);
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/fuzz/
FuzzParsePath.cpp 124 SkDebugf("SkParsePath::FromSVGString(%s, &path);\n",spec.c_str());
125 if (!SkParsePath::FromSVGString(spec.c_str(), &path)){
  /external/skqp/fuzz/
FuzzParsePath.cpp 124 SkDebugf("SkParsePath::FromSVGString(%s, &path);\n",spec.c_str());
125 if (!SkParsePath::FromSVGString(spec.c_str(), &path)){
  /external/skia/modules/pathkit/
pathkit_wasm_bindings.cpp 234 SkPathOrNull EMSCRIPTEN_KEEPALIVE FromSVGString(std::string str) {
236 if (SkParsePath::FromSVGString(str.c_str(), &path)) {
550 function("FromSVGString", &FromSVGString);
  /external/skqp/modules/pathkit/
pathkit_wasm_bindings.cpp 234 SkPathOrNull EMSCRIPTEN_KEEPALIVE FromSVGString(std::string str) {
236 if (SkParsePath::FromSVGString(str.c_str(), &path)) {
550 function("FromSVGString", &FromSVGString);
  /external/skia/samplecode/
SampleArc.cpp 36 SkParsePath::FromSVGString(str.c_str(), &p2);
SampleStrokePath.cpp 113 SkParsePath::FromSVGString(str, &fPath);
  /external/skia/src/utils/
SkParsePath.cpp 75 bool SkParsePath::FromSVGString(const char data[], SkPath* result) {
  /external/skqp/samplecode/
SampleArc.cpp 36 SkParsePath::FromSVGString(str.c_str(), &p2);
SampleStrokePath.cpp 113 SkParsePath::FromSVGString(str, &fPath);
  /external/skqp/src/utils/
SkParsePath.cpp 75 bool SkParsePath::FromSVGString(const char data[], SkPath* result) {
  /external/skia/experimental/svg/model/
SkSVGDOM.cpp 90 if (!SkParsePath::FromSVGString(stringValue, &path)) {

Completed in 597 milliseconds

1 2