| /third_party/node/deps/icu-small/source/common/ |
| H A D | uresimp.h | 48 char *fPath; /* path to bundle - used for distinguishing between resources with the same name */ 78 * Used for /LOCALE/path alias resolution that starts back from the valid locale, 83 char *fResPath; /* full path to the resource: "zh_TW/CollationElements/Sequence" */ 158 ures_openNoDefault(const char* path, const char* localeID, UErrorCode* status); 176 * and path inside the locale, for example: "/myData/en/zoneStrings/3". Keys and indexes are supported. Keys 183 * @param pathToResource a path that will lead to the requested resource 194 * Returns a sub resource that can be located using the pathToResource argument. One needs a path inside 202 * @param pathToResource a path that will lead to the requested resource 217 * @param path path t [all...] |
| /third_party/libwebsockets/win32port/zlib/ |
| H A D | gzlib.c | 87 local gzFile gz_open(path, fd, mode)
in gz_open() 88 const char *path;
in gz_open() 150 /* save the path name for error messages */
151 state->path = malloc(strlen(path) + 1);
152 if (state->path == NULL) {
156 strcpy(state->path, path);
160 open(path,
175 free(state->path);
216 char *path; /* identifier for error messages */ global() local [all...] |
| /third_party/python/Tools/c-analyzer/c_common/ |
| H A D | fsutil.py | 4 import os.path namespace 40 _badprefix=f'..{os.path.sep}', 42 """Return a normalized, absolute-path copy of the given filename.""" 44 return os.path.abspath(filename) 46 relroot = os.path.abspath(relroot) 51 _badprefix=f'..{os.path.sep}', 56 filename = os.path.normpath(filename) 61 if not os.path.isabs(filename): 62 filename = os.path.join(relroot, filename) 64 relpath = os.path [all...] |
| /third_party/vk-gl-cts/external/openglcts/scripts/ |
| H A D | mustpass.py | 30 scriptPath = os.path.join(os.path.dirname(__file__), "..", "..", "..", "scripts") 31 sys.path.insert(0, scriptPath) 45 def __init__ (self, name, path, incpath, devicepath, copyright = None): 47 self.path = path 90 return os.path.join(mustpass.project.path, mustpass.version, "src") 93 return os.path.join(mustpass.project.path, mustpas [all...] |
| /third_party/skia/src/gpu/ops/ |
| H A D | TriangulatingPathRenderer.cpp | 40 * This path renderer linearizes and decomposes the path into triangles using GrTriangulator, 49 // AA triangulated path case - which doesn't use the GrThreadSafeCache nor the VertexData object). 208 // include the path bounds. in TriangulatingPathOp() 228 SkPath path; in getPath() local 229 fShape.asPath(&path); in getPath() 230 return path; in getPath() 243 GrUniqueKey::Builder builder(key, kDomain, shapeKeyDataCnt + kClipBoundsCnt, "Path"); in CreateKey() 272 SkPath path; in Triangulate() local 273 shape.asPath(&path); in Triangulate() 348 SkPath path = this->getPath(); createAAMesh() local 548 const SkPath& path = GrTest::TestPath(random); GR_DRAW_OP_TEST_DEFINE() local 603 SkPath path; onCanDrawPath() local [all...] |
| /third_party/toybox/lib/ |
| H A D | lib.h | 103 struct dirtree *dirtree_flagread(char *path, int flags, 105 struct dirtree *dirtree_read(char *path, int (*callback)(struct dirtree *node)); 118 #define ABS_PATH 1 // all but last path component must exist 119 #define ABS_FILE 2 // last path component must exist 120 #define ABS_KEEP 4 // don't resolve symlinks in path to last component 121 #define ABS_LAST 8 // don't resolve symlink in last path component 150 void xaccess(char *path, int flags); 151 void xunlink(char *path); 154 int xcreate(char *path, int flags, int mode); 155 int xopen(char *path, in [all...] |
| /third_party/python/Modules/clinic/ |
| H A D | _elementtree.c.h | 156 "find($self, /, path, namespaces=None)\n" 164 _elementtree_Element_find_impl(ElementObject *self, PyObject *path, 171 static const char * const _keywords[] = {"path", "namespaces", NULL}; in _elementtree_Element_find() 175 PyObject *path; in _elementtree_Element_find() local 182 path = args[0]; in _elementtree_Element_find() 188 return_value = _elementtree_Element_find_impl(self, path, namespaces); in _elementtree_Element_find() 195 "findtext($self, /, path, default=None, namespaces=None)\n" 203 _elementtree_Element_findtext_impl(ElementObject *self, PyObject *path, 211 static const char * const _keywords[] = {"path", "default", "namespaces", NULL}; in _elementtree_Element_findtext() 215 PyObject *path; in _elementtree_Element_findtext() local 261 PyObject *path; _elementtree_Element_findall() local 300 PyObject *path; _elementtree_Element_iterfind() local [all...] |
| /third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
| H A D | FieldMaskUtil.java | 93 * @throws IllegalArgumentException if any of the field path is invalid. 103 * @throws IllegalArgumentException if any of the field path is not valid. 113 * @throws IllegalArgumentException if any of the field path is not valid. 129 for (String path : paths) { in fromStringList() 130 if (path.isEmpty()) { in fromStringList() 134 if (descriptor.isPresent() && !isValid(descriptor.get(), path)) { in fromStringList() 136 path + " is not a valid path for " + descriptor.get().getFullName()); in fromStringList() 138 builder.addPaths(path); in fromStringList() 178 for (String path in toJsonString() 227 isValid(Class<? extends Message> type, String path) isValid() argument 236 isValid(Descriptor descriptor, String path) isValid() argument [all...] |
| /third_party/rust/crates/serde/serde_derive/src/ |
| H A D | bound.rs | 95 bound: &syn::Path, in with_bound() 114 if let syn::Type::Path(ty) = ungroup(&field.ty) { in visit_field() 115 if let Some(Pair::Punctuated(t, _)) = ty.path.segments.pairs().next() { in visit_field() 124 fn visit_path(&mut self, path: &'ast syn::Path) { in visit_path() 125 if let Some(seg) = path.segments.last() { in visit_path() 132 if path.leading_colon.is_none() && path.segments.len() == 1 { 133 let id = &path.segments[0].ident; 138 for segment in &path [all...] |
| /third_party/nghttp2/doc/ |
| H A D | nghttpx.1 | 42 Set path to server\(aqs private key. Required unless 48 Set path to server\(aqs certificate. Required unless 50 make OCSP stapling work, this must be an absolute path. 58 .B \-b, \-\-backend=(<HOST>,<PORT>|unix:<PATH>)[;[<PATTERN>[:...]][[;<PARAM>]...] 61 domain socket can be specified by prefixing path name 68 consists of path, host + path or just host. The path 70 all request path in its subtree. To deal with the 72 path whic [all...] |
| /third_party/skia/docs/examples/ |
| H A D | bugoftheday.cpp | 7 SkPath path; in REG_FIDDLE() local 8 path.moveTo(10, 10); in REG_FIDDLE() 9 path.moveTo(75, 75); in REG_FIDDLE() 10 path.lineTo(150, 75); in REG_FIDDLE() 11 path.lineTo(150, 150); in REG_FIDDLE() 12 path.lineTo(75, 150); in REG_FIDDLE() 13 canvas->drawPath(path, p); in REG_FIDDLE()
|
| /third_party/node/deps/v8/third_party/zlib/google/ |
| H A D | zip_unittest.cc | 36 // Convenience macro to create a file path from a string literal. 37 #define FP(path) base::FilePath(FILE_PATH_LITERAL(path)) 48 for (base::FilePath path = files.Next(); !path.empty(); path = files.Next()) { in GetRelativePaths() 50 EXPECT_TRUE(dir.AppendRelativePath(path, &relative)); in GetRelativePaths() 163 for (const base::FilePath& path : paths) { 164 const auto it = files_.find(path); 176 bool List(const base::FilePath& path, 258 base::FilePath path; GetDataDirectory() local 274 TestUnzipFile(const base::FilePath& path, bool expect_hidden_files) TestUnzipFile() argument 401 base::FilePath path = GetDataDirectory().AppendASCII("evil.zip"); TEST_F() local 413 base::FilePath path = TEST_F() local [all...] |
| /third_party/node/deps/zlib/google/ |
| H A D | zip_unittest.cc | 36 // Convenience macro to create a file path from a string literal. 37 #define FP(path) base::FilePath(FILE_PATH_LITERAL(path)) 48 for (base::FilePath path = files.Next(); !path.empty(); path = files.Next()) { in GetRelativePaths() 50 EXPECT_TRUE(dir.AppendRelativePath(path, &relative)); in GetRelativePaths() 163 for (const base::FilePath& path : paths) { 164 const auto it = files_.find(path); 176 bool List(const base::FilePath& path, 258 base::FilePath path; GetDataDirectory() local 274 TestUnzipFile(const base::FilePath& path, bool expect_hidden_files) TestUnzipFile() argument 401 base::FilePath path = GetDataDirectory().AppendASCII("evil.zip"); TEST_F() local 413 base::FilePath path = TEST_F() local [all...] |
| /foundation/filemanagement/storage_service/services/storage_daemon/crypto/src/ |
| H A D | base_key.cpp | 110 bool BaseKey::SaveKeyBlob(const KeyBlob &blob, const std::string &path) in SaveKeyBlob() argument 116 LOGI("enter %{public}s, size=%{public}d", path.c_str(), blob.size); in SaveKeyBlob() 117 return WriteFileSync(path.c_str(), blob.data.get(), blob.size); in SaveKeyBlob() 120 bool BaseKey::GenerateAndSaveKeyBlob(KeyBlob &blob, const std::string &path, const uint32_t size) in GenerateAndSaveKeyBlob() argument 125 return SaveKeyBlob(blob, path); in GenerateAndSaveKeyBlob() 128 bool BaseKey::LoadKeyBlob(KeyBlob &blob, const std::string &path, const uint32_t size) in LoadKeyBlob() argument 130 LOGI("enter %{public}s, size=%{public}d", path.c_str(), size); in LoadKeyBlob() 131 std::ifstream file(path, std::ios::binary); in LoadKeyBlob() 133 LOGE("open %{public}s failed, errno %{public}d", path.c_str(), errno); in LoadKeyBlob() 141 LOGE("file:%{public}s size error, real len %{public}d not expected %{public}d", path in LoadKeyBlob() 421 EncryptDe(const UserAuth &auth, const std::string &path) StoreKey() argument 565 DoRestoreKeyOld(const UserAuth &auth, const std::string &path) StoreKey() argument 598 DoRestoreKeyDe(const UserAuth &auth, const std::string &path) StoreKey() argument 625 DoRestoreKeyCeEceSece(const UserAuth &auth, const std::string &path, const uint32_t keyType) StoreKey() argument 673 DoRestoreKey(const UserAuth &auth, const std::string &path) StoreKey() argument 817 WipingActionDir(std::string &path) StoreKey() argument 958 std::string path = candidate.empty() ? keyPath : candidate; StoreKey() local [all...] |
| /third_party/libabigail/doc/vizualization/graph/svg/ |
| H A D | sa-C3.svg | 6 <path style="stroke:none;" d="M 6 -4.984375 C 6 -4.710938 5.929688 -4.460938 5.796875 -4.234375 C 5.660156 -4.015625 5.492188 -3.832031 5.296875 -3.6875 C 5.109375 -3.539062 4.914062 -3.398438 4.71875 -3.265625 C 4.519531 -3.128906 4.347656 -2.972656 4.203125 -2.796875 C 4.066406 -2.628906 4 -2.453125 4 -2.265625 L 4 -1.84375 L 3 -1.84375 L 3 -2.34375 C 3 -2.5625 3.066406 -2.769531 3.203125 -2.96875 C 3.335938 -3.164062 3.503906 -3.332031 3.703125 -3.46875 C 3.898438 -3.613281 4.09375 -3.757812 4.28125 -3.90625 C 4.476562 -4.050781 4.644531 -4.210938 4.78125 -4.390625 C 4.925781 -4.578125 5 -4.773438 5 -4.984375 C 5 -5.285156 4.867188 -5.53125 4.609375 -5.71875 C 4.347656 -5.90625 4 -6 3.5625 -6 C 3.351562 -6 3.207031 -5.910156 3.125 -5.734375 C 3.039062 -5.554688 3 -5.3125 3 -5 L 2 -5 C 2 -5.65625 2.132812 -6.148438 2.40625 -6.484375 C 2.6875 -6.828125 3.09375 -7 3.625 -7 C 4.34375 -7 4.914062 -6.816406 5.34375 -6.453125 C 5.78125 -6.085938 6 -5.597656 6 -4.984375 Z M 4 -1 L 4 0 L 3 0 L 3 -1 Z M 0 1 L 0 -8 L 7 -8 L 7 1 Z M 1 0 L 6 0 L 6 -7 L 1 -7 Z "/> 9 <path style="stroke:none;" d="M 0 -3.46875 C 0 -3.769531 0.0234375 -4.070312 0.078125 -4.375 C 0.140625 -4.675781 0.25 -4.988281 0.40625 -5.3125 C 0.5625 -5.632812 0.753906 -5.914062 0.984375 -6.15625 C 1.210938 -6.394531 1.523438 -6.59375 1.921875 -6.75 C 2.316406 -6.914062 2.757812 -7 3.25 -7 C 4.800781 -7 5.71875 -6.332031 6 -5 L 5 -5 C 4.894531 -5.332031 4.695312 -5.582031 4.40625 -5.75 C 4.113281 -5.914062 3.695312 -6 3.15625 -6 C 2.488281 -6 1.960938 -5.773438 1.578125 -5.328125 C 1.191406 -4.878906 1 -4.265625 1 -3.484375 C 1 -2.722656 1.195312 -2.117188 1.59375 -1.671875 C 2 -1.222656 2.539062 -1 3.21875 -1 C 3.75 -1 4.148438 -1.078125 4.421875 -1.234375 C 4.703125 -1.398438 4.894531 -1.65625 5 -2 L 6 -2 C 5.789062 -0.664062 4.863281 0 3.21875 0 C 2.726562 0 2.289062 -0.078125 1.90625 -0.234375 C 1.519531 -0.390625 1.207031 -0.585938 0.96875 -0.828125 C 0.738281 -1.066406 0.546875 -1.34375 0.390625 -1.65625 C 0.242188 -1.976562 0.140625 -2.285156 0.078125 -2.578125 C 0.0234375 -2.867188 0 -3.164062 0 -3.46875 Z "/> 12 <path style="stroke:none;" d="M 2.5625 -6 C 1.976562 -6 1.570312 -5.90625 1.34375 -5.71875 C 1.125 -5.539062 1.007812 -5.300781 1 -5 L 0 -5 C 0.0390625 -6.332031 0.890625 -7 2.546875 -7 C 3.304688 -7 3.90625 -6.816406 4.34375 -6.453125 C 4.78125 -6.097656 5 -5.609375 5 -4.984375 C 5 -4.285156 4.628906 -3.8125 3.890625 -3.5625 C 4.285156 -3.4375 4.566406 -3.253906 4.734375 -3.015625 C 4.910156 -2.785156 5 -2.46875 5 -2.0625 C 5 -1.4375 4.769531 -0.9375 4.3125 -0.5625 C 3.863281 -0.1875 3.265625 0 2.515625 0 C 0.953125 0 0.113281 -0.664062 0 -2 L 1 -2 C 1 -1.65625 1.128906 -1.398438 1.390625 -1.234375 C 1.648438 -1.078125 2.035156 -1 2.546875 -1 C 3.003906 -1 3.359375 -1.085938 3.609375 -1.265625 C 3.867188 -1.453125 4 -1.710938 4 -2.046875 C 4 -2.691406 3.515625 -3.015625 2.546875 -3.015625 L 2.125 -3 L 2 -3 L 2 -4 C 2.726562 -4.007812 3.242188 -4.078125 3.546875 -4.203125 C 3.847656 -4.328125 4 -4.578125 4 -4.953125 C 4 -5.273438 3.867188 -5.53125 3.609375 -5.71875 C 3.359375 -5.90625 3.007812 -6 2.5625 -6 Z "/> 15 <path style="stroke:none;" d="M 1 0 L 1 -7 L 3.4375 -7 C 4.238281 -7 4.863281 -6.664062 5.3125 -6 C 5.769531 -5.34375 6 -4.507812 6 -3.5 C 6 -2.5 5.769531 -1.664062 5.3125 -1 C 4.851562 -0.332031 4.226562 0 3.4375 0 Z M 2 -1 L 3.3125 -1 C 3.863281 -1 4.28125 -1.210938 4.5625 -1.640625 C 4.851562 -2.066406 5 -2.6875 5 -3.5 C 5 -4.3125 4.851562 -4.929688 4.5625 -5.359375 C 4.28125 -5.785156 3.863281 -6 3.3125 -6 L 2 -6 Z "/> 18 <path style="stroke:none;" d="M 2.5625 0 L 1.75 0 L 0.09375 -5 L 0.9375 -5 L 2.203125 -0.9375 L 3.53125 -5 L 4.375 -5 Z "/> 21 <path style="stroke:none;" d="M 4.59375 -7 L 4.59375 -6 L 1.625 -6 L 1.484375 -3.796875 C 1.816406 -4.597656 2.191406 -5 2.609375 -5 C 3.316406 -5 3.890625 -4.773438 4.328125 -4.328125 C 4.773438 -3.878906 5 -3.296875 5 -2.578125 C 5 -1.816406 4.757812 -1.195312 4.28125 -0.71875 C 3.8125 -0.238281 3.207031 0 2.46875 0 C 2.175781 0 1.90625 -0.03125 1.65625 -0.09375 C 1.414062 -0.15625 1.210938 -0.226562 1.046875 -0.3125 C 0.890625 -0.394531 0.742188 -0.503906 0.609375 -0.640625 C 0.484375 -0.785156 0.382812 -0.910156 0.3125 -1.015625 C 0.25 -1.117188 0.1875 -1.25 0.125 -1.40625 C 0.0703125 -1.5625 0.0351562 -1.671875 0.015625 -1.734375 C 0.00390625 -1.796875 -0.0078125 -1.882812 -0.03125 -2 L 1 -2 C 1.207031 -1.332031 1.691406 -1 2.453125 -1 C 2.929688 -1 3.304688 -1.128906 3.578125 -1.390625 C 3.859375 -1.660156 4 -2.019531 4 -2.46875 C 4 -2.945312 3.859375 -3.320312 3.578125 -3.59375 C 3.296875 -3.863281 2.921875 -4 2.453125 -4 C 2.179688 -4 1.945312 -3.925781 1.75 -3.78125 C 1.5625 -3.632812 1.363281 -3.375 1.15625 -3 L 0.515625 -3 L 0.921875 -7 Z "/> 24 <path style="stroke:none;" d="M 2 -5 L 1 -5 L 1 -6 C 1.363281 -6.0625 1.597656 -6.144531 1.703125 -6.25 C 1.816406 -6.363281 1.914062 -6.613281 2 -7 L 3 -7 L 3 0 L 2 0 Z "/> 27 <path style="stroke:none;" d="M 0 -5 C 0.0507812 -6.332031 0.898438 -7 2.546875 -7 C 3.285156 -7 3.882812 -6.789062 4.34375 -6.375 C 4.8125 -5.96875 5.046875 -5.441406 5.046875 -4.796875 C 5.046875 -3.992188 4.484375 -3.335938 3.359375 -2.828125 L 2.296875 -2.34375 C 1.835938 -2.125 1.507812 -1.910156 1.3125 -1.703125 C 1.113281 -1.503906 0.988281 -1.269531 0.9375 -1 L 5 -1 L 5 0 L 1 0 C 1.019531 -0.769531 1.097656 -1.359375 1.234375 -1.765625 C 1.367188 -2.179688 1.625 -2.597656 2 -3.015625 L 2.984375 -3.5 C 3.660156 -3.832031 4 -4.257812 4 -4.78125 C 4 -5.125 3.859375 -5.410156 3.578125 -5.640625 C 3.296875 -5.878906 2.941406 -6 2.515625 -6 C 1.578125 -6 1.070312 -5.664062 1 -5 Z "/> 30 <path style="stroke:none;" d="M 1 -7 L 2 -7 L 2 -3.9375 C 2.25 -4.644531 2.609375 -5 3.078125 -5 C 3.671875 -5 4.140625 -4.78125 4.484375 -4.34375 C 4.828125 -3.90625 5 -3.304688 5 -2.546875 C 5 -1.773438 4.820312 -1.15625 4.46875 -0.6875 C 4.125 -0.226562 3.65625 0 3.0625 0 C 2.601562 0 2.25 -0.363281 2 -1.09375 L 2 0 L 1 0 Z M 2.984375 -4 C 2.679688 -4 2.441406 -3.863281 2.265625 -3.59375 C 2.085938 -3.320312 2 -2.957031 2 -2.5 C 2 -2.039062 2.085938 -1.675781 2.265625 -1.40625 C 2.441406 -1.132812 2.679688 -1 2.984375 -1 C 3.285156 -1 3.53125 -1.132812 3.71875 -1.40625 C 3.90625 -1.675781 4 -2.035156 4 -2.484375 C 4 -2.941406 3.90625 -3.304688 3.71875 -3.578125 C 3.53125 -3.859375 3.285156 -4 2.984375 -4 Z "/> 33 <path styl [all...] |
| /third_party/json/tests/reports/2016-09-09-nativejson_benchmark/ |
| H A D | conformance_Nlohmann (C++11).md | 109 <svg aria-hidden="true" class="octicon octicon-mark-github" height="32" version="1.1" viewBox="0 0 16 16" width="32"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z"></path></svg> 113 <svg aria-hidden="true" class="octicon octicon-three-bars" height="24" version="1.1" viewBox="0 0 12 16" width="18"><path d="M11.41 9H.59C0 9 0 8.59 0 8c0-.59 0-1 .59-1H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1h.01zm0-4H.59C0 5 0 4.59 0 4c0-.59 0-1 .59-1H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1h.01zM.59 11H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1H.59C0 13 0 12.59 0 12c0-.59 0-1 .59-1z"></path></svg> 182 <svg aria-hidden="true" class="octicon octicon-eye" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path d="M8.06 2C3 2 0 8 0 8s3 6 8.06 6C13 14 16 8 16 8s-3-6-7.94-6zM8 12c-2.2 0-4-1.78-4-4 0-2.2 1.8-4 4-4 2.22 0 4 1.8 4 4 0 2.22-1.78 4-4 4zm2-4c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z"></path></svg> 196 <svg aria-hidden="true" class="octicon octicon-star" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74z"></path></svg> 211 <svg aria-hidden="true" class="octicon octicon-repo-forked" height="16" version="1.1" viewBox="0 0 10 16" width="10"><path d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"></path></sv [all...] |
| /third_party/littlefs/scripts/ |
| H A D | test.py | 38 def openio(path, mode='r', buffering=-1): 40 if path == '-': 46 return open(path, mode, buffering) 52 self.path = config.pop('path') 149 def __init__(self, path, args={}): 150 self.path = path 151 self.name = os.path.basename(path) [all...] |
| /third_party/python/Doc/library/ |
| H A D | importlib.rst | 54 :ref:`sys-path-init` 55 The initialization of :data:`sys.path`. 130 .. function:: find_loader(name, path=None) 132 Find the loader for a module, optionally within the specified *path*. If the 141 argument to *path*. 163 Namespace packages created/installed in a different :data:`sys.path` 268 .. abstractmethod:: find_module(fullname, path=None) 272 for use in :data:`sys.meta_path` and in the path-based import subsystem. 285 An abstract base class representing a :term:`meta path finder`. 292 .. method:: find_spec(fullname, path, targe [all...] |
| /foundation/arkui/ace_engine/frameworks/core/components/svg/parse/ |
| H A D | svg_clip_path.cpp | 37 SkPath path; in AsPath() local 40 Op(path, childPath, kUnion_SkPathOp, &path); in AsPath() 42 return path; in AsPath() 47 RSPath path; in AsPath() local 50 path.Op(path, childPath, RSPathOp::UNION); in AsPath() 52 return path; in AsPath()
|
| /foundation/arkui/ace_engine/test/component_test/test_cases/components/graphic_drawing/entry/src/main/ets/pages/MyTest/ |
| H A D | PathAntiAliasTest.ets | 30 * Path组件 antiAlias属性 31 * 找到画面id为pathAntiAlias的Path组件 33 * 获取path的antiAlias属性与期待值判断是否为真 34 * 点击button,变更path的antiAlias属性值为假 35 * 获取path的antiAlias属性与期待值判断是否为假 42 let path: Component = await driver.findComponent(Matcher.create().id('pathAntiAlias').enabled(true)) 45 let antiAlias1: string = await path.getInspectorInfo() 49 let antiAlias2: string = await path.getInspectorInfo()
|
| /foundation/arkui/ace_engine/frameworks/core/components_ng/svg/parse/ |
| H A D | svg_g.cpp | 30 SkPath path; in AsPath() local 33 Op(path, childPath, kUnion_SkPathOp, &path); in AsPath() 35 return path; in AsPath() 40 RSRecordingPath path; in AsPath() local 43 path.Op(path, childPath, RSPathOp::UNION); in AsPath() 45 return path; in AsPath()
|
| /foundation/arkui/napi/utils/platform/windows/ |
| H A D | file.cpp | 23 bool RealPath(const char *path, char *resolvedPath, size_t bufferSize) in RealPath() argument 25 if (path == nullptr || resolvedPath == nullptr) { in RealPath() 28 size_t pathLen = strlen(path); in RealPath() 30 HILOG_WARN("File path is illeage"); in RealPath() 34 if (_fullpath(buffer, path, PATH_MAX) == NULL) { in RealPath() 36 HILOG_WARN("File path: %{public}s full path failure", path); in RealPath()
|
| /foundation/arkui/napi/utils/platform/unix_like/ |
| H A D | file.cpp | 23 bool RealPath(const char *path, char *resolvedPath, size_t bufferSize) in RealPath() argument 25 if (path == nullptr || resolvedPath == nullptr) { in RealPath() 28 size_t pathLen = strlen(path); in RealPath() 30 HILOG_WARN("File path is illeage"); in RealPath() 34 if (realpath(path, buffer) == NULL) { in RealPath() 36 HILOG_WARN("File path: %{public}s full path failure", path); in RealPath()
|
| /foundation/bundlemanager/bundle_framework_lite/interfaces/inner_api/bundlemgr_lite/ |
| H A D | bundle_daemon_interface.h | 30 EXTRACT_HAP = 0, // extract hap to code path 31 RENAME_DIR, // rename code path or json path 33 CREATE_DATA_DIRECTORY, // create data path 34 STORE_CONTENT_TO_FILE, // store content to json path 36 REMOVE_FILE, // delete json path 37 REMOVE_INSTALL_DIRECTORY, // clear app data path and code path
|
| /third_party/eudev/src/shared/ |
| H A D | label.c | 23 int label_fix(const char *path, bool ignore_enoent, bool ignore_erofs) { in label_fix() argument 26 r = mac_selinux_fix(path, ignore_enoent, ignore_erofs); in label_fix() 27 q = mac_smack_fix(path, ignore_enoent, ignore_erofs); in label_fix() 37 int mkdir_label(const char *path, mode_t mode) { in mkdir_label() argument 40 assert(path); in mkdir_label() 42 r = mac_selinux_create_file_prepare(path, S_IFDIR); in mkdir_label() 46 if (mkdir(path, mode) < 0) in mkdir_label() 54 return mac_smack_fix(path, false, false); in mkdir_label()
|