| /third_party/libfuse/example/ |
| H A D | invalidate_path.c | 83 static int xmp_getattr(const char *path, in xmp_getattr() argument 86 if (strcmp(path, "/") == 0) { in xmp_getattr() 90 } else if (strcmp(path, "/" TIME_FILE_NAME) == 0) { in xmp_getattr() 95 } else if (strcmp(path, "/" GROW_FILE_NAME) == 0) { in xmp_getattr() 107 static int xmp_readdir(const char *path, void *buf, fuse_fill_dir_t filler, in xmp_readdir() argument 113 if (strcmp(path, "/") != 0) { in xmp_readdir() 127 static int xmp_open(const char *path, struct fuse_file_info *fi) { in xmp_open() argument 128 (void) path; in xmp_open() 135 static int xmp_read(const char *path, char *buf, size_t size, off_t offset, in xmp_read() argument 139 if (strcmp(path, "/" TIME_FILE_NAM in xmp_read() 179 invalidate(struct fuse *fuse, const char *path) invalidate() argument [all...] |
| /third_party/musl/ |
| H A D | OAT.xml | 24 2. policyitem: The fields type, name, path, desc is required, and the fields rule, group, filefilter is optional,the default value is:
25 <policyitem type="" name="" path="" desc="" rule="may" group="defaultGroup" filefilter="defaultPolicyFilter"/>
27 "compatibility" is used to check license compatibility in the specified path;
28 "license" is used to check source license header in the specified path;
29 "copyright" is used to check source copyright header in the specified path;
30 "import" is used to check source dependency in the specified path, such as import ... ,include ...
31 "filetype" is used to check file type in the specified path, supported file types: archive, binary
32 "filename" is used to check whether the specified file exists in the specified path(projectroot means the root dir of the project), supported file names: LICENSE, README, README.OpenSource
34 5. policyitem path: This field is used for define the source file scope to apply this policyitem, the "!" prefix means exclude the files. For example, "!.*/lib/.*" means files in lib dir will be exclude while process this policyitem.
38 8. filefilter: Filter rules, the type filename is used to filter file name, the type filepath is used to filter file path [all...] |
| /third_party/skia/src/effects/ |
| H A D | Sk1DPathEffect.cpp | 45 /** Called with the current distance along the path, with the current matrix 63 SkPath1DPathEffectImpl(const SkPath& path, SkScalar advance, SkScalar phase, in SkPath1DPathEffectImpl() argument 64 SkPath1DPathEffect::Style style) : fPath(path) { in SkPath1DPathEffectImpl() 65 SkASSERT(advance > 0 && !path.isEmpty()); in SkPath1DPathEffectImpl() 67 // Make the path thread-safe. in SkPath1DPathEffectImpl() 72 // offset along the path (to match the interpretation in PostScript) in SkPath1DPathEffectImpl() 109 SkPath path; in CreateProc() local 110 buffer.readPath(&path); in CreateProc() 113 return buffer.isValid() ? SkPath1DPathEffect::Make(path, advance, phase, style) : nullptr; in CreateProc() 162 Need differentially more subdivisions when the follow-path i 238 Make(const SkPath& path, SkScalar advance, SkScalar phase, Style style) Make() argument [all...] |
| /third_party/skia/site/docs/user/api/ |
| H A D | skpaint_overview.md | 49 - **SkPathEffect** - modifications to the geometry (path) before it generates an 130 - SkPath2DPathEffect: Stamp the specified path to fill the shape, using the 135 - SkLine2DPathEffect: a special case of SkPath2DPathEffect where the path is a 136 straight line to be stroked, not a path to be filled. 140 - SkPath1DPathEffect: create dash-like effects by replicating the specified path 141 along the drawn path. 145 - SkCornerPathEffect: a path effect that can turn sharp corners into various 150 - SkDashPathEffect: a path effect that implements dashing. 154 - SkDiscretePathEffect: This path effect chops a path int [all...] |
| /third_party/skia/samplecode/ |
| H A D | SampleCusp.cpp | 32 // Create a path with one or two cubics, where one has a cusp. 34 SkPath path; in cusp() local 35 path.moveTo(P[0]); in cusp() 42 path.cubicTo(P[1], P[2], P[3]); in cusp() 46 path.cubicTo(PP[1], PP[2], PP[3]); in cusp() 47 path.cubicTo(PP[4], PP[5], PP[6]); in cusp() 50 return path; in cusp() 114 SkPath path; 121 path.moveTo( SkBits2Float(dat[i].pt[0].fX), SkBits2Float(dat[i].pt[0].fY)); 122 path 126 SkPath path; global() variable [all...] |
| /third_party/toybox/toys/pending/ |
| H A D | mdev.c | 31 device name (prefix '='), path (prefix '=' and postfix '/') or create a 38 // mknod in /dev based on a path like "/sys/block/hda/hda1" 39 static void make_device(char *path) in make_device() argument 47 if (path) { in make_device() 50 temp = strrchr(path, '/'); in make_device() 51 fd = open(path, O_RDONLY); in make_device() 60 type = path[5]=='c' ? S_IFCHR : S_IFBLK; in make_device() 63 // if (!path), do hotplug in make_device() 72 if (!(path = getenv("DEVPATH"))) return; in make_device() 76 device_name = strrchr(path, '/') in make_device() [all...] |
| /third_party/pulseaudio/ |
| H A D | OAT.xml | 20 basedir: Root dir, the basedir + project path is the real source file location. 29 5. task project: Projects to be checked, the path field define the source root dir of the project. 34 2. policyitem: The fields type, name, path, desc is required, and the fields rule, group, filefilter is optional,the default value is: 35 <policyitem type="" name="" path="" desc="" rule="may" group="defaultGroup" filefilter="defaultPolicyFilter"/> 37 "compatibility" is used to check license compatibility in the specified path; 38 "license" is used to check source license header in the specified path; 39 "copyright" is used to check source copyright header in the specified path; 40 "import" is used to check source dependency in the specified path, such as import ... ,include ... 41 "filetype" is used to check file type in the specified path, supported file types: archive, binary 42 "filename" is used to check whether the specified file exists in the specified path(suppor [all...] |
| /third_party/python/Lib/test/test_importlib/ |
| H A D | test_resource.py | 47 file=data01, path=data01.__file__, contents=['A', 'B', 'C'] 53 file=data01, path=data01.__file__, contents=['A', 'B', 'C', 'D/E', 'D/F'] 59 file=data01, path=data01.__file__, contents=['A', 'B', 'C', 'D/E', 'D/F'] 65 file=data01, path=data01.__file__, contents=['A', 'B', 'C', 'D/E', 'D/F'] 77 file=data01, path=data01.__file__, contents=['A', 'B', 'C'] 82 module.__file__ = '/path/which/shall/not/be/named' 144 data_path = pathlib.Path(self.ZIP_MODULE.__file__) 147 self.zip_path = pathlib.Path(f'{uuid.uuid4()}.zip').absolute() 149 sys.path.append(str(self.zip_path)) 154 sys.path [all...] |
| /third_party/selinux/libselinux/src/ |
| H A D | stringrep.c | 53 char path[PATH_MAX]; in discover_class() local 85 ret = snprintf(path, sizeof path, "%s/class/%s/index", selinux_mnt,s); in discover_class() 86 if (ret < 0 || (size_t)ret >= sizeof path) in discover_class() 89 fd = open(path, O_RDONLY | O_CLOEXEC); in discover_class() 103 ret = snprintf(path, sizeof path, "%s/class/%s/perms",selinux_mnt,s); in discover_class() 104 if (ret < 0 || (size_t)ret >= sizeof path) in discover_class() 107 dir = opendir(path); in discover_class() 116 ret = snprintf(path, sizeo in discover_class() [all...] |
| /third_party/rust/crates/rustix/src/backend/libc/net/ |
| H A D | addr.rs | 9 use crate::path; 36 /// Construct a new Unix-domain address from a filesystem path. 38 pub fn new<P: path::Arg>(path: P) -> io::Result<Self> { in new() 39 path.into_with_c_str(Self::_new) in new() 43 fn _new(path: &CStr) -> io::Result<Self> { in _new() 45 let bytes = path.to_bytes_with_nul(); in _new() 144 /// For a filesystem path address, return the path. 146 pub fn path( functions [all...] |
| /third_party/vk-gl-cts/scripts/log/ |
| H A D | bottleneck_report.py | 32 self.path = "" 38 self.path = "" 55 self.element.path = attrs.getValue("CasePath") 71 print('%-4i%12i\t%12s' % (int(ndx), int(test.timeOfExecution), test.path)) 86 self.element.path = attrs.getValue("Name") 87 if self.element.path == "dEQP-VK" : 92 if test.path[:test.path.rfind(".")] in self.element.path : 111 if test.path [all...] |
| /third_party/vk-gl-cts/external/vulkancts/scripts/ |
| H A D | ohos_gen_ext_deps.py | 27 sys.path.append(os.path.join(os.path.dirname(__file__), "..", "..", "..", "scripts")) 33 VK_INL_FILE = os.path.join(os.path.dirname(__file__), "..", "framework", "vulkan", "vkApiExtensionDependencyInfo.inl") 192 # script requires output path to which .inl files will be written 194 sys.exit("Error - output path wasn't specified in argument") 196 if not os.path.isabs(outputPath): 197 outputPath = os.path.abspath(outputPath) 199 if not os.path [all...] |
| /applications/standard/app_samples/code/BasicFeature/Media/Audio/entry/src/main/resources/base/media/ |
| H A D | ic_music.svg | 5 <rect id="path-1" x="0" y="0" width="48" height="48" rx="9.6"></rect> 6 <path d="M32.4655632,15.980948 C32.4803936,16.0751778 32.4903061,16.1700835 32.4952705,16.2652793 L32.4990023,16.4082426 L32.5,27.249908 L32.498902,27.2620554 C32.4931586,28.2880671 32.4856874,28.7633475 32.2674612,29.5724186 C32.049235,30.3814897 31.6218054,31.1432745 30.7702139,31.6340818 C29.2204638,32.5272666 27.3424257,32.1763717 26.5754983,30.8503361 C25.8085709,29.5243005 26.4431741,27.7252669 27.9929242,26.8320821 C28.6295315,26.465179 29.4389386,26.1407327 29.998814,25.6282537 C30.334865,25.3206511 30.498814,24.8782537 30.498814,23.8782537 L30.498186,18.7640969 L20.499186,20.5280969 L20.4998598,28.6106261 C20.5000095,28.6320193 20.5001457,28.6534337 20.500269,28.6748653 L20.5010205,29.1481598 L20.500088,29.3838017 C20.4943446,30.4098134 20.4868734,30.8850938 20.2686472,31.6941649 C20.0504211,32.503236 19.6229915,33.2650208 18.7714,33.7558281 C17.2216499,34.6490129 15.3436117,34.2981181 14.5766843,32.9720825 C13.8097569,31.6460469 14.4443601,29.8470132 15.9941102,28.9538284 C16.6307175,28.5869253 17.4401246,28.2624791 18,27.75 C18.3360511,27.4423974 18.5,27 18.5,26 L18.5,17.7461165 C18.5,16.4512542 19.4013868,15.3406082 20.6500759,15.0622884 L20.8224524,15.0295556 L29.3214547,13.6919348 C30.8217698,13.4558068 32.2294352,14.4806329 32.4655632,15.980948 Z" id="path-3"></path> 10 <use xlink:href="#path-1"></use> 12 <use id="蒙版" fill-opacity="0.199478256" fill="#182431" xlink:href="#path-1"></use> 14 <use xlink:href="#path-3"></use> 16 <use id="形状结合" fill-opacity="0.9" fill="#182431" xlink:href="#path-3"></use>
|
| H A D | ic_call.svg | 5 <rect id="path-1" x="0" y="0" width="48" height="48" rx="9.6"></rect> 6 <path d="M14.1028735,18.8967696 C13.7888974,17.5306004 14.2044174,16.0996426 15.2017898,15.1103691 C15.7556087,14.4884392 16.2798366,14.1301287 16.7744735,14.0354375 C17.5164288,13.8934008 18.2761388,14.1861958 18.7480373,14.7727203 L20.3535576,16.7573764 C20.4338982,16.8557236 20.4968356,16.9322709 20.535131,16.9780138 L20.5702199,17.0191436 C21.1787255,17.7046634 21.1628065,18.7346727 20.5428137,19.4006734 L20.4985785,19.4465391 L19.4146135,20.4691413 C18.9838309,20.8986779 18.9068943,21.5668112 19.2289689,22.0823174 C19.8535694,23.087123 21.0239552,24.4418965 22.3020442,25.6978864 C23.5581035,26.9760448 24.912877,28.1464306 25.9176826,28.7710311 C26.4331888,29.0931057 27.1013221,29.0161691 27.5308587,28.5853865 L28.5534609,27.5014215 L28.5993266,27.4571863 C29.2473272,26.8539501 30.2399263,26.8225762 30.9245328,27.3818098 L31.0970635,27.5271144 C31.489809,27.8507448 32.7189584,28.8429839 33.2272797,29.2519627 C33.8138042,29.7238612 34.1065992,30.4835712 33.9645625,31.2255265 C33.8698713,31.7201634 33.5115608,32.2443913 32.8896309,32.7982102 C31.9003574,33.7955826 30.4693996,34.2111026 29.1032304,33.8971265 C26.1939187,33.2212397 22.7536044,30.9411009 19.8918008,28.1082685 C17.0588991,25.2463956 14.7787603,21.8060813 14.1028735,18.8967696 Z" id="path-3"></path> 10 <use xlink:href="#path-1"></use> 12 <use id="蒙版" fill-opacity="0.199478256" fill="#182431" xlink:href="#path-1"></use> 14 <use xlink:href="#path-3"></use> 16 <use id="路径" fill-opacity="0.9" fill="#182431" xlink:href="#path-3"></use>
|
| /applications/standard/app_samples/code/SuperFeature/MultiDeviceAppDev/MultiMusic/entry/src/main/resources/base/media/ |
| H A D | ic_radio_h.svg | 6 <path d="M10,0 C15.5228475,0 20,4.44826765 20,9.93548387 C20,12.9047732 18.6889998,15.5698375 16.6107251,17.3904588 C15.7298126,18.1621606 14.7110488,18.7821468 13.5958406,19.2092781 L14.234054,20.4779911 C14.4947373,20.9959941 14.2861385,21.627244 13.7681355,21.8879273 C13.6217049,21.9616181 13.4600543,22 13.2961267,22 L6.70387333,22 C6.12397434,22 5.65387333,21.529899 5.65387333,20.95 C5.65387333,20.7860724 5.69225526,20.6244218 5.76594602,20.4779911 L6.4029962,19.2088325 C5.28746748,18.7814186 4.26846478,18.1610301 3.38743787,17.3888492 C1.31022772,15.5682668 0,12.9038982 0,9.93548387 C0,4.44826765 4.4771525,0 10,0 Z" id="形状结合" fill="#FF1949" opacity="0.2"></path> 7 <path d="M10.4720089,13.46235 C10.673284,13.5636411 10.8366362,13.7269933 10.9379273,13.9282684 L14.234054,20.4779911 C14.4947373,20.9959941 14.2861385,21.627244 13.7681355,21.8879273 C13.6217049,21.9616181 13.4600543,22 13.2961267,22 L6.70387333,22 C6.12397434,22 5.65387333,21.529899 5.65387333,20.95 C5.65387333,20.7860724 5.69225526,20.6244218 5.76594602,20.4779911 L9.0620727,13.9282684 C9.322756,13.4102655 9.95400592,13.2016667 10.4720089,13.46235 Z" id="路径" fill="#FF1949" fill-rule="nonzero"></path> 8 <path d="M12.3844964,11.4998847 C12.6832082,11.0513404 12.8571429,10.5135934 12.8571429,9.93548387 C12.8571429,8.36770781 11.5779564,7.09677419 10,7.09677419 C8.42204357,7.09677419 7.14285714,8.36770781 7.14285714,9.93548387 C7.14285714,10.5131675 7.31653556,11.050548 7.61484356,11.4988931" id="路径" stroke="#FF1949" stroke-width="1.68" stroke-linecap="round"></path> 9 <path d="M14.2497519,14.7279678 C15.5857856,13.5575683 16.4285714,11.8443127 16.4285714,9.93548387 C16.4285714,6.40798773 13.550402,3.5483871 10,3.5483871 C6.44959804,3.5483871 3.57142857,6.40798773 3.57142857,9.93548387 C3.57142857,11.8437502 4.41371782,13.5565586 5.7490672,14.726933" id="路径" stroke="#FF1949" stroke-width="1.68" stroke-linecap="round"></path>
|
| /applications/standard/app_samples/code/SystemFeature/FileManagement/Photos/entry/src/main/resources/base/media/ |
| H A D | ic_photos_active.svg | 5 <path d="M16,0 C18.209139,0 20,1.790861 20,4 L20,16 C20,18.209139 18.209139,20 16,20 L4,20 C1.790861,20 0,18.209139 0,16 L0,4 C0,1.790861 1.790861,0 4,0 L16,0 Z" id="path-1"></path> 9 <path fill='#007DFF' d="M16,0 C18.209139,0 20,1.790861 20,4 L20,16 C20,18.209139 18.209139,20 16,20 L4,20 C1.790861,20 0,18.209139 0,16 L0,4 C0,1.790861 1.790861,0 4,0 L16,0 Z" id="path-1"></path> 10 <path d="M15.5863647,9.83040803 C15.9278857,9.93392181 16.2139555,10.0894067 16.8006866,10.6674148 L18.3533478,12.2198191 C18.4471216,12.3135774 18.4998237,12.4407465 18.4998237,12.5733517 L18.4984379,14.5799462 L18.4860088,15.0194859 C18.4488341,15.8324571 18.3381205,16.2669066 18.1603517,16.6491137 L18.0659094,16.8373743 C17.7826603,17.3670039 17.3670039,17.7826603 16.8373743,18.0659094 L16.757846,18.1074014 C16.2529022,18.3638654 15.7099686,18.5 14.3336866,18.5 L5.66631345,18.5 L5.20797976,18.4942144 L4.76997214,18.4741894 C3.96518516,18.4199694 3.56514425,18.2811786 3.16262573,18.0659094 C2.6329961,17.7826603 2.21733967,17.3670039 1.93409064,16.8373743 L1.84897594,16.6612512 C1.83296011,16.6256467 1.81602925,16.5869169 1.79818336,16.5450618 C1.75805942,16.4511841 1.77912161,16.3423608 1.85131193,16.27017 L4.68705939,13.4344051 C5.12348943,12.997975 5.39879972,12.7855837 5.64427199,12.6606258 L5.80494041,12.5887747 C5.85798352,12.5681426 5.91099383,12.5503291 5.96541201,12.5338352 C6.31913016,12.4266244 6.68086984,12.4266244 7.03458799,12.5338352 L7.1070521,12.5569472 L7.17859739,12.5824604 C7.46397916,12.6903961 7.74599755,12.8754064 8.24890986,13.370842 L8.3632243,13.4851003 C8.94932753,14.070348 9.89885603,14.0702419 10.4848285,13.4848634 L13.2388361,10.730978 C13.869235,10.100579 14.1634705,9.93761873 14.5171887,9.83040803 C14.8709069,9.72319732 15.2326465,9.72319732 15.5863647,9.83040803 Z M6.25,5.25 C7.21649831,5.25 8,6.03350169 8,7 C8,7.96649831 7.21649831,8.75 6.25,8.75 C5.28350169,8.75 4.5,7.96649831 4.5,7 C4.5,6.03350169 5.28350169,5.25 6.25,5.25 Z" id="形状结合" fill-opacity="0.80430507" fill="#FFFFFF" mask="url(#mask-2)"></path>
|
| /applications/standard/mms/entry/src/main/resources/rawfile/icon/ |
| H A D | msg_done.svg | 5 <circle id="path-1" cx="80" cy="80" r="80"></circle> 6 <path d="M36.6666667,0 C56.9171075,0 73.3333333,14.7746033 73.3333333,33 C73.3333333,51.2253967 56.9171075,66 36.6666667,66 C34.9673604,66 33.2950534,65.8959624 31.6571802,65.6945785 C30.5704366,65.5743643 29.5118621,65.58398 28.4812728,65.7207899 C27.3727716,65.8679424 26.4162141,66.1476268 25.6116001,66.559843 L25.6116001,66.559843 L25.3968953,66.6727225 C24.0366523,67.3834211 22.5975765,68.1133257 21.0796676,68.8624362 C18.1416966,70.3123686 15.0744572,71.4995388 11.8779496,72.4239469 C10.3952576,72.8527314 8.71077007,73.5334697 8.03414648,73.1538893 C7.35752288,72.774309 8.41432929,71.7025751 8.8969314,70.8249737 C10.1208218,68.5993557 11.1245659,66.5514998 11.9081636,64.6814059 C12.3359466,63.6604813 12.7352487,62.6302122 13.1060699,61.5905988 C13.3521417,60.6126218 13.3770245,59.8229996 13.1799097,59.2219308 C12.9824524,58.6198174 12.5635674,57.9967148 11.9232546,57.352623 C4.59826565,51.3249761 0,42.6457802 0,33 C0,14.7746033 16.4162258,0 36.6666667,0 Z M52.7788111,21.4237103 L32.78,41.422 L23.7086309,32.350377 C22.6794367,31.3211828 21.0374273,31.2782997 19.9571652,32.2217277 L19.8195436,32.350377 C18.7903494,33.3795712 18.7474663,35.0215806 19.6908944,36.1018428 L19.8195436,36.2394643 L30.8386243,47.258545 C31.9125661,48.3324868 33.6537698,48.3324868 34.7277116,47.258545 C34.7575433,47.2287132 34.7865464,47.1983667 34.8147208,47.1675338 L56.6678984,25.3127976 C57.7418402,24.2388558 57.7418402,22.4976521 56.6678984,21.4237103 C55.5939566,20.3497685 53.8527529,20.3497685 52.7788111,21.4237103 Z" id="path-3"></path> 13 <use xlink:href="#path-1"></use> 15 <use id="Mask" fill="#00AAEE" xlink:href="#path-1"></use> 19 <use xlink:href="#path-3"></use> 21 <use id="Mask" fill="#FFFFFF" xlink:href="#path-3"></use>
|
| H A D | msg_delete.svg | 9 id="path-1" 13 <path 15 id="path-3"></path> 33 <use xlink:href="#path-1"></use> 38 xlink:href="#path-1"></use> 46 <use xlink:href="#path-3"></use> 52 xlink:href="#path-3"></use>
|
| /foundation/ability/ability_runtime/services/common/src/ |
| H A D | json_utils.cpp | 27 bool JsonUtils::LoadConfiguration(const std::string& path, nlohmann::json& jsonBuf, in LoadConfiguration() argument 30 std::string configPath = GetConfigPath(path, defaultPath); in LoadConfiguration() 31 TAG_LOGD(AAFwkTag::ABILITYMGR, "config path is: %{public}s", configPath.c_str()); in LoadConfiguration() 38 std::string JsonUtils::GetConfigPath(const std::string& path, const std::string& defaultPath) in GetConfigPath() argument 41 char *configPath = GetOneCfgFile(path.c_str(), buf, MAX_PATH_LEN); in GetConfigPath() 60 char path[PATH_MAX] = {0}; in ReadFileInfoJson() local 61 if (realpath(filePath.c_str(), path) == nullptr) { in ReadFileInfoJson() 69 in.open(path, std::ios_base::in); in ReadFileInfoJson()
|
| /foundation/arkui/ace_engine/frameworks/core/components/svg/parse/ |
| H A D | svg_defs.h | 74 SkPath path; variable 77 Op(path, childPath, kUnion_SkPathOp, &path); 79 return path; 84 RSPath path; variable 87 path.Op(path, childPath, RSPathOp::UNION); 89 return path;
|
| H A D | svg_g.cpp | 89 SkPath path; in AsPath() local 92 Op(path, childPath, kUnion_SkPathOp, &path); in AsPath() 94 return path; in AsPath() 99 RSPath path; in AsPath() local 102 path.Op(path, childPath, RSPathOp::UNION); in AsPath() 104 return path; in AsPath()
|
| H A D | svg_line.cpp | 75 SkPath path; in AsPath() local 76 path.moveTo(ConvertDimensionToPx(component_->GetX1(), viewPort, SvgLengthType::HORIZONTAL), in AsPath() 78 path.lineTo(ConvertDimensionToPx(component_->GetX2(), viewPort, SvgLengthType::HORIZONTAL), in AsPath() 80 return path; in AsPath() 85 RSPath path; in AsPath() local 86 path.MoveTo(ConvertDimensionToPx(component_->GetX1(), viewPort, SvgLengthType::HORIZONTAL), in AsPath() 88 path.LineTo(ConvertDimensionToPx(component_->GetX2(), viewPort, SvgLengthType::HORIZONTAL), in AsPath() 90 return path; in AsPath()
|
| /foundation/arkui/ace_engine/frameworks/core/components_ng/svg/parse/ |
| H A D | svg_line.cpp | 35 SkPath path; in AsPath() local 36 path.moveTo(ConvertDimensionToPx(lineAttr_.x1, viewPort, SvgLengthType::HORIZONTAL), in AsPath() 38 path.lineTo(ConvertDimensionToPx(lineAttr_.x2, viewPort, SvgLengthType::HORIZONTAL), in AsPath() 40 return path; in AsPath() 45 RSRecordingPath path; in AsPath() local 46 path.MoveTo(ConvertDimensionToPx(lineAttr_.x1, viewPort, SvgLengthType::HORIZONTAL), in AsPath() 48 path.LineTo(ConvertDimensionToPx(lineAttr_.x2, viewPort, SvgLengthType::HORIZONTAL), in AsPath() 50 return path; in AsPath()
|
| /foundation/bundlemanager/bundle_framework/test/resource/bmssystemtestability/abilitySrc/thirdPageDemo4/src/ |
| H A D | pageAbilityDemo.cpp | 73 void PageAbilityDemo::CreateFile(const std::string &path) const in CreateFile() 75 std::ofstream file(path); in CreateFile() 78 if (access(path.c_str(), F_OK) != 0) { in CreateFile() 79 APP_LOGE("CreateFile-checkFile:%{private}s not exist", path.c_str()); in CreateFile() 83 void PageAbilityDemo::CreateDir(const std::string &path) const in CreateDir() 85 if (access(path.c_str(), F_OK) != 0) { in CreateDir() 86 if (mkdir(path.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH) != 0) { in CreateDir() 87 APP_LOGE("CreateDir:%{private}s error", path.c_str()); in CreateDir()
|
| /foundation/graphic/graphic_2d/rosen/test/2d_graphics/drawing_ets/ets/testcase/interface/ |
| H A D | pentest.ts | 34 let pathDst: drawing.Path = new drawing.Path(); 37 let pathSrc: drawing.Path = new drawing.Path(); 57 let pathSrc: drawing.Path = new drawing.Path(); 58 let pathDst: drawing.Path = new drawing.Path();
|