| /third_party/typescript/src/testRunner/unittests/tsserver/ |
| H A D | configuredProjects.ts | 5 path: "/a/b/tsconfig.json",
15 path: "/a/b/c/f1.ts",
19 path: "/a/b/d/f2.ts",
23 path: "/a/b/e/f3.ts",
29 const { configFileName, configFileErrors } = projectService.openClientFile(file1.path);
39 path: "/a/b/tsconfig.json",
47 path: "/a/b/f1.ts",
51 path: "/a/b/f2.ts",
55 path: "/a/b/c/f3.ts",
61 const { configFileName, configFileErrors } = projectService.openClientFile(file1.path);
[all...] |
| H A D | projects.ts | 5 path: "/a/b/commonFile1.ts",
6 content: `/// <reference path="commonFile2.ts"/>
15 { file: file1.path }
21 host.writeFile(commonFile2.path, commonFile2.content);
29 path: "/a/b/tsconfig.json",
32 "files": ["${commonFile1.path}", "${commonFile2.path}"]
38 projectService.openClientFile(commonFile1.path);
41 checkProjectRootFiles(project, [commonFile1.path, commonFile2.path]);
[all...] |
| H A D | externalProjects.ts | 6 path: "/a/b/app.ts",
10 path: "/a/b/tsconfig.json",
19 const upperCaseConfigFilePath = combinePaths(getDirectoryPath(config.path).toUpperCase(), getBaseFileName(config.path));
22 rootFiles: toExternalFiles([f1.path, upperCaseConfigFilePath]),
26 const project = service.configuredProjects.get(config.path)!;
36 service.openClientFile(f1.path);
41 checkProjectActualFiles(service.inferredProjects[0], [f1.path]);
55 path: "/a/file1.ts",
58 const p1 = { projectFileName: "/a/proj1.csproj", rootFiles: [toExternalFile(f1.path)], option [all...] |
| /third_party/node/deps/npm/test/lib/workspaces/ |
| H A D | get-workspaces.js | 1 const { resolve } = require('path') 9 const cleanOutput = (str, path) => normalizePath(str) 10 .replace(normalizePath(path), '{PATH}') 12 const clean = (res, path) => { 15 cleaned.set(key, cleanOutput(value, path)) 20 const path = t.testdir({ 80 workspaces = await getWorkspaces(['a', 'b'], { path, relativeFrom: path }) 82 clean(workspaces, path), [all...] |
| /third_party/node/doc/api/ |
| H A D | path.md | 0 # Path 7 <!-- source_link=lib/path.js --> 9 The `node:path` module provides utilities for working with file and directory 13 const path = require('node:path'); 18 The default operation of the `node:path` module varies based on the operating 20 a Windows operating system, the `node:path` module will assume that 23 So using `path.basename()` might yield different results on POSIX and Windows: 28 path.basename('C:\\temp\\myfile.html'); 35 path [all...] |
| /foundation/graphic/graphic_2d/rosen/test/2d_graphics/drawing_ets/ets/testcase/interface/ |
| H A D | pathtest.ts | 32 let path:drawing.Path = new drawing.Path(); 33 path.moveTo(0, 0); 37 path.lineTo(x, y); 39 canvas.drawPath(path); 51 let path:drawing.Path = new drawing.Path(); 52 path [all...] |
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
| H A D | Path.h | 1 //===- llvm/Support/Path.h - Path Operating System Concept ------*- C++ -*-===// 9 // This file declares the llvm::sys::path namespace. It is designed after 11 // path class. 26 namespace path { namespace 33 /// Path iterator. 36 /// \a path. The traversal order is as follows: 55 StringRef Path; ///< The entire path. member in llvm::sys::path::const_iterator 56 StringRef Component; ///< The current component. Not necessarily in Path 81 StringRef Path; ///< The entire path. global() member in llvm::sys::path::reverse_iterator [all...] |
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
| H A D | Path.cpp | 1 //===-- Path.cpp - Implement OS Path Concept ------------------------------===// 10 // This file implements the operating system Path API. 20 #include "llvm/Support/Path.h" 36 using llvm::sys::path::is_separator; 46 StringRef find_first_component(StringRef path) { in find_first_component() argument 53 if (path.empty()) in find_first_component() 54 return path; in find_first_component() 58 if (path.size() >= 2 && std::isalpha(static_cast<unsigned char>(path[ in find_first_component() 135 parent_path_end(StringRef path) parent_path_end() argument 231 namespace path { global() namespace 233 begin(StringRef path) begin() argument 241 end(StringRef path) end() argument [all...] |
| /third_party/python/Lib/ |
| H A D | ntpath.py | 5 module as os.path. 8 # strings representing various path-related bits and pieces 35 def _get_bothseps(path): 36 if isinstance(path, bytes): 81 # Return whether a path is absolute. 88 """Test whether a path is absolute""" 100 # LEGACY BUG: isabs("/x") should be false since the path has no drive. 107 def join(path, *paths): 108 path = os.fspath(path) [all...] |
| H A D | posixpath.py | 4 this module as os.path. The "os.path" name is an alias for this 6 os.path provides the same operations in a manner specific to that 13 # Strings representing various path-related bits and pieces. 41 def _get_sep(path): 42 if isinstance(path, bytes): 57 # Return whether a path is absolute. 61 """Test whether a path is absolute""" 73 If any component is an absolute path, all previous path component [all...] |
| /third_party/skia/gm/ |
| H A D | thinconcavepaths.cpp | 17 SkPath path; in draw_thin_stroked_rect() local 18 path.moveTo(10 + width, 10 + width); in draw_thin_stroked_rect() 19 path.lineTo(40, 10 + width); in draw_thin_stroked_rect() 20 path.lineTo(40, 20); in draw_thin_stroked_rect() 21 path.lineTo(10 + width, 20); in draw_thin_stroked_rect() 22 path.moveTo(10, 10); in draw_thin_stroked_rect() 23 path.lineTo(10, 20 + width); in draw_thin_stroked_rect() 24 path.lineTo(40 + width, 20 + width); in draw_thin_stroked_rect() 25 path.lineTo(40 + width, 10); in draw_thin_stroked_rect() 26 canvas->drawPath(path, pain in draw_thin_stroked_rect() 30 SkPath path; draw_thin_right_angle() local 42 SkPath path; draw_golf_club() local 56 SkPath path; draw_barbell() local 71 SkPath path; draw_thin_rect_and_triangle() local 86 SkPath path; draw_hipster_pants() local 98 SkPath path; draw_skinny_snake() local 112 SkPath path; draw_pointy_golf_club() local 122 SkPath path; draw_small_i() local [all...] |
| H A D | concavepaths.cpp | 83 auto path = SkPathBuilder().addPolygon({{20,20}, {60,50}, {20,80}}, false) in test_fast_forward() local 86 canvas->drawPath(path, paint); in test_fast_forward() 94 auto path = SkPathBuilder().addPolygon({{20,20}, {80,20}, {80,80}, {20,80}}, false) in test_hole() local 97 canvas->drawPath(path, paint); in test_hole() 154 auto path = SkPathBuilder().addPolygon({{20,80}, {80,80}, {80,20}, {20,20}}, false) in test_partners() local 158 canvas->drawPath(path, paint); in test_partners() 165 SkPathBuilder path; in test_winding_merged_to_zero() local 168 path.moveTo(20, 80); in test_winding_merged_to_zero() 169 path.moveTo(70, -0.000001f); in test_winding_merged_to_zero() 170 path in test_winding_merged_to_zero() 182 SkPathBuilder path; test_monotone_1() local 194 SkPathBuilder path; test_monotone_2() local 206 SkPathBuilder path; test_monotone_3() local 218 SkPathBuilder path; test_monotone_4() local 233 SkPathBuilder path; test_monotone_5() local 245 SkPathBuilder path; test_degenerate() local 259 SkPathBuilder path; test_coincident_edge() local 277 SkPathBuilder path; test_bowtie_coincident_triangle() local 294 SkPathBuilder path; test_collinear_outer_boundary_edge() local 309 SkPathBuilder path; test_coincident_edges_1() local 323 SkPathBuilder path; test_coincident_edges_2() local 337 SkPathBuilder path; test_coincident_edges_3() local 351 SkPathBuilder path; test_coincident_edges_4() local [all...] |
| /third_party/skia/tests/ |
| H A D | ShadowTest.cpp | 37 void tessellate_shadow(skiatest::Reporter* reporter, const SkPath& path, const SkMatrix& ctm, in tessellate_shadow() argument 40 auto verts = SkShadowTessellator::MakeAmbient(path, ctm, heightParams, true); in tessellate_shadow() 43 verts = SkShadowTessellator::MakeAmbient(path, ctm, heightParams, false); in tessellate_shadow() 46 verts = SkShadowTessellator::MakeSpot(path, ctm, heightParams, {0, 0, 128}, 128.f, true, false); in tessellate_shadow() 49 verts = SkShadowTessellator::MakeSpot(path, ctm, heightParams, {0, 0, 128}, 128.f, false, in tessellate_shadow() 53 verts = SkShadowTessellator::MakeSpot(path, ctm, heightParams, {0, 0, 128}, 128.f, true, true); in tessellate_shadow() 56 verts = SkShadowTessellator::MakeSpot(path, ctm, heightParams, {0, 0, 128}, 128.f, false, true); in tessellate_shadow() 63 SkPath path; in DEF_TEST() local 64 path.cubicTo(100, 50, 20, 100, 0, 0); in DEF_TEST() 65 tessellate_shadow(reporter, path, canva in DEF_TEST() 125 check_xformed_bounds(skiatest::Reporter* reporter, const SkPath& path, const SkMatrix& ctm) check_xformed_bounds() argument 172 check_bounds(skiatest::Reporter* reporter, const SkPath& path) check_bounds() argument 198 SkPath path; DEF_TEST() local [all...] |
| /foundation/graphic/graphic_2d/rosen/test/2d_graphics/drawing_ndk/cpp/interface/ |
| H A D | path_test.cpp | 38 OH_Drawing_Path* path = OH_Drawing_PathCreate(); in OnTestPerformance() local 40 OH_Drawing_PathMoveTo(path, rand.nextULessThan(bitmapWidth_), rand.nextULessThan(bitmapHeight_)); in OnTestPerformance() 41 OH_Drawing_PathLineTo(path, rand.nextULessThan(bitmapWidth_), rand.nextULessThan(bitmapHeight_)); in OnTestPerformance() 44 OH_Drawing_PathTransformWithPerspectiveClip(path, matrix, nullptr, applyPerspectiveClip); in OnTestPerformance() 45 OH_Drawing_CanvasDrawPath(canvas, path); in OnTestPerformance() 47 OH_Drawing_PathReset(path); in OnTestPerformance() 49 OH_Drawing_PathDestroy(path); in OnTestPerformance() 55 OH_Drawing_Path* path = OH_Drawing_PathCreate(); in OnTestPerformance() local 61 OH_Drawing_PathAddRect(path, l, t, r, b, OH_Drawing_PathDirection::PATH_DIRECTION_CCW); in OnTestPerformance() 62 OH_Drawing_PathSetFillType(path, fTyp in OnTestPerformance() 76 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 93 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 111 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 132 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 204 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 215 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 229 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 245 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 286 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 312 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 335 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 353 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 366 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 380 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 396 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 414 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 433 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 451 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 473 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 493 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 517 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 545 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 565 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 587 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local 606 OH_Drawing_Path* path = OH_Drawing_PathCreate(); OnTestPerformance() local [all...] |
| /third_party/node/test/parallel/ |
| H A D | test-path-basename.js | 4 const path = require('path'); 6 assert.strictEqual(path.basename(__filename), 'test-path-basename.js'); 7 assert.strictEqual(path.basename(__filename, '.js'), 'test-path-basename'); 8 assert.strictEqual(path.basename('.js', '.js'), ''); 9 assert.strictEqual(path.basename('js', '.js'), 'js'); 10 assert.strictEqual(path.basename('file.js', '.ts'), 'file.js'); 11 assert.strictEqual(path [all...] |
| /foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/draw/ |
| H A D | path.cpp | 16 #include "draw/path.h" 23 Path::Path() noexcept : impl_(ImplFactory::CreatePathImpl()) {} in CreatePathImpl() 25 Path::Path(const Path& other) noexcept 30 Path& Path::operator=(const Path &other) noexcept 36 Path [all...] |
| /foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/draw/path_fuzzer/ |
| H A D | path_fuzzer.cpp | 23 #include "draw/path.h" 46 Path path; in PathAddFuzzTest() local 49 path.AddRect(rect, PathDirection::CCW_DIRECTION); in PathAddFuzzTest() 50 path.AddOval(oval, PathDirection::CCW_DIRECTION); in PathAddFuzzTest() 51 path.Close(); in PathAddFuzzTest() 66 Path path1; in PathOpFuzzTest() 67 Path ending; in PathOpFuzzTest() 68 Path out; in PathOpFuzzTest() 76 Path o in PathOpFuzzTest() 97 Path path; PathFuzzTest001() local 116 Path path; PathFuzzTest002() local 160 Path path; PathFuzzTest003() local 198 Path path; PathFuzzTest004() local 243 Path path; PathFuzzTest005() local 265 Path path; PathFuzzTest006() local [all...] |
| /test/xts/acts/graphic/graphicnapidrawingtest/ |
| H A D | NativeDrawingPathTest.cpp | 23 #include "draw/path.h" 54 OH_Drawing_Path* path = OH_Drawing_PathCreate(); in HWTEST_F() local 55 EXPECT_EQ(path == nullptr, false); in HWTEST_F() 56 OH_Drawing_PathDestroy(path); in HWTEST_F() 178 EXPECT_TRUE(IsScalarAlmostEqual(reinterpret_cast<Path*>(pathCopy)->GetBounds().GetWidth(), 50.0)); in HWTEST_F() 179 EXPECT_TRUE(IsScalarAlmostEqual(reinterpret_cast<Path*>(pathCopy)->GetBounds().GetHeight(), 40.0)); in HWTEST_F() 193 OH_Drawing_Path* path = OH_Drawing_PathCreate(); in HWTEST_F() local 195 OH_Drawing_PathAddRect(path, 50, 50, 250, 250, OH_Drawing_PathDirection::PATH_DIRECTION_CW); in HWTEST_F() 196 EXPECT_TRUE(IsScalarAlmostEqual(reinterpret_cast<Path*>(path) in HWTEST_F() 210 OH_Drawing_Path* path = OH_Drawing_PathCreate(); HWTEST_F() local 231 OH_Drawing_Path* path = OH_Drawing_PathCreate(); HWTEST_F() local 251 OH_Drawing_Path* path = OH_Drawing_PathCreate(); HWTEST_F() local 270 OH_Drawing_Path* path = OH_Drawing_PathCreate(); HWTEST_F() local 293 OH_Drawing_Path* path = OH_Drawing_PathCreate(); HWTEST_F() local 314 OH_Drawing_Path* path = OH_Drawing_PathCreate(); HWTEST_F() local 331 OH_Drawing_Path* path = OH_Drawing_PathCreate(); HWTEST_F() local 350 OH_Drawing_Path* path = OH_Drawing_PathCreate(); HWTEST_F() local 371 OH_Drawing_Path* path = OH_Drawing_PathCreate(); HWTEST_F() local 392 OH_Drawing_Path* path = OH_Drawing_PathCreate(); HWTEST_F() local 432 OH_Drawing_Path* path = OH_Drawing_PathCreate(); HWTEST_F() local [all...] |
| /third_party/rust/crates/which-rs/src/ |
| H A D | lib.rs | 10 //! use std::path::PathBuf; 27 use std::path; 35 /// Find an executable binary's path by name. 37 /// If given an absolute path, returns it if the file exists and is executable. 39 /// If given a relative path, returns an absolute path to the file if 42 /// If given a string without path separators, looks for a file named 43 /// `binary_name` at each directory in `$PATH` and if it finds an executable 50 /// use std::path::PathBuf; 56 pub fn which<T: AsRef<OsStr>>(binary_name: T) -> Result<path 403 pub struct Path { global() structure names 407 impl Path { global() impls [all...] |
| /foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_scanner_test/src/ |
| H A D | medialibrary_scanner_test.cpp | 59 string path = ""; in HWTEST_F() local 60 bool ret = ScannerUtils::IsExists(path); in HWTEST_F() 62 path = "medialib_GetFileName_test_001"; in HWTEST_F() 63 ret = ScannerUtils::IsExists(path); in HWTEST_F() 65 path= "/storage/cloud/files/Pictures/IsExists_test_001.jpg"; in HWTEST_F() 66 ret = ScannerUtils::IsExists(path); in HWTEST_F() 73 string path = ""; in HWTEST_F() local 74 string ret = ScannerUtils::GetFileNameFromUri(path); in HWTEST_F() 76 path = "medialib_GetFileName_test_001/test"; in HWTEST_F() 77 ret = ScannerUtils::GetFileNameFromUri(path); in HWTEST_F() 86 string path = ""; HWTEST_F() local 96 string path = "text/html"; HWTEST_F() local 125 std::string path = ""; HWTEST_F() local 142 std::string path = ""; HWTEST_F() local 157 std::string path = ""; HWTEST_F() local 167 string path = ""; HWTEST_F() local 177 std::string path = ""; HWTEST_F() local 184 std::string path = "medialib_GetFileTitle_test_001"; HWTEST_F() local 191 string path = "medialib_IsDirHidden_test_001/.test"; HWTEST_F() local 201 std::string path = "medialib_IsDirHiddenRecursive_test_001/.test"; HWTEST_F() local 211 std::string path = "medialib_test"; HWTEST_F() local [all...] |
| /foundation/multimodalinput/input/etc/mouse_icon/src/ |
| H A D | Loading_Right.svg | 5 <path d="M15.1583987,1.10117647 C17.0642811,1.95529412 18.2431046,3.12705882 18.6101635,3.50823529 C19.7678105,4.70823529 20.3748693,5.90823529 20.6501635,6.52941176 C21.0031046,7.31294118 21.4619282,8.59764706 21.5607517,10.2494118 C21.6807517,12.3176471 21.1583987,13.8705882 21.0031046,14.3082353 C20.4313399,15.9035294 19.5701635,17.0117647 19.0054576,17.6258824 C18.5325164,18.1552941 17.748987,18.9105882 16.5983987,19.5458824 C15.4478105,20.1741176 14.3960458,20.4282353 13.6972223,20.5482353 C13.0054576,20.6752941 11.9113399,20.7882353 10.6054576,20.5623529 C9.29251639,20.3364706 8.29016345,19.8564706 7.68310463,19.5035294 C7.09722228,19.1576471 6.17251639,18.5082353 5.33957522,17.4141176 C4.49251639,16.2988235 4.11839875,15.2047059 3.94898698,14.5411765 C3.77957522,13.9411765 3.54663404,12.8047059 3.78663404,11.4070588 C4.01957522,10.0729412 4.57722228,9.10588235 4.93016345,8.59764706 C5.26192816,8.09647059 5.89722228,7.28470588 6.96310463,6.64235294 C8.01486934,6.00705882 8.96781051,5.83058824 9.29251639,5.78117647 C10.4995752,5.59764706 11.4525164,5.82352941 11.8548693,5.93647059 C12.786634,6.19764706 13.4572223,6.63529412 13.8525164,6.93882353 C14.2054576,7.22117647 14.7983987,7.77176471 15.2501635,8.64705882 C15.6948693,9.50823529 15.8007517,10.2988235 15.828987,10.7505882 C15.8501635,11.16 15.8219282,11.7882353 15.5748693,12.5011765 C15.2148693,13.5388235 14.5725164,14.1882353 14.2336929,14.4917647 C13.9583987,14.7317647 13.4642811,15.1129412 12.7372223,15.3529412 C11.9819282,15.6 11.3254576,15.5788235 10.9583987,15.5435294 C10.626634,15.5082353 10.1254576,15.4164706 9.57486934,15.1411765 C8.96781051,14.8376471 8.58663404,14.4635294 8.44545757,14.3152941 C8.35369286,14.2164706 8.09251639,13.9341176 7.85251639,13.5035294 C7.51369286,12.8964706 7.39369286,12.3176471 7.3442811,11.9294118 C7.30192816,11.5694118 7.28075169,10.9905882 7.4642811,10.3129412 C7.61251639,9.77647059 7.83839875,9.37411765 8.01486934,9.09882353 C8.11369286,8.96470588 8.22663404,8.83058824 8.35369286,8.68941176 C8.67133992,8.35058824 8.98898698,8.09647059 9.27133992,7.90588235 C9.56781051,7.72941176 9.82192816,7.61647059 10.0125164,7.53176471 C10.0125164,7.53176471 10.3301635,7.40470588 10.5983987,7.35529412 C10.6548693,7.34117647 10.7254576,7.34117647 10.7748693,7.33411765 C10.7960458,7.33411765 10.8101635,7.33411765 10.8242811,7.33411765 C10.8595752,7.33411765 10.866634,7.33411765 10.8736929,7.33411765 C10.6336929,7.31294118 10.3795752,7.31294118 10.1042811,7.33411765 C9.89251639,7.35529412 8.7842811,7.46823529 7.7042811,8.30117647 C6.63133992,9.12705882 6.22192816,10.1647059 6.07369286,10.5741176 C5.97486934,10.8352941 5.50898698,12.1411765 5.86898698,13.7152941 C5.89722228,13.8352941 6.01722228,14.3435294 6.32075169,14.9647059 C6.49016345,15.3035294 6.85722228,15.9882353 7.54898698,16.6658824 C7.78898698,16.8988235 8.51604581,17.5764706 9.67369286,18.0352941 C9.96310463,18.1552941 11.466634,18.72 13.4078105,18.3882353 C13.908987,18.3035294 15.0525164,18.0494118 16.2525164,17.2305882 C16.4854576,17.0682353 17.4313399,16.4047059 18.2572223,15.1835294 C18.5607517,14.7317647 19.2454576,13.6235294 19.5207517,12.0211765 C19.5772223,11.6894118 19.7748693,10.4188235 19.4360458,8.81647059 C19.0972223,7.20705882 18.3913399,6.09176471 18.0807517,5.64 C17.868987,5.32941176 16.9725164,4.07294118 15.2995752,3.05647059 C14.9042811,2.81647059 14.0783987,2.35764706 12.9419282,2.03294118 C10.7678105,1.41882353 8.89016345,1.71529412 7.95839875,1.93411765 C6.21486934,2.34352941 4.97251639,3.12705882 4.29486934,3.62117647 C3.88545757,3.92470588 2.48075169,4.99764706 1.38663404,6.94588235 C0.278398747,8.92235294 0.0313399236,10.8211765 0.00310462945,12.0494118 C-0.0533659588,14.4141176 0.673692865,16.2141176 1.11133992,17.1176471 C1.41486934,17.7458824 2.31133992,19.44 4.17486934,20.9435294 C5.53722228,22.0447059 6.92075169,22.6376471 7.96545757,22.9623529 C10.5842811,23.7811765 12.828987,23.4423529 13.9019282,23.2094118 C14.5725164,23.0611765 16.2807517,22.6235294 18.0948693,21.36 C19.6901635,20.2517647 20.6148693,19.0305882 20.9607517,18.5435294 C21.2783987,18.0917647 22.1748693,16.8141176 22.6125164,15.0917647 C22.7042811,14.7388235 22.7678105,14.3858824 22.7960458,14.2588235 C23.0501635,12.9105882 23.0501635,11.8517647 23.0431046,11.5411765 C23.0219282,9.96 22.7607517,8.14588235 21.4619282,5.81647059 C19.3513399,2.34352941 15.5325164,-3.13474736e-16 11.1631046,-3.13474736e-16 C10.4925164,-3.13474736e-16 9.83604581,0.0705882353 9.18663404,0.176470588 C10.4925164,-3.13474736e-16 12.6948693,-3.13474736e-16 15.1583987,1.10117647 Z" id="path-1"></path> 9 <path d="M22.2847059,5.83764706 C23.5835294,8.16705882 23.8447059,9.98117647 23.8658824,11.5623529 C23.8729412,11.8729412 23.8729412,12.9317647 23.6188235,14.28 C23.5976471,14.4070588 23.5270588,14.7529412 23.4352941,15.1129412 C22.9905882,16.8352941 22.1011765,18.1129412 21.7835294,18.5647059 C21.4376471,19.0517647 20.5129412,20.2729412 18.9176471,21.3811765 C17.0964706,22.6447059 15.3882353,23.0823529 14.7247059,23.2305882 C13.6588235,23.4635294 11.4141176,23.8023529 8.78823529,22.9835294 C7.74352941,22.6588235 6.36,22.0658824 4.99764706,20.9647059 C3.13411765,19.4611765 2.23764706,17.7670588 1.93411765,17.1388235 C1.49647059,16.2352941 0.776470588,14.4352941 0.825882353,12.0705882 C0.854117647,10.8423529 1.10117647,8.93647059 2.20941176,6.96705882 C3.30352941,5.01882353 4.70823529,3.93882353 5.11764706,3.64235294 C5.79529412,3.14823529 7.04470588,2.36470588 8.78117647,1.95529412 C9.72,1.73647059 11.5905882,1.44 13.7647059,2.05411765 C14.9011765,2.37882353 15.7270588,2.83764706 16.1223529,3.07764706 C17.7952941,4.09411765 18.6917647,5.35058824 18.9035294,5.66117647 C19.2211765,6.12 19.92,7.22823529 20.2588235,8.83764706 C20.5976471,10.4470588 20.4,11.7176471 20.3435294,12.0423529 C20.0682353,13.6447059 19.3835294,14.7529412 19.08,15.2047059 C18.2541176,16.4258824 17.3082353,17.0894118 17.0752941,17.2517647 C15.8752941,18.0705882 14.7317647,18.3247059 14.2305882,18.4094118 C12.2823529,18.7411765 10.7858824,18.1764706 10.4964706,18.0564706 C9.33882353,17.5976471 8.61176471,16.92 8.37176471,16.6870588 C7.68,16.0094118 7.30588235,15.3247059 7.14352941,14.9858824 C6.84,14.3647059 6.72,13.8564706 6.69176471,13.7364706 C6.33176471,12.1623529 6.79764706,10.8635294 6.89647059,10.5952941 C7.05176471,10.1858824 7.45411765,9.14823529 8.52705882,8.32235294 C9.60705882,7.49647059 10.7152941,7.37647059 10.9270588,7.35529412 C11.2023529,7.32705882 11.4564706,7.33411765 11.6964706,7.35529412 C11.7035294,7.35529412 11.7176471,7.35529412 11.7176471,7.35529412 C11.7176471,7.35529412 11.7105882,7.35529412 11.7105882,7.35529412 C12.5223529,7.42588235 13.0870588,7.68705882 13.2282353,7.75764706 C13.5388235,7.90588235 14.5835294,8.44235294 15.1552941,9.69176471 C15.3811765,10.1788235 15.7341176,11.2376471 15.3388235,12.4447059 C15.2117647,12.84 14.8164706,13.8070588 13.7788235,14.4352941 C12.4870588,15.2117647 11.1741176,14.8588235 10.9270588,14.7882353 C10.5811765,14.6894118 9.94588235,14.4423529 9.38117647,13.8635294 C9.24705882,13.7294118 8.71058824,13.1576471 8.47764706,12.2258824 C8.09647059,10.7435294 8.77411765,9.52941176 8.96470588,9.21176471 C9.88235294,7.71529412 11.3011765,7.44705882 11.7105882,7.36235294 C11.7035294,7.36235294 11.6964706,7.36235294 11.6964706,7.36235294 C11.6823529,7.36235294 11.6752941,7.36235294 11.6470588,7.36235294 C11.6329412,7.36235294 11.6188235,7.36235294 11.5976471,7.36235294 C11.5482353,7.36941176 11.4776471,7.36941176 11.4211765,7.38352941 C11.1529412,7.44 10.8352941,7.56 10.8352941,7.56 C10.6447059,7.63764706 10.3905882,7.75764706 10.0941176,7.93411765 C9.81176471,8.12470588 9.48705882,8.37882353 9.17647059,8.71764706 C9.04941176,8.85882353 8.93647059,8.99294118 8.83764706,9.12705882 C8.66117647,9.39529412 8.42823529,9.80470588 8.28705882,10.3411765 C8.10352941,11.0188235 8.12470588,11.6047059 8.16705882,11.9576471 C8.21647059,12.3458824 8.33647059,12.9247059 8.67529412,13.5317647 C8.91529412,13.9694118 9.17647059,14.2517647 9.26823529,14.3435294 C9.40941176,14.4917647 9.79058824,14.8658824 10.3976471,15.1694118 C10.9482353,15.4376471 11.4423529,15.5364706 11.7811765,15.5717647 C12.1482353,15.6141176 12.7976471,15.6352941 13.56,15.3811765 C14.2870588,15.1411765 14.7882353,14.76 15.0564706,14.52 C15.3952941,14.2164706 16.0376471,13.5670588 16.3976471,12.5294118 C16.6447059,11.8164706 16.6729412,11.1811765 16.6517647,10.7788235 C16.6235294,10.3270588 16.5176471,9.53647059 16.0729412,8.67529412 C15.6211765,7.8 15.0352941,7.25647059 14.6752941,6.96705882 C14.2729412,6.66352941 13.6023529,6.22588235 12.6776471,5.96470588 C12.2752941,5.85176471 11.3223529,5.62588235 10.1152941,5.80941176 C9.79058824,5.85882353 8.83058824,6.02823529 7.78588235,6.67058824 C6.72,7.32 6.08470588,8.13176471 5.75294118,8.62588235 C5.40705882,9.13411765 4.84235294,10.0941176 4.60941176,11.4352941 C4.36941176,12.8329412 4.60235294,13.9694118 4.77176471,14.5694118 C4.94117647,15.2329412 5.31529412,16.32 6.16235294,17.4423529 C6.99529412,18.5364706 7.92,19.1858824 8.50588235,19.5317647 C9.12,19.8847059 10.1152941,20.3647059 11.4282353,20.5905882 C12.7341176,20.8164706 13.8282353,20.7035294 14.52,20.5764706 C15.2188235,20.4635294 16.2776471,20.2094118 17.4211765,19.5741176 C18.5717647,18.9388235 19.3552941,18.1835294 19.8282353,17.6541176 C20.3929412,17.0329412 21.2541176,15.9317647 21.8258824,14.3364706 C21.9882353,13.8917647 22.5035294,12.3458824 22.3835294,10.2776471 C22.2847059,8.62588235 21.8258824,7.34117647 21.4729412,6.55764706 C21.1976471,5.93647059 20.5835294,4.74352941 19.4329412,3.53647059 C19.0658824,3.15529412 17.8870588,1.98352941 15.9811765,1.12941176 C13.5247059,0.0282352941 11.4988235,0.0282352941 10.0164706,0.204705882 C4.34117647,1.11529412 0,6.04235294 0,12 C0,18.6282353 5.37176471,24 12,24 C18.6282353,24 24,18.6282353 24,12 C24,9.74117647 23.3647059,7.63764706 22.2847059,5.83764706 Z" id="路径" fill="#FFFFFF" fill-rule="nonzero"></path> 12 <use xlink:href="#path-1"></use> 17 <path d="M11.7952941,15.5576471 L11.7952941,15.5576471 C10.8635294,15.5576471 10.1152941,14.8023529 10.1152941,13.8776471 L10.1152941,13.8776471 C10.1152941,12.9458824 10.8705882,12.1976471 11.7952941,12.1976471 L11.7952941,12.1976471 C12.7270588,12.1976471 13.4752941,12.9529412 13.4752941,13.8776471 L13.4752941,13.8776471 C13.4823529,14.8023529 12.7270588,15.5576471 11.7952941,15.5576471 Z" fill="#B5CEF7"></path> 18 <path d="M11.7458824,15.5576471 L11.7458824,15.5576471 C10.8141176,15.5576471 10.0588235,14.8023529 10.0588235,13.8705882 L10.0588235,13.8705882 C10.0588235,12.9388235 10.8141176,12.1835294 11.7458824,12.1835294 L11.7458824,12.1835294 C12.6776471,12.1835294 13.4329412,12.9388235 13.4329412,13.8705882 L13.4329412,13.8705882 C13.4329412,14.8094118 12.6776471,15.5576471 11.7458824,15.5576471 Z" fill="#B5CEF7"></path> [all...] |
| H A D | Loading.svg | 5 <path d="M21.4743982,1.56 C24.1743982,2.77 25.8443982,4.43 26.3643982,4.97 C28.0043982,6.67 28.8643982,8.37 29.2543982,9.25 C29.7543982,10.36 30.4043982,12.18 30.5443982,14.52 C30.7143982,17.45 29.9743982,19.65 29.7543982,20.27 C28.9443982,22.53 27.7243982,24.1 26.9243982,24.97 C26.2543982,25.72 25.1443982,26.79 23.5143982,27.69 C21.8843982,28.58 20.3943982,28.94 19.4043982,29.11 C18.4243982,29.29 16.8743982,29.45 15.0243982,29.13 C13.1643982,28.81 11.7443982,28.13 10.8843982,27.63 C10.0543982,27.14 8.74439823,26.22 7.56439823,24.67 C6.36439823,23.09 5.83439823,21.54 5.59439823,20.6 C5.35439823,19.75 5.02439823,18.14 5.36439823,16.16 C5.69439823,14.27 6.48439823,12.9 6.98439823,12.18 C7.45439823,11.47 8.35439823,10.32 9.86439823,9.41 C11.3543982,8.51 12.7043982,8.26 13.1643982,8.19 C14.8743982,7.93 16.2243982,8.25 16.7943982,8.41 C18.1143982,8.78 19.0643982,9.4 19.6243982,9.83 C20.1243982,10.23 20.9643982,11.01 21.6043982,12.25 C22.2343982,13.47 22.3843982,14.59 22.4243982,15.23 C22.4543982,15.81 22.4143982,16.7 22.0643982,17.71 C21.5543982,19.18 20.6443982,20.1 20.1643982,20.53 C19.7743982,20.87 19.0743982,21.41 18.0443982,21.75 C16.9743982,22.1 16.0443982,22.07 15.5243982,22.02 C15.0543982,21.97 14.3443982,21.84 13.5643982,21.45 C12.7043982,21.02 12.1643982,20.49 11.9643982,20.28 C11.8343982,20.14 11.4643982,19.74 11.1243982,19.13 C10.6443982,18.27 10.4743982,17.45 10.4043982,16.9 C10.3443982,16.39 10.3143982,15.57 10.5743982,14.61 C10.7843982,13.85 11.1043982,13.28 11.3543982,12.89 C11.4943982,12.7 11.6543982,12.51 11.8343982,12.31 C12.2843982,11.83 12.7343982,11.47 13.1343982,11.2 C13.5543982,10.95 13.9143982,10.79 14.1843982,10.67 C14.1843982,10.67 14.6343982,10.49 15.0143982,10.42 C15.0943982,10.4 15.1943982,10.4 15.2643982,10.39 C15.2943982,10.39 15.3143982,10.39 15.3343982,10.39 C15.3843982,10.39 15.3943982,10.39 15.4043982,10.39 C15.0643982,10.36 14.7043982,10.36 14.3143982,10.39 C14.0143982,10.42 12.4443982,10.58 10.9143982,11.76 C9.39439823,12.93 8.81439823,14.4 8.60439823,14.98 C8.46439823,15.35 7.80439823,17.2 8.31439823,19.43 C8.35439823,19.6 8.52439823,20.32 8.95439823,21.2 C9.19439823,21.68 9.71439823,22.65 10.6943982,23.61 C11.0343982,23.94 12.0643982,24.9 13.7043982,25.55 C14.1143982,25.72 16.2443982,26.52 18.9943982,26.05 C19.7043982,25.93 21.3243982,25.57 23.0243982,24.41 C23.3543982,24.18 24.6943982,23.24 25.8643982,21.51 C26.2943982,20.87 27.2643982,19.3 27.6543982,17.03 C27.7343982,16.56 28.0143982,14.76 27.5343982,12.49 C27.0543982,10.21 26.0543982,8.63 25.6143982,7.99 C25.3143982,7.55 24.0443982,5.77 21.6743982,4.33 C21.1143982,3.99 19.9443982,3.34 18.3343982,2.88 C15.2543982,2.01 12.5943982,2.43 11.2743982,2.74 C8.80439823,3.32 7.04439823,4.43 6.08439823,5.13 C5.50439823,5.56 3.51439823,7.08 1.96439823,9.84 C0.394398225,12.64 0.044398225,15.33 0.00439822505,17.07 C-0.075601775,20.42 0.954398225,22.97 1.57439823,24.25 C2.00439823,25.14 3.27439823,27.54 5.91439823,29.67 C7.84439823,31.23 9.80439823,32.07 11.2843982,32.53 C14.9943982,33.69 18.1743982,33.21 19.6943982,32.88 C20.6443982,32.67 23.0643982,32.05 25.6343982,30.26 C27.8943982,28.69 29.2043982,26.96 29.6943982,26.27 C30.1443982,25.63 31.4143982,23.82 32.0343982,21.38 C32.1643982,20.88 32.2543982,20.38 32.2943982,20.2 C32.6543982,18.29 32.6543982,16.79 32.6443982,16.35 C32.6143982,14.11 32.2443982,11.54 30.4043982,8.24 C27.4143982,3.32 22.0043982,-4.4408921e-16 15.8143982,-4.4408921e-16 C14.8643982,-4.4408921e-16 13.9343982,0.1 13.0143982,0.25 C14.8643982,-4.4408921e-16 17.9843982,-4.4408921e-16 21.4743982,1.56 Z" id="path-1"></path> 9 <path d="M31.57,8.27 C33.41,11.57 33.78,14.14 33.81,16.38 C33.82,16.82 33.82,18.32 33.46,20.23 C33.43,20.41 33.33,20.9 33.2,21.41 C32.57,23.85 31.31,25.66 30.86,26.3 C30.37,26.99 29.06,28.72 26.8,30.29 C24.22,32.08 21.8,32.7 20.86,32.91 C19.35,33.24 16.17,33.72 12.45,32.56 C10.97,32.1 9.01,31.26 7.08,29.7 C4.44,27.57 3.17,25.17 2.74,24.28 C2.12,23 1.1,20.45 1.17,17.1 C1.21,15.36 1.56,12.66 3.13,9.87 C4.68,7.11 6.67,5.58 7.25,5.16 C8.21,4.46 9.98,3.35 12.44,2.77 C13.77,2.46 16.42,2.04 19.5,2.91 C21.11,3.37 22.28,4.02 22.84,4.36 C25.21,5.8 26.48,7.58 26.78,8.02 C27.23,8.67 28.22,10.24 28.7,12.52 C29.18,14.8 28.9,16.6 28.82,17.06 C28.43,19.33 27.46,20.9 27.03,21.54 C25.86,23.27 24.52,24.21 24.19,24.44 C22.49,25.6 20.87,25.96 20.16,26.08 C17.4,26.55 15.28,25.75 14.87,25.58 C13.23,24.93 12.2,23.97 11.86,23.64 C10.88,22.68 10.35,21.71 10.12,21.23 C9.69,20.35 9.52,19.63 9.48,19.46 C8.97,17.23 9.63,15.39 9.77,15.01 C9.99,14.43 10.56,12.96 12.08,11.79 C13.61,10.62 15.18,10.45 15.48,10.42 C15.87,10.38 16.23,10.39 16.57,10.42 C16.58,10.42 16.6,10.42 16.6,10.42 C16.6,10.42 16.59,10.42 16.59,10.42 C17.74,10.52 18.54,10.89 18.74,10.99 C19.18,11.2 20.66,11.96 21.47,13.73 C21.79,14.42 22.29,15.92 21.73,17.63 C21.55,18.19 20.99,19.56 19.52,20.45 C17.69,21.55 15.83,21.05 15.48,20.95 C14.99,20.81 14.09,20.46 13.29,19.64 C13.1,19.45 12.34,18.64 12.01,17.32 C11.47,15.22 12.43,13.5 12.7,13.05 C14,10.93 16.01,10.55 16.59,10.43 C16.58,10.43 16.57,10.43 16.57,10.43 C16.55,10.43 16.54,10.43 16.5,10.43 C16.48,10.43 16.46,10.43 16.43,10.43 C16.36,10.44 16.26,10.44 16.18,10.46 C15.8,10.54 15.35,10.71 15.35,10.71 C15.08,10.82 14.72,10.99 14.3,11.24 C13.9,11.51 13.44,11.87 13,12.35 C12.82,12.55 12.66,12.74 12.52,12.93 C12.27,13.31 11.94,13.89 11.74,14.65 C11.48,15.61 11.51,16.44 11.57,16.94 C11.64,17.49 11.81,18.31 12.29,19.17 C12.63,19.79 13,20.19 13.13,20.32 C13.33,20.53 13.87,21.06 14.73,21.49 C15.51,21.87 16.21,22.01 16.69,22.06 C17.21,22.12 18.13,22.15 19.21,21.79 C20.24,21.45 20.95,20.91 21.33,20.57 C21.81,20.14 22.72,19.22 23.23,17.75 C23.58,16.74 23.62,15.84 23.59,15.27 C23.55,14.63 23.4,13.51 22.77,12.29 C22.13,11.05 21.3,10.28 20.79,9.87 C20.22,9.44 19.27,8.82 17.96,8.45 C17.39,8.29 16.04,7.97 14.33,8.23 C13.87,8.3 12.51,8.54 11.03,9.45 C9.52,10.37 8.62,11.52 8.15,12.22 C7.66,12.94 6.86,14.3 6.53,16.2 C6.19,18.18 6.52,19.79 6.76,20.64 C7,21.58 7.53,23.12 8.73,24.71 C9.91,26.26 11.22,27.18 12.05,27.67 C12.92,28.17 14.33,28.85 16.19,29.17 C18.04,29.49 19.59,29.33 20.57,29.15 C21.56,28.99 23.06,28.63 24.68,27.73 C26.31,26.83 27.42,25.76 28.09,25.01 C28.89,24.13 30.11,22.57 30.92,20.31 C31.15,19.68 31.88,17.49 31.71,14.56 C31.57,12.22 30.92,10.4 30.42,9.29 C30.03,8.41 29.16,6.72 27.53,5.01 C27.01,4.47 25.34,2.81 22.64,1.6 C19.16,0.04 16.29,0.04 14.19,0.29 C6.15,1.58 0,8.56 0,17 C0,26.39 7.61,34 17,34 C26.39,34 34,26.39 34,17 C34,13.8 33.1,10.82 31.57,8.27 Z" id="路径" fill="#FFFFFF" fill-rule="nonzero"></path> 12 <use xlink:href="#path-1"></use> 17 <path d="M16.71,22.04 L16.71,22.04 C15.39,22.04 14.33,20.97 14.33,19.66 L14.33,19.66 C14.33,18.34 15.4,17.28 16.71,17.28 L16.71,17.28 C18.03,17.28 19.09,18.35 19.09,19.66 L19.09,19.66 C19.1,20.97 18.03,22.04 16.71,22.04 Z" fill="#B5CEF7"></path> 18 <path d="M16.64,22.04 L16.64,22.04 C15.32,22.04 14.25,20.97 14.25,19.65 L14.25,19.65 C14.25,18.33 15.32,17.26 16.64,17.26 L16.64,17.26 C17.96,17.26 19.03,18.33 19.03,19.65 L19.03,19.65 C19.03,20.98 17.96,22.04 16.64,22.04 Z" fill="#B5CEF7"></path> [all...] |
| /third_party/skia/modules/pathkit/perf/ |
| H A D | path.bench.js | 1 describe('PathKit\'s Path Behavior', function() { 3 let path = PathKit.NewPath(); 4 path.moveTo(20, 5); 5 path.lineTo(30, 20); 6 path.lineTo(40, 10); 7 path.lineTo(50, 20); 8 path.lineTo(60, 0); 9 path.lineTo(20, 5); 11 path.moveTo(20, 80); 12 path [all...] |
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
| H A D | Path.cpp | 1 //===-- Path.cpp - Implement OS Path Concept ------------------------------===// 9 // This file implements the operating system Path API. 13 #include "llvm/Support/Path.h" 36 using llvm::sys::path::is_separator; 37 using llvm::sys::path::Style; 59 StringRef find_first_component(StringRef path, Style style) { in find_first_component() argument 66 if (path.empty()) in find_first_component() 67 return path; in find_first_component() 71 if (path in find_first_component() 137 parent_path_end(StringRef path, Style style) parent_path_end() argument 222 namespace path { global() namespace 224 begin(StringRef path, Style style) begin() argument 233 end(StringRef path) end() argument [all...] |
| /third_party/python/Lib/unittest/test/ |
| H A D | test_discovery.py | 1 import os.path namespace 2 from os.path import abspath 50 original_isfile = os.path.isfile 52 os.path.isfile = original_isfile 53 original_isdir = os.path.isdir 55 os.path.isdir = original_isdir 60 os.listdir = lambda path: path_lists.pop(0) 63 def isdir(path): 64 return path.endswith('dir') 65 os.path [all...] |