| /third_party/icu/icu4c/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/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/rust/crates/cxx/book/src/ |
| H A D | overview.svg | 6 <path style="stroke:none;" d=""/> 9 <path style="stroke:none;" d="M 5.140625 -2.359375 L 6.234375 -2.359375 C 6.421875 -2.359375 6.890625 -2.359375 6.890625 -2.828125 C 6.890625 -3.296875 6.4375 -3.296875 6.234375 -3.296875 L 5.265625 -3.296875 L 5.515625 -5.46875 L 6.234375 -5.46875 C 6.421875 -5.46875 6.890625 -5.46875 6.890625 -5.921875 C 6.890625 -6.390625 6.4375 -6.390625 6.234375 -6.390625 L 5.65625 -6.390625 L 5.875 -8.125 C 5.9375 -8.59375 5.6875 -8.765625 5.421875 -8.765625 C 5.015625 -8.765625 4.984375 -8.390625 4.953125 -8.203125 L 4.71875 -6.390625 L 3.171875 -6.390625 L 3.40625 -8.125 C 3.453125 -8.59375 3.203125 -8.765625 2.9375 -8.765625 C 2.53125 -8.765625 2.5 -8.390625 2.46875 -8.203125 L 2.234375 -6.390625 L 1.140625 -6.390625 C 0.953125 -6.390625 0.484375 -6.390625 0.484375 -5.9375 C 0.484375 -5.46875 0.9375 -5.46875 1.140625 -5.46875 L 2.109375 -5.46875 L 1.84375 -3.296875 L 1.140625 -3.296875 C 0.953125 -3.296875 0.484375 -3.296875 0.484375 -2.84375 C 0.484375 -2.359375 0.9375 -2.359375 1.140625 -2.359375 L 1.71875 -2.359375 L 1.484375 -0.640625 C 1.40625 0 1.90625 0 1.953125 0 C 2.359375 0 2.390625 -0.375 2.421875 -0.5625 L 2.65625 -2.359375 L 4.203125 -2.359375 L 3.96875 -0.640625 C 3.890625 0 4.390625 0 4.4375 0 C 4.828125 0 4.875 -0.375 4.90625 -0.5625 Z M 3.046875 -5.46875 L 4.59375 -5.46875 L 4.328125 -3.296875 L 2.78125 -3.296875 Z M 3.046875 -5.46875 "/> 12 <path style="stroke:none;" d="M 6.21875 -9.125 C 6.421875 -9.125 6.796875 -9.125 6.796875 -9.53125 C 6.796875 -9.953125 6.421875 -9.953125 6.21875 -9.953125 L 3.734375 -9.953125 C 3.25 -9.953125 3.15625 -9.828125 3.15625 -9.359375 L 3.15625 0.609375 C 3.15625 1.046875 3.234375 1.1875 3.734375 1.1875 L 6.21875 1.1875 C 6.421875 1.1875 6.796875 1.1875 6.796875 0.78125 C 6.796875 0.359375 6.421875 0.359375 6.21875 0.359375 L 4.09375 0.359375 L 4.09375 -9.125 Z M 6.21875 -9.125 "/> 15 <path style="stroke:none;" d="M 4.21875 -9.359375 C 4.21875 -9.8125 4.125 -9.953125 3.640625 -9.953125 L 1.140625 -9.953125 C 0.953125 -9.953125 0.578125 -9.953125 0.578125 -9.53125 C 0.578125 -9.125 0.953125 -9.125 1.140625 -9.125 L 3.28125 -9.125 L 3.28125 0.359375 L 1.140625 0.359375 C 0.953125 0.359375 0.578125 0.359375 0.578125 0.78125 C 0.578125 1.1875 0.953125 1.1875 1.140625 1.1875 L 3.640625 1.1875 C 4.109375 1.1875 4.21875 1.0625 4.21875 0.609375 Z M 4.21875 -9.359375 "/> 18 <path style="stroke:none;" d="M 4.15625 -3.921875 L 6.203125 -3.921875 C 6.390625 -3.921875 6.84375 -3.921875 6.84375 -4.375 C 6.84375 -4.84375 6.390625 -4.84375 6.203125 -4.84375 L 4.15625 -4.84375 L 4.15625 -6.90625 C 4.15625 -7.078125 4.15625 -7.546875 3.703125 -7.546875 C 3.234375 -7.546875 3.234375 -7.09375 3.234375 -6.90625 L 3.234375 -4.84375 L 1.171875 -4.84375 C 0.984375 -4.84375 0.53125 -4.84375 0.53125 -4.390625 C 0.53125 -3.921875 0.96875 -3.921875 1.171875 -3.921875 L 3.234375 -3.921875 L 3.234375 -1.859375 C 3.234375 -1.671875 3.234375 -1.21875 3.6875 -1.21875 C 4.15625 -1.21875 4.15625 -1.65625 4.15625 -1.859375 Z M 4.15625 -3.921875 "/> 21 <path style="stroke:none;" d=""/> 24 <path style="stroke:none;" d="M 5.75 -1.546875 C 5.09375 -1.015625 4.359375 -0.75 3.5625 -0.75 C 2.359375 -0.75 1.59375 -1.8125 1.59375 -3.203125 C 1.59375 -4.390625 2.171875 -5.6875 3.59375 -5.6875 C 4.5625 -5.6875 4.96875 -5.46875 5.578125 -5.046875 L 5.75 -5.984375 C 4.921875 -6.46875 4.453125 -6.578125 3.59375 -6.578125 C 1.625 -6.578125 0.5 -4.828125 0.5 -3.203125 C 0.5 -1.359375 1.828125 0.140625 3.546875 0.140625 C 4.25 0.140625 5.046875 -0.03125 5.84375 -0.609375 C 5.84375 -0.640625 5.796875 -1.09375 5.78125 -1.140625 Z M 5.75 -1.546875 "/> 27 <path style="stroke:none;" d="M 3.640625 -3.28125 L 6.1875 -6.375 L 4.984375 -6.375 L 3.171875 -4.046875 L 1.296875 -6.375 L 0.078125 -6.375 L 2.6875 -3.28125 L 0 0 L 1.1875 0 L 3.171875 -2.671875 L 5.203125 0 L 6.40625 0 Z M 3.640625 -3.28125 "/> 30 <path style="stroke:none;" d="M 2.53125 -6.375 L 1.359375 -6.375 L 1.359375 -5.203125 L 2.53125 -5.203125 Z M 1.359375 -1.15625 L 1.359375 0 L 2.53125 0 L 2.53125 -1.15625 Z M 1.359375 -1.15625 "/> 33 <path styl [all...] |
| /third_party/python/Doc/c-api/ |
| H A D | init_config.rst | 484 Fields for :ref:`path configuration <init-path-config>` are no longer 503 listed under :ref:`Python Path Configuration <init-path-config>` may 550 If equals to zero, ``Py_RunMain()`` prepends a potentially unsafe path to 551 :data:`sys.path` at startup: 573 Part of the :ref:`Python Path Configuration <init-path-config>` output. 585 Part of the :ref:`Python Path Configuration <init-path [all...] |
| /third_party/skia/experimental/docs/ |
| H A D | svgbaseddoc.htm | 82 <path id="circleFill" d="M300,200 A 100,100 0,0,0 300,200" fill="#777" fill-opacity="0" /> 83 <path id="circle" d="M300,200 A 100,100 0,0,0 300,200" fill="none" stroke="black" /> 89 <path id="span1" d="M200,200 Q300,300 200,300" fill="none" stroke="black" stroke-opacity="0"/> 90 <path id="span2" d="M200,200 C100,300 100,400 200,300" fill="none" stroke="black" stroke-opacity="0"/> 91 <path id="span3" d="M200,200 C300,100 100,400 300,200" fill="none" stroke="black" stroke-opacity="0"/> 92 <path id="wedge1" d="M200,200 L500,500 A 424.26,424.26 0,0,1 200,624.26 z" fill="url(#grad1)" fill-opacity="0"/> 93 <path id="wedge2" d="M200,200 L200,624.26 A 424.26,424.26 0,0,1 -100,500 z" fill="url(#grad2)" fill-opacity="0"/> 94 <path id="wedge3" d="M200,200 L500,-100 A 424.26,424.26 0,0,1 240,622.5 z" fill="url(#grad3)" fill-opacity="0"/> 103 <path id="span4" d="M200,200 Q300,300 400,300" fill="none" stroke="black" stroke-opacity="0"/> 104 <path i [all...] |
| /third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/wpa_gui-qt4/icons/ |
| H A D | laptop.svg | 256 <path 264 <path 269 <path 274 <path 279 <path 284 <path 289 <path 294 <path 299 <path 304 <path [all...] |
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/wpa_gui-qt4/icons/ |
| H A D | laptop.svg | 256 <path 264 <path 269 <path 274 <path 279 <path 284 <path 289 <path 294 <path 299 <path 304 <path [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()
|
| /third_party/curl/docs/libcurl/opts/ |
| H A D | CURLINFO_FTP_ENTRY_PATH.md | 14 CURLINFO_FTP_ENTRY_PATH - get entry path in FTP server 21 CURLcode curl_easy_getinfo(CURL *handle, CURLINFO_FTP_ENTRY_PATH, char **path); 27 path of the entry path. That is the initial path libcurl ended up in when 31 The **path** pointer is NULL or points to private memory. You MUST NOT free 52 /* extract the entry path */ 56 printf("Entry path was: %s\n", ep);
|
| /third_party/icu/icu4j/main/tests/packaging/ |
| H A D | .classpath | 3 <classpathentry excluding="**/.svn/" kind="src" path="src"/> 4 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/> 5 <classpathentry combineaccessrules="false" kind="src" path="/icu4j-core"/> 6 <classpathentry combineaccessrules="false" kind="src" path="/icu4j-test-framework"/> 7 <classpathentry kind="lib" path="/external-libraries/hamcrest-core-1.3.jar"/> 8 <classpathentry kind="lib" path="/external-libraries/junit-4.12.jar" sourcepath="/external-libraries/junit-4.12-sources.jar"> 13 <classpathentry kind="lib" path="/external-libraries/JUnitParams-1.0.5.jar" sourcepath="/external-libraries/JUnitParams-1.0.5-sources.jar"> 18 <classpathentry kind="output" path="out/bin"/>
|
| /third_party/libcoap/win32/testdriver/ |
| H A D | testdriver.vcxproj.user | 4 <LocalDebuggerEnvironment>PATH=$(InstallDir)bin</LocalDebuggerEnvironment> 9 <LocalDebuggerEnvironment>PATH=$(InstallDir)bin</LocalDebuggerEnvironment> 14 <LocalDebuggerEnvironment>PATH=$(InstallDirDbg)bin</LocalDebuggerEnvironment> 19 <LocalDebuggerEnvironment>PATH=$(InstallDirDbg)bin</LocalDebuggerEnvironment> 26 <LocalDebuggerEnvironment>PATH=$(InstallDirDbg)bin</LocalDebuggerEnvironment> 31 <LocalDebuggerEnvironment>PATH=$(InstallDirDbg)bin</LocalDebuggerEnvironment> 36 <LocalDebuggerEnvironment>PATH=$(InstallDir)bin</LocalDebuggerEnvironment> 41 <LocalDebuggerEnvironment>PATH=$(InstallDir)bin</LocalDebuggerEnvironment>
|