/third_party/node/deps/icu-small/source/common/ |
H A D | uresdata.cpp | 260 const char *path, const char *name, UErrorCode *errorCode) { in res_load() 266 pResData->data=udata_openChoice(path, "res", name, isAcceptable, formatVersion, errorCode); in res_load() 921 res_findResource(const ResourceData *pResData, Resource r, char** path, const char** key) { in res_findResource() argument 922 char *pathP = *path, *nextSepP = *path; in res_findResource() 929 /* if you come in with an empty path, you'll be getting back the same resource */ in res_findResource() 940 /* Iteration stops if: the path has been consumed, we found a non-existing in res_findResource() 945 * and set path to the remaining part of the string in res_findResource() 953 *path = nextSepP+1; in res_findResource() 955 *path in res_findResource() 259 res_load(ResourceData *pResData, const char *path, const char *name, UErrorCode *errorCode) res_load() argument [all...] |
/third_party/skia/src/gpu/geometry/ |
H A D | GrAAConvexTessellator.cpp | 76 // is removed to simplify the path. in points_are_colinear_and_b_is_middle() 256 bool GrAAConvexTessellator::tessellate(const SkMatrix& m, const SkPath& path) { in tessellate() argument 257 if (!this->extractFromPath(m, path)) { in tessellate() 381 bool GrAAConvexTessellator::extractFromPath(const SkMatrix& m, const SkPath& path) { 382 SkASSERT(path.isConvex()); 384 SkRect bounds = path.getBounds(); 387 // We could do something smarter here like clip the path based on the bounds of the dst. 395 this->reservePts(5*path.countPoints()); 399 fIndices.setReserve(18*path.countPoints() + 6); 401 // Reset the accumulated error for all the future lineTo() calls when iterating over the path [all...] |
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | uresdata.cpp | 260 const char *path, const char *name, UErrorCode *errorCode) { in res_load() 266 pResData->data=udata_openChoice(path, "res", name, isAcceptable, formatVersion, errorCode); in res_load() 921 res_findResource(const ResourceData *pResData, Resource r, char** path, const char** key) { in res_findResource() argument 922 char *pathP = *path, *nextSepP = *path; in res_findResource() 929 /* if you come in with an empty path, you'll be getting back the same resource */ in res_findResource() 940 /* Iteration stops if: the path has been consumed, we found a non-existing in res_findResource() 945 * and set path to the remaining part of the string in res_findResource() 953 *path = nextSepP+1; in res_findResource() 955 *path in res_findResource() 259 res_load(ResourceData *pResData, const char *path, const char *name, UErrorCode *errorCode) res_load() argument [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/ |
H A D | time_zone_info.cc | 583 inline FilePtr FOpen(const char* path, const char* mode) { in FOpen() argument 586 if (fopen_s(&fp, path, mode) != 0) fp = nullptr; in FOpen() 590 return FilePtr(fopen(path, mode), fclose); in FOpen() 631 // Map the time-zone name to a path name. in Open() 632 std::string path; in Open() local 642 path += tzdir; in Open() 643 path += '/'; in Open() 648 path.append(name, pos, std::string::npos); in Open() 651 auto fp = FOpen(path.c_str(), "rb"); in Open()
|
/third_party/rust/crates/nix/src/sys/socket/ |
H A D | addr.rs | 38 use std::path::Path; 796 // A trailing NUL is not considered part of the path, and it does 813 /// Create a new sockaddr_un representing a filesystem path. 814 pub fn new<P: ?Sized + NixPath>(path: &P) -> Result<UnixAddr> { in new() 815 path.with_nix_path(|cstr| unsafe { in new() 856 /// thus the input `path` is expected to be the bare name, not NUL-prefixed. 861 pub fn new_abstract(path: &[u8]) -> Result<UnixAddr> { in new_abstract() 868 if path.len() >= ret.sun_path.len() { in new_abstract() 872 (path.len() + 1 + offset_of!(libc::sockaddr_un, sun_path)) in new_abstract() 879 path in new_abstract() 938 pub fn path(&self) -> Option<&Path> { path() functions [all...] |
/foundation/arkui/ui_lite/frameworks/components/ |
H A D | ui_canvas.cpp | 47 /* If the previous path is not added to the drawing linked list, it should be destroyed directly. */ in BeginPath() 147 * CMD_ARC, the start point of arc must be connected to the end point of the path. in ArcTo() 158 /* If the ARC scan range exceeds 360 degrees, the end point of the path is the position of the start angle. */ in ArcTo() 311 pathParam->path->strokeCount_--; in DeletePathParam() 312 if (pathParam->path->strokeCount_ == 0) { in DeletePathParam() 313 delete pathParam->path; in DeletePathParam() 810 pathParam->path = path_; in DrawPath() 1322 const UICanvasPath* path = pathParam->path; in DoDrawPath() 1323 if (path in DoDrawPath() [all...] |
/kernel/linux/linux-5.10/tools/perf/util/ |
H A D | symbol.c | 35 #include "path.h" 2153 char path[PATH_MAX]; in dso__find_kallsyms() local 2166 /* Try a fast path for /proc/kallsyms if possible */ in dso__find_kallsyms() 2183 scnprintf(path, sizeof(path), "%s/%s/%s", in dso__find_kallsyms() 2186 if (!find_matching_kcore(map, path, sizeof(path))) in dso__find_kallsyms() 2187 return strdup(path); in dso__find_kallsyms() 2196 if (!build_id_cache__kallsyms_path(sbuild_id, path, sizeof(path))) { in dso__find_kallsyms() 2271 char path[PATH_MAX]; dso__load_guest_kernel_sym() local [all...] |
/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | symbol.c | 35 #include "path.h" 2306 char path[PATH_MAX]; in dso__find_kallsyms() local 2319 /* Try a fast path for /proc/kallsyms if possible */ in dso__find_kallsyms() 2336 scnprintf(path, sizeof(path), "%s/%s/%s", in dso__find_kallsyms() 2339 if (!find_matching_kcore(map, path, sizeof(path))) in dso__find_kallsyms() 2340 return strdup(path); in dso__find_kallsyms() 2349 if (!build_id_cache__kallsyms_path(sbuild_id, path, sizeof(path))) { in dso__find_kallsyms() 2440 char path[PATH_MAX]; dso__load_guest_kernel_sym() local [all...] |
/third_party/node/deps/v8/third_party/zlib/contrib/minizip/ |
H A D | unzip.c | 572 Open a Zip file. path contain the full pathname (by example, 580 local unzFile unzOpenInternal (const void *path, in unzOpenInternal() argument 613 path, in unzOpenInternal() 761 extern unzFile ZEXPORT unzOpen2 (const char *path, in unzOpen2() argument 768 return unzOpenInternal(path, &zlib_filefunc64_32_def_fill, 0); in unzOpen2() 771 return unzOpenInternal(path, NULL, 0); in unzOpen2() 774 extern unzFile ZEXPORT unzOpen2_64 (const void *path, in unzOpen2_64() argument 783 return unzOpenInternal(path, &zlib_filefunc64_32_def_fill, 1); in unzOpen2_64() 786 return unzOpenInternal(path, NULL, 1); in unzOpen2_64() 789 extern unzFile ZEXPORT unzOpen (const char *path) in unzOpen() argument 794 unzOpen64(const void *path) unzOpen64() argument [all...] |
/third_party/node/deps/openssl/openssl/crypto/chacha/asm/ |
H A D | chacha-c64xplus.pl | 39 # yes, overlaps with @DAT, used only in 2x interleave code path... 203 || ROTL @X[$d1],0,@X[$d2] ; moved to avoid cross-path stall 211 ROTL @X[$b1],7,@X[$b0] ; avoided cross-path stall 260 || ROTL @Y[$d1],0,@Y[$d2] ; moved to avoid cross-path stall 268 ROTL @Y[$b1],7,@Y[$b0] ; avoided cross-path stall 317 || ROTL @X[$d0],0,@X[$d3] ; moved to avoid cross-path stall 325 ROTL @X[$b0],7,@X[$b1] ; avoided cross-path stall 375 || ROTL @Y[$d0],0,@Y[$d3] ; moved to avoid cross-path stall 383 ROTL @Y[$b0],7,@Y[$b1] ; avoided cross-path stall 642 || ROTL @X[$d1],0,@X[$d2] ; moved to avoid cross-path stal [all...] |
/third_party/rust/crates/libc/src/vxworks/ |
H A D | mod.rs | 1183 pub fn stat(path: *const c_char, buf: *mut stat) -> ::c_int; in stat() 1186 pub fn creat(path: *const c_char, mode: mode_t) -> ::c_int; in creat() 1189 pub fn access(path: *const c_char, amode: ::c_int) -> ::c_int; in access() 1192 pub fn chown(path: *const c_char, uid: uid_t, gid: gid_t) -> ::c_int; in chown() 1199 pub fn pathconf(path: *const c_char, name: ::c_int) -> c_long; in pathconf() 1220 pub fn truncate(path: *const c_char, length: off_t) -> ::c_int; in truncate() 1266 pub fn mkfifo(path: *const c_char, mode: mode_t) -> ::c_int; in mkfifo() 1359 pub fn lstat(path: *const ::c_char, buf: *mut stat) -> ::c_int; in lstat() 1373 pub fn open(path: *const ::c_char, oflag: ::c_int, ...) -> ::c_int; in open() 1683 pub fn readlink(path [all...] |
/third_party/python/Python/ |
H A D | sysmodule.c | 12 - path: module search path (list of strings) 2419 path -- module search path; path[0] is the script directory, else ''\n\ 2448 executable -- absolute path of the executable binary of the Python interpreter\n\ 3090 COPY_LIST("path", config->module_search_paths); in _PySys_UpdateConfig() 3250 makepathobject(const wchar_t *path, wchar_t delim) in makepathobject() argument 3257 p = path; in makepathobject() 3266 p = wcschr(path, deli in makepathobject() 3283 PySys_SetPath(const wchar_t *path) PySys_SetPath() argument [all...] |
/third_party/openssl/crypto/chacha/asm/ |
H A D | chacha-c64xplus.pl | 39 # yes, overlaps with @DAT, used only in 2x interleave code path... 203 || ROTL @X[$d1],0,@X[$d2] ; moved to avoid cross-path stall 211 ROTL @X[$b1],7,@X[$b0] ; avoided cross-path stall 260 || ROTL @Y[$d1],0,@Y[$d2] ; moved to avoid cross-path stall 268 ROTL @Y[$b1],7,@Y[$b0] ; avoided cross-path stall 317 || ROTL @X[$d0],0,@X[$d3] ; moved to avoid cross-path stall 325 ROTL @X[$b0],7,@X[$b1] ; avoided cross-path stall 375 || ROTL @Y[$d0],0,@Y[$d3] ; moved to avoid cross-path stall 383 ROTL @Y[$b0],7,@Y[$b1] ; avoided cross-path stall 642 || ROTL @X[$d1],0,@X[$d2] ; moved to avoid cross-path stal [all...] |
/third_party/skia/third_party/externals/zlib/contrib/minizip/ |
H A D | unzip.c | 572 Open a Zip file. path contain the full pathname (by example, 580 local unzFile unzOpenInternal (const void *path, in unzOpenInternal() argument 613 path, in unzOpenInternal() 761 extern unzFile ZEXPORT unzOpen2 (const char *path, in unzOpen2() argument 768 return unzOpenInternal(path, &zlib_filefunc64_32_def_fill, 0); in unzOpen2() 771 return unzOpenInternal(path, NULL, 0); in unzOpen2() 774 extern unzFile ZEXPORT unzOpen2_64 (const void *path, in unzOpen2_64() argument 783 return unzOpenInternal(path, &zlib_filefunc64_32_def_fill, 1); in unzOpen2_64() 786 return unzOpenInternal(path, NULL, 1); in unzOpen2_64() 789 extern unzFile ZEXPORT unzOpen (const char *path) in unzOpen() argument 794 unzOpen64(const void *path) unzOpen64() argument [all...] |
/third_party/skia/gm/ |
H A D | wacky_yuv_formats.cpp | 219 // Add a portion of a circle to 'path'. The points 'o1' and 'o2' are on the border of the circle 221 static void add_arc(SkPath* path, in add_arc() argument 260 path->arcTo(r, startDeg, sweepDeg, false); in add_arc() 320 static SkBitmap make_bitmap(SkColorType colorType, const SkPath& path, in make_bitmap() argument 350 canvas->drawPath(path, paint); in make_bitmap() 809 SkPath path = create_splat(origin, innerRadius, outerRadius, 1.0f, 5, &circles); in createBitmaps() local 810 fOriginalBMs[0] = make_bitmap(kRGBA_8888_SkColorType, path, circles, false, fUseSubset); in createBitmaps() 816 SkPath path = create_splat(origin, innerRadius, outerRadius, 1.0f, 7, &circles); in createBitmaps() local 817 fOriginalBMs[1] = make_bitmap(kRGBA_8888_SkColorType, path, circles, true, fUseSubset); in createBitmaps() 1015 SkPath path in createBitmaps() local 1022 SkPath path = create_splat(origin, innerRadius, outerRadius, 1.0f, 7, &circles); createBitmaps() local [all...] |
/third_party/skia/fuzz/ |
H A D | FuzzCanvas.cpp | 367 SkPath path; in make_fuzz_patheffect() local 368 FuzzNicePath(fuzz, &path, 20); in make_fuzz_patheffect() 373 return SkPath1DPathEffect::Make(path, advance, phase, style); in make_fuzz_patheffect() 383 SkPath path; in make_fuzz_patheffect() local 384 FuzzNicePath(fuzz, &path, 20); in make_fuzz_patheffect() 387 return SkPath2DPathEffect::Make(matrix, path); in make_fuzz_patheffect() 1163 SkPath path; 1164 FuzzNicePath(fuzz, &path, 30); 1169 canvas->clipPath(path, (SkClipOp)op, doAntiAlias); 1253 SkPath path; [all...] |
/third_party/zlib/contrib/minizip/ |
H A D | unzip.c | 490 Open a Zip file. path contain the full pathname (by example, 498 local unzFile unzOpenInternal(const void *path, in unzOpenInternal() argument 531 path, in unzOpenInternal() 679 extern unzFile ZEXPORT unzOpen2(const char *path, in unzOpen2() argument 685 return unzOpenInternal(path, &zlib_filefunc64_32_def_fill, 0); in unzOpen2() 688 return unzOpenInternal(path, NULL, 0); in unzOpen2() 691 extern unzFile ZEXPORT unzOpen2_64(const void *path, in unzOpen2_64() argument 699 return unzOpenInternal(path, &zlib_filefunc64_32_def_fill, 1); in unzOpen2_64() 702 return unzOpenInternal(path, NULL, 1); in unzOpen2_64() 705 extern unzFile ZEXPORT unzOpen(const char *path) { in unzOpen() argument 709 unzOpen64(const void *path) unzOpen64() argument [all...] |
/kernel/linux/linux-5.10/fs/ocfs2/ |
H A D | file.c | 620 * run out of credits in the allocation path, we can still in ocfs2_extend_allocation() 1309 int ocfs2_getattr(const struct path *path, struct kstat *stat, in ocfs2_getattr() argument 1312 struct inode *inode = d_inode(path->dentry); in ocfs2_getattr() 1313 struct super_block *sb = path->dentry->d_sb; in ocfs2_getattr() 1317 err = ocfs2_inode_revalidate(path->dentry); in ocfs2_getattr() 1772 struct ocfs2_path *path = NULL; in ocfs2_remove_inode_range() local 1837 path = ocfs2_new_path_from_et(&et); in ocfs2_remove_inode_range() 1838 if (!path) { in ocfs2_remove_inode_range() 1846 ret = ocfs2_find_path(INODE_CACHE(inode), path, in ocfs2_remove_inode_range() [all...] |
/kernel/linux/linux-6.6/fs/ocfs2/ |
H A D | file.c | 617 * run out of credits in the allocation path, we can still in ocfs2_extend_allocation() 1302 int ocfs2_getattr(struct mnt_idmap *idmap, const struct path *path, in ocfs2_getattr() argument 1305 struct inode *inode = d_inode(path->dentry); in ocfs2_getattr() 1306 struct super_block *sb = path->dentry->d_sb; in ocfs2_getattr() 1310 err = ocfs2_inode_revalidate(path->dentry); in ocfs2_getattr() 1766 struct ocfs2_path *path = NULL; in ocfs2_remove_inode_range() local 1831 path = ocfs2_new_path_from_et(&et); in ocfs2_remove_inode_range() 1832 if (!path) { in ocfs2_remove_inode_range() 1840 ret = ocfs2_find_path(INODE_CACHE(inode), path, in ocfs2_remove_inode_range() [all...] |
/third_party/rust/crates/syn/src/gen/ |
H A D | eq.rs | 589 self.attrs == other.attrs && self.qself == other.qself && self.path == other.path in eq() 641 self.attrs == other.attrs && self.qself == other.qself && self.path == other.path in eq() 1313 self.path == other.path && self.delimiter == other.delimiter in eq() 1354 self.path == other.path && self.delimiter == other.delimiter in eq() 1365 self.path == other.path in eq() [all...] |
/foundation/ability/ability_runtime/services/abilitymgr/include/deeplink_reserve/ |
H A D | deeplink_reserve_config.h | 32 std::string path; member
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/overlay/ |
H A D | sheet_wrapper_paint_method.h | 50 RSPath& path, const RefPtr<FrameNode> sheetNode, const RefPtr<SheetTheme>& sheetTheme, float borderWidth);
|
/foundation/arkui/ace_engine/frameworks/core/components/svg/ |
H A D | rosen_render_svg_polygon.h | 42 void UpdateMotion(const std::string& path, const std::string& rotate, double percent) override;
|
/foundation/arkui/ace_engine/frameworks/core/components/font/ |
H A D | rosen_font_collection.h | 66 bool StdFilesystemExists(const std::string &path);
|
/foundation/arkui/ace_engine/frameworks/core/components/plugin/ |
H A D | hap_asset_provider_impl.h | 53 void GetAssetList(const std::string& path, std::vector<std::string>& assetList) override;
|