Home
last modified time | relevance | path

Searched refs:path4 (Results 1 – 10 of 10) sorted by relevance

/third_party/skia/gm/
Dstrokefill.cpp325 SkPath path4; variable
326 path4.setFillType(SkPathFillType::kWinding);
327 path4.addRect(r, SkPathDirection::kCCW);
329 path4.addRect(r, SkPathDirection::kCW);
330 canvas->drawPath(path4, paint);
334 path4.reset();
335 SkASSERT(SkPathPriv::ComputeFirstDirection(path4) == SkPathFirstDirection::kUnknown);
336 path4.addRect(r, SkPathDirection::kCCW);
337 SkASSERT(SkPathPriv::ComputeFirstDirection(path4) == SkPathFirstDirection::kCCW);
338 path4.moveTo(0, 0); // test for crbug.com/247770
[all …]
/third_party/flutter/skia/gm/
Dstrokefill.cpp318 SkPath path4; variable
319 path4.setFillType(SkPath::kWinding_FillType);
320 path4.addRect(r, SkPath::kCCW_Direction);
322 path4.addRect(r, SkPath::kCW_Direction);
323 canvas->drawPath(path4, paint);
327 path4.reset();
328 SkASSERT(!SkPathPriv::CheapComputeFirstDirection(path4, nullptr));
329 path4.addRect(r, SkPath::kCCW_Direction);
330 SkASSERT(SkPathPriv::CheapIsFirstDirection(path4, SkPathPriv::kCCW_FirstDirection));
331 path4.moveTo(0, 0); // test for crbug.com/247770
[all …]
/third_party/flutter/skia/tests/
DGpuDrawPathTest.cpp138 SkPath path4; variable
142 path4.conicTo(s, 3.f * s / 4, s + 1.f, s, 0.3f + s / 2000.f);
150 GrPath::ComputeKey(GrShape(path4, style), &key4, &isVolatile);
DPathOpsBuildUseTest.cpp87 SkPath path4(path); in build1_1() local
88 builder.add(path4, (SkPathOp) 2); in build1_1()
DPathOpsIssue3651.cpp651 static SkPath path4() { in path4() function
1214 SkPath pathB = path4(); in issue3651_2()
/third_party/flutter/engine/flutter/lib/web_ui/test/
Dpath_test.dart193 // final Path path4 = new Path();
194 // path4.moveTo(220.0, 300.0);
195 // path4.cubicTo(354.8, 388.3, 400.0, 125.0, 410.0, 280.0);
197 // path4.getBounds(),
/third_party/flutter/engine/flutter/third_party/txt/tests/
Dparagraph_unittests.cc2096 SkPath path4; in TEST_F() local
2098 paragraph->ComputeWavyDecoration(path4, 1, 1, 12, 1); in TEST_F()
2108 ASSERT_EQ(path4.countPoints(), canonical_path4.countPoints()); in TEST_F()
2110 ASSERT_EQ(path4.getPoint(i).x(), canonical_path4.getPoint(i).x()); in TEST_F()
2111 ASSERT_EQ(path4.getPoint(i).y(), canonical_path4.getPoint(i).y()); in TEST_F()
/third_party/jsoncpp/src/test_lib_json/
Dmain.cpp2067 const Json::Path path4(".property2.%", "object"); in JSONTEST_FIXTURE_LOCAL() local
2068 result = path4.resolve(root); in JSONTEST_FIXTURE_LOCAL()
2070 result = path4.resolve(root, defaultValue); in JSONTEST_FIXTURE_LOCAL()
/third_party/skia/tests/
DPathOpsBuildUseTest.cpp83 SkPath path4(path); in build1_1() local
84 builder.add(path4, (SkPathOp) 2); in build1_1()
DPathOpsIssue3651.cpp651 static SkPath path4() { in path4() function
1214 SkPath pathB = path4(); in issue3651_2()