/third_party/skia/third_party/externals/angle2/src/common/ |
D | system_utils_unittest.cpp | 95 std::string path1 = "/this/is/path1"; in TEST() local 98 EXPECT_EQ(ConcatenatePath(path1, path2), expected); in TEST() 103 std::string path1 = ""; in TEST() local 106 EXPECT_EQ(ConcatenatePath(path1, path2), expected); in TEST() 111 std::string path1 = "/this/is/path1"; in TEST() local 114 EXPECT_EQ(ConcatenatePath(path1, path2), expected); in TEST() 119 std::string path1 = "/this/is/path1"; in TEST() local 122 EXPECT_EQ(ConcatenatePath(path1, path2), expected); in TEST() 127 std::string path1 = "/this/is/path1/"; in TEST() local 130 EXPECT_EQ(ConcatenatePath(path1, path2), expected); in TEST() [all …]
|
/third_party/flutter/skia/modules/pathkit/perf/ |
D | pathops.bench.js | 38 ctx.path1 = drawStar(X=120, Y=120); 43 let path = PathKit.MakeFromOp(ctx.path1, ctx.path2, PathKit.PathOp.DIFFERENCE); 48 ctx.path1.delete(); 62 ctx.path1 = drawStar(X=120, Y=120); 67 let path = PathKit.MakeFromOp(ctx.path1, ctx.path2, PathKit.PathOp.INTERSECT); 72 ctx.path1.delete(); 86 ctx.path1 = drawStar(X=120, Y=120); 91 let path = PathKit.MakeFromOp(ctx.path1, ctx.path2, PathKit.PathOp.UNION); 96 ctx.path1.delete(); 110 ctx.path1 = drawStar(X=120, Y=120); [all …]
|
/third_party/skia/modules/pathkit/perf/ |
D | pathops.bench.js | 38 ctx.path1 = drawStar(X=120, Y=120); 43 let path = PathKit.MakeFromOp(ctx.path1, ctx.path2, PathKit.PathOp.DIFFERENCE); 48 ctx.path1.delete(); 62 ctx.path1 = drawStar(X=120, Y=120); 67 let path = PathKit.MakeFromOp(ctx.path1, ctx.path2, PathKit.PathOp.INTERSECT); 72 ctx.path1.delete(); 86 ctx.path1 = drawStar(X=120, Y=120); 91 let path = PathKit.MakeFromOp(ctx.path1, ctx.path2, PathKit.PathOp.UNION); 96 ctx.path1.delete(); 110 ctx.path1 = drawStar(X=120, Y=120); [all …]
|
/third_party/skia/docs/examples/ |
D | Path_rewind.cpp | 7 SkPath path1, path2; in draw() local 8 path1.setFillType(SkPathFillType::kInverseWinding); in draw() 9 path1.addRect({10, 20, 30, 40}); in draw() 10 SkDebugf("path1 %c= path2\n", path1 == path2 ? '=' : '!'); in draw() 11 path1.rewind(); in draw() 12 SkDebugf("path1 %c= path2\n", path1 == path2 ? '=' : '!'); in draw()
|
D | Path_reset.cpp | 7 SkPath path1, path2; in draw() local 8 path1.setFillType(SkPathFillType::kInverseWinding); in draw() 9 path1.addRect({10, 20, 30, 40}); in draw() 10 SkDebugf("path1 %c= path2\n", path1 == path2 ? '=' : '!'); in draw() 11 path1.reset(); in draw() 12 SkDebugf("path1 %c= path2\n", path1 == path2 ? '=' : '!'); in draw()
|
D | Path_copy_operator.cpp | 7 SkPath path1; in draw() local 8 path1.addRect({10, 20, 30, 40}); in draw() 9 SkPath path2 = path1; in draw() 10 const SkRect& b1 = path1.getBounds(); in draw()
|
D | Path_swap.cpp | 7 SkPath path1, path2; in draw() local 8 path1.addRect({10, 20, 30, 40}); in draw() 9 path1.swap(path2); in draw() 10 const SkRect& b1 = path1.getBounds(); in draw()
|
/third_party/flutter/skia/docs/examples/ |
D | Path_rewind.cpp | 7 SkPath path1, path2; in draw() local 8 path1.setFillType(SkPath::kInverseWinding_FillType); in draw() 9 path1.addRect({10, 20, 30, 40}); in draw() 10 SkDebugf("path1 %c= path2\n", path1 == path2 ? '=' : '!'); in draw() 11 path1.rewind(); in draw() 12 SkDebugf("path1 %c= path2\n", path1 == path2 ? '=' : '!'); in draw()
|
D | Path_reset.cpp | 7 SkPath path1, path2; in draw() local 8 path1.setFillType(SkPath::kInverseWinding_FillType); in draw() 9 path1.addRect({10, 20, 30, 40}); in draw() 10 SkDebugf("path1 %c= path2\n", path1 == path2 ? '=' : '!'); in draw() 11 path1.reset(); in draw() 12 SkDebugf("path1 %c= path2\n", path1 == path2 ? '=' : '!'); in draw()
|
D | Path_copy_operator.cpp | 7 SkPath path1; in draw() local 8 path1.addRect({10, 20, 30, 40}); in draw() 9 SkPath path2 = path1; in draw() 10 const SkRect& b1 = path1.getBounds(); in draw()
|
D | Path_swap.cpp | 7 SkPath path1, path2; in draw() local 8 path1.addRect({10, 20, 30, 40}); in draw() 9 path1.swap(path2); in draw() 10 const SkRect& b1 = path1.getBounds(); in draw()
|
/third_party/flutter/skia/tests/ |
D | PathOpsBuilderTest.cpp | 275 SkPath path1; in DEF_TEST() local 276 path1.moveTo(5, -225); in DEF_TEST() 277 path1.lineTo(-225, 7425); in DEF_TEST() 278 path1.lineTo(7425, 7425); in DEF_TEST() 279 path1.lineTo(7425, -225); in DEF_TEST() 280 path1.lineTo(-225, -225); in DEF_TEST() 281 path1.lineTo(5, -225); in DEF_TEST() 282 path1.close(); in DEF_TEST() 299 builder.add(path1, kUnion_SkPathOp); in DEF_TEST() 312 SkPath path1(path); in DEF_TEST() local [all …]
|
D | PathOpsBattles.cpp | 13 SkPath path1, path2; in issue414409() local 16 path1.moveTo(9.53595e-07f, -60); in issue414409() 17 path1.lineTo(5.08228e-15f, -83); in issue414409() 18 path1.cubicTo(32.8673f, -83, 62.6386f, -63.6055f, 75.9208f, -33.5416f); in issue414409() 19 path1.cubicTo(89.2029f, -3.47759f, 83.4937f, 31.5921f, 61.3615f, 55.8907f); in issue414409() 20 path1.lineTo(46.9383f, 68.4529f); in issue414409() 21 path1.lineTo(33.9313f, 49.484f); in issue414409() 22 path1.cubicTo(37.7451f, 46.8689f, 41.2438f, 43.8216f, 44.3577f, 40.4029f); in issue414409() 23 path1.lineTo(44.3577f, 40.4029f); in issue414409() 24 path1.cubicTo(60.3569f, 22.8376f, 64.4841f, -2.51392f, 54.8825f, -24.2469f); in issue414409() [all …]
|
/third_party/skia/tests/ |
D | PathOpsBuilderTest.cpp | 275 SkPath path1; in DEF_TEST() local 276 path1.moveTo(5, -225); in DEF_TEST() 277 path1.lineTo(-225, 7425); in DEF_TEST() 278 path1.lineTo(7425, 7425); in DEF_TEST() 279 path1.lineTo(7425, -225); in DEF_TEST() 280 path1.lineTo(-225, -225); in DEF_TEST() 281 path1.lineTo(5, -225); in DEF_TEST() 282 path1.close(); in DEF_TEST() 299 builder.add(path1, kUnion_SkPathOp); in DEF_TEST() 312 SkPath path1(path); in DEF_TEST() local [all …]
|
D | PathOpsBattles.cpp | 13 SkPath path1, path2; in issue414409() local 16 path1.moveTo(9.53595e-07f, -60); in issue414409() 17 path1.lineTo(5.08228e-15f, -83); in issue414409() 18 path1.cubicTo(32.8673f, -83, 62.6386f, -63.6055f, 75.9208f, -33.5416f); in issue414409() 19 path1.cubicTo(89.2029f, -3.47759f, 83.4937f, 31.5921f, 61.3615f, 55.8907f); in issue414409() 20 path1.lineTo(46.9383f, 68.4529f); in issue414409() 21 path1.lineTo(33.9313f, 49.484f); in issue414409() 22 path1.cubicTo(37.7451f, 46.8689f, 41.2438f, 43.8216f, 44.3577f, 40.4029f); in issue414409() 23 path1.lineTo(44.3577f, 40.4029f); in issue414409() 24 path1.cubicTo(60.3569f, 22.8376f, 64.4841f, -2.51392f, 54.8825f, -24.2469f); in issue414409() [all …]
|
/third_party/ltp/testcases/kernel/syscalls/symlink/ |
D | symlink01.c | 224 void delete_files(char *path1, char *path2); 316 int creat_both(char *path1, char *path2, char *path3); 317 int creat_symlink(char *path1, char *path2, char *_path3); 318 int creat_path_max(char *path1, char *path2, char *path3); 319 int ck_symlink(char *path1, char *path2, char *path3); 320 int creat_object(char *path1, char *_path2, char *_path3); 321 int ck_object(char *path1, char *path2, char *path3); 322 int ck_both(char *path1, char *path2, char *path3); 323 int ck_path_max(char *path1, char *path2, char *path3); 333 int (*test_setup) (char *path1, char *path2, char *path3); [all …]
|
/third_party/skia/gm/ |
D | patharcto.cpp | 78 const SkPath path1 = SkPath::Polygon(p1, SK_ARRAY_COUNT(p1), false); variable 98 canvas->drawPath(path1, paint); 103 path.addPath(path1, SkPath::kAppend_AddPathMode); 110 path.addPath(path1, perspective, SkPath::kAppend_AddPathMode); 117 path.addPath(path1, SkPath::kExtend_AddPathMode); 124 path.addPath(path1, perspective, SkPath::kExtend_AddPathMode);
|
/third_party/boost/boost/filesystem/ |
D | exception.hpp | 63 const path& path1() const BOOST_NOEXCEPT in path1() function in boost::filesystem::filesystem_error 86 explicit impl(path const& path1) : m_path1(path1) {} 87 impl(path const& path1, path const& path2) : m_path1(path1), m_path2(path2) {} in impl()
|
/third_party/ntfs-3g/libntfs-3g/ |
D | ioctl.c | 144 char path1[40]; /* holds "/sys/dev/block/%d:%d" */ in fstrim_limits() local 145 char path2[40 + sizeof(path1)]; /* less than 40 bytes more than path1 */ in fstrim_limits() 164 snprintf(path1, sizeof path1, "/sys/dev/block/%d:%d", in fstrim_limits() 167 snprintf(path2, sizeof path2, "%s/discard_alignment", path1); in fstrim_limits() 180 snprintf(path2, sizeof path2, "%s/queue/discard_granularity", path1); in fstrim_limits() 187 "%s/../queue/discard_granularity", path1); in fstrim_limits() 198 snprintf(path2, sizeof path2, "%s/queue/discard_max_bytes", path1); in fstrim_limits() 205 "%s/../queue/discard_max_bytes", path1); in fstrim_limits()
|
/third_party/glslang/Test/ |
D | hlsl.dashI.vert | 1 // For -Iinc1/path1 -Iinc1/path2 2 // bar.h from local directory will define i1, while the ones from inc1/path1 and inc1/path2 will no… 3 // notHere.h is only in inc1/path1 and inc2/path2, and only inc1/path1 defines p1, p2, and p3
|
/third_party/cef/tests/shared/browser/ |
D | file_util.cc | 94 std::string JoinPath(const std::string& path1, const std::string& path2) { in JoinPath() argument 95 if (path1.empty() && path2.empty()) in JoinPath() 97 if (path1.empty()) in JoinPath() 100 return path1; in JoinPath() 102 std::string result = path1; in JoinPath()
|
/third_party/glib/gio/tests/ |
D | g-file.c | 29 const char *path1; member 81 compare_two_files (const gboolean use_uri, const char *path1, const char *path2) in compare_two_files() argument 89 file1 = g_file_new_for_uri (path1); in compare_two_files() 94 file1 = g_file_new_for_path (path1); in compare_two_files() 134 gboolean equal = compare_two_files (FALSE, cmp_paths[i].path1, cmp_paths[i].path2); in test_g_file_new_for_path() 163 gboolean equal = compare_two_files (TRUE, cmp_uris[i].path1, cmp_uris[i].path2); in test_g_file_new_for_uri() 211 gboolean equal = dup_equals (dup_paths[i].use_uri, dup_paths[i].path1); in test_g_file_dup() 274 gboolean equal = parse_check_utf8 (strings[i].use_uri, strings[i].path1, strings[i].path2); in test_g_file_get_parse_name_utf8() 335 char *s = resolve_arg (arg_data[i].use_uri, arg_data[i].path1); in test_g_file_new_for_commandline_arg() 428 char *s = get_relative_path (dirs[i].use_uri, dirs[i].equal, dirs[i].path1, dirs[i].path2); in test_g_file_has_prefix() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | importCallExpressionSpecifierNotStringTypeError.types | 45 var p3 = import(["path1", "path2"]); 47 >import(["path1", "path2"]) : Promise<any> 48 >["path1", "path2"] : string[] 49 >"path1" : "path1"
|
/third_party/flutter/skia/gm/ |
D | bug530095.cpp | 19 SkPath path1, path2; variable 20 path1.addCircle(200, 200, 124); 30 canvas->drawPath(path1, paint); 46 canvas->drawPath(path1, paint);
|
/third_party/protobuf/src/google/protobuf/io/ |
D | io_win32.cc | 135 wstring join_paths(const wstring& path1, const wstring& path2) { in join_paths() argument 136 if (path1.empty() || is_path_absolute(path2.c_str()) || in join_paths() 141 return path1; in join_paths() 144 if (is_separator(path1[path1.size() - 1])) { in join_paths() 145 return is_separator(path2[0]) ? (path1 + path2.substr(1)) in join_paths() 146 : (path1 + path2); in join_paths() 148 return is_separator(path2[0]) ? (path1 + path2) in join_paths() 149 : (path1 + L'\\' + path2); in join_paths()
|