| /third_party/python/Lib/zoneinfo/ |
| H A D | _tzpath.py | 16 if not all(map(os.path.isabs, tzpaths)): 36 new_tzpath = tuple(filter(os.path.isabs, raw_tzpath)) 54 invalid_paths = (path for path in tzpaths if not os.path.isabs(path)) 66 """Retrieve the path to a TZif file from a key.""" 69 filepath = os.path.join(search_path, key) 70 if os.path.isfile(filepath): 76 _TEST_PATH = os.path [all...] |
| /third_party/protobuf/objectivec/ProtocolBuffers_iOS.xcodeproj/ |
| H A D | project.pbxproj | 119 1D30AB110D05D00D00671497 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 120 5102DABB1891A052002037B6 /* GPBConcurrencyTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GPBConcurrencyTests.m; sourceTree = "<group>"; }; 121 51457B5F18D0B7AF00CCC606 /* GPBCodedInputStream_PackagePrivate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GPBCodedInputStream_PackagePrivate.h; sourceTree = "<group>"; }; 122 515B840C18B7DEE30031753B /* GPBDescriptor_PackagePrivate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GPBDescriptor_PackagePrivate.h; sourceTree = "<group>"; }; 123 5196A06918CE16B000B759E2 /* GPBMessage_PackagePrivate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GPBMessage_PackagePrivate.h; sourceTree = "<group>"; }; 124 7401C1A90F950347006D8281 /* UnitTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "UnitTests-Info.plist"; sourceTree = "<group>"; }; 125 7461B48D0F94F99000A0C422 /* GPBBootstrap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GPBBootstrap.h; sourceTree = "<group>"; }; 126 7461B48E0F94F99000A0C422 /* GPBCodedInputStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GPBCodedInputStream.h; sourceTree = "<group>"; }; 127 7461B48F0F94F99000A0C422 /* GPBCodedInputStream.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = GPBCodedInputStream.m; sourceTree = "<group>"; }; 128 7461B4900F94F99000A0C422 /* GPBCodedOutputStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path [all...] |
| /third_party/protobuf/objectivec/ProtocolBuffers_tvOS.xcodeproj/ |
| H A D | project.pbxproj | 119 1D30AB110D05D00D00671497 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 120 5102DABB1891A052002037B6 /* GPBConcurrencyTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GPBConcurrencyTests.m; sourceTree = "<group>"; }; 121 51457B5F18D0B7AF00CCC606 /* GPBCodedInputStream_PackagePrivate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GPBCodedInputStream_PackagePrivate.h; sourceTree = "<group>"; }; 122 515B840C18B7DEE30031753B /* GPBDescriptor_PackagePrivate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GPBDescriptor_PackagePrivate.h; sourceTree = "<group>"; }; 123 5196A06918CE16B000B759E2 /* GPBMessage_PackagePrivate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GPBMessage_PackagePrivate.h; sourceTree = "<group>"; }; 124 7401C1A90F950347006D8281 /* UnitTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "UnitTests-Info.plist"; sourceTree = "<group>"; }; 125 7461B48D0F94F99000A0C422 /* GPBBootstrap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GPBBootstrap.h; sourceTree = "<group>"; }; 126 7461B48E0F94F99000A0C422 /* GPBCodedInputStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GPBCodedInputStream.h; sourceTree = "<group>"; }; 127 7461B48F0F94F99000A0C422 /* GPBCodedInputStream.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = GPBCodedInputStream.m; sourceTree = "<group>"; }; 128 7461B4900F94F99000A0C422 /* GPBCodedOutputStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path [all...] |
| /third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
| H A D | FieldMaskTree.java | 48 * a field path in the FieldMask. 93 * Adds a field path to the tree. In a FieldMask, every field path matches the specified field as 94 * well as all its sub-fields. For example, a field path "foo.bar" matches field "foo.bar" and 95 * also "foo.bar.baz", etc. When adding a field path to the tree, redundant sub-paths will be 97 * exists, which will turn the tree node for "foo.bar" to a leaf node. Likewise, if the field path 98 * to add is a sub-path of an existing leaf node, nothing will be changed in the tree. 102 FieldMaskTree addFieldPath(String path) { in addFieldPath() argument 103 String[] parts = path.split(FIELD_PATH_SEPARATOR_REGEX); in addFieldPath() 111 // Check whether the path matche in addFieldPath() 147 removeFieldPath(String path) removeFieldPath() argument 193 getFieldPaths(Node node, String path, List<String> paths) getFieldPaths() argument 207 intersectFieldPath(String path, FieldMaskTree output) intersectFieldPath() argument 253 merge( Node node, String path, Message source, Message.Builder destination, FieldMaskUtil.MergeOptions options) merge() argument [all...] |
| /third_party/skia/gm/ |
| H A D | cubicpaths.cpp | 33 SkPath path; variable 34 path.moveTo(0, 0); 35 path.cubicTo(140, 150, 40, 10, 170, 150); 38 SkRect bounds = path.getBounds(); 46 canvas->drawPath(path, paint); 86 void drawOne(SkCanvas* canvas, const SkPath& path, const SkRect& clip) { in drawOne() argument 90 canvas->drawPath(path, framePaint); in drawOne() 93 canvas->drawPath(path, fillPaint); in drawOne() 126 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, in drawPath() argument 130 path in drawPath() 177 PathAndName path; global() variable 245 drawPath(SkPath& path,SkCanvas* canvas,SkColor color, const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, SkPaint::Style style, SkPathFillType fill, SkScalar strokeWidth) drawPath() argument 296 PathAndName path; global() variable 368 SkPath path; DEF_SIMPLE_GM() local 381 SkPath path; DEF_SIMPLE_GM() local [all...] |
| /test/xts/tools/build/ |
| H A D | suite.py | 40 raise ValueError('Illegal xts project path ' + project_path) 49 raise ValueError('Illegal xts project path ' + project_path) 57 return os.path.join(xts_root, resource_reldir) 79 ohos_dir = os.path.join(self.args.source_dir, 'plugins', 'ohos') 80 devicetest_dir = os.path.join(self.args.source_dir, 'plugins', 'devicetest') 81 gen_dir0 = os.path.join(self.args.source_dir, 'dist') 82 gen_dir1 = os.path.join(ohos_dir, 'dist') 83 gen_dir2 = os.path.join(devicetest_dir, 'dist') 98 [os.path.join(self.args.source_dir, "run.bat"), 99 os.path [all...] |
| /third_party/vk-gl-cts/external/ |
| H A D | fetch_sources.py | 35 scriptPath = os.path.join(os.path.dirname(__file__), "..", "scripts") 36 sys.path.insert(0, scriptPath) 40 EXTERNAL_DIR = os.path.realpath(os.path.normpath(os.path.dirname(__file__))) 47 def onReadonlyRemoveError (func, path, exc_info): 48 os.chmod(path, stat.S_IWRITE) 49 os.unlink(path) 57 fullDstPath = os.path [all...] |
| /third_party/libinput/doc/user/svg/ |
| H A D | button-debouncing-wave-diagram.svg | 4 <svg id="svgcontent_0" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="1156" viewBox="0 0 680 1156" width="680" overflow="hidden"><style type="text/css">text{font-size:11pt;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;fill-opacity:1;font-family:Helvetica}.muted{fill:#aaa}.warning{fill:#f6b900}.error{fill:#f60000}.info{fill:#0041c4}.success{fill:#00ab00}.h1{font-size:33pt;font-weight:bold}.h2{font-size:27pt;font-weight:bold}.h3{font-size:20pt;font-weight:bold}.h4{font-size:14pt;font-weight:bold}.h5{font-size:11pt;font-weight:bold}.h6{font-size:8pt;font-weight:bold}.s1{fill:none;stroke:#000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none}.s2{fill:none;stroke:#000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none}.s3{color:#000;fill:none;stroke:#000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 3;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate}.s4{color:#000;fill:none;stroke:#000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible}.s5{fill:#fff;stroke:none}.s6{color:#000;fill:#ffffb4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate}.s7{color:#000;fill:#ffe0b9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate}.s8{color:#000;fill:#b9e0ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate}.s9{fill:#000;fill-opacity:1;stroke:none}.s10{color:#000;fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate}.s11{fill:#0041c4;fill-opacity:1;stroke:none}.s12{fill:none;stroke:#0041c4;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none}</style><defs><g id="socket"><rect y="15" x="6" height="20" width="20"/></g><g id="pclk"><path d="M0,20 0,0 20,0" class="s1"/></g><g id="nclk"><path d="m0,0 0,20 20,0" class="s1"/></g><g id="000"><path d="m0,20 20,0" class="s1"/></g><g id="0m0"><path d="m0,20 3,0 3,-10 3,10 11,0" class="s1"/></g><g id="0m1"><path d="M0,20 3,20 9,0 20,0" class="s1"/></g><g id="0mx"><path d="M3,20 9,0 20,0" class="s1"/><path d="m20,15 -5,5" class="s2"/><path d="M20,10 10,20" class="s2"/><path d="M20,5 5,20" class="s2"/><path [all...] |
| /third_party/ltp/lib/ |
| H A D | tst_assert.c | 12 void tst_assert_int(const char *file, const int lineno, const char *path, int val) in tst_assert_int() argument 16 safe_file_scanf(file, lineno, NULL, path, "%d", &sys_val); in tst_assert_int() 19 tst_res_(file, lineno, TPASS, "%s = %d", path, val); in tst_assert_int() 23 tst_res_(file, lineno, TFAIL, "%s != %d got %d", path, val, sys_val); in tst_assert_int() 26 void tst_assert_ulong(const char *file, const int lineno, const char *path, unsigned long val) in tst_assert_ulong() argument 30 safe_file_scanf(file, lineno, NULL, path, "%lu", &sys_val); in tst_assert_ulong() 33 tst_res_(file, lineno, TPASS, "%s = %lu", path, val); in tst_assert_ulong() 37 tst_res_(file, lineno, TFAIL, "%s != %lu got %lu", path, val, sys_val); in tst_assert_ulong() 40 void tst_assert_file_int(const char *file, const int lineno, const char *path, const char *prefix, int val) in tst_assert_file_int() argument 46 file_lines_scanf(file, lineno, NULL, 1, path, fm in tst_assert_file_int() 56 tst_assert_str(const char *file, const int lineno, const char *path, const char *val) tst_assert_str() argument 69 tst_assert_file_str(const char *file, const int lineno, const char *path, const char *prefix, const char *val) tst_assert_file_str() argument [all...] |
| /third_party/node/test/wasi/ |
| H A D | test-wasi-symlinks.js | 4 const path = require('path'); 11 const wasmDir = path.join(__dirname, 'wasm'); 21 const modulePath = path.join(wasmDir, `${process.argv[3]}.wasm`); 40 const sandbox = path.join(tmpdir.path, 'sandbox'); 41 const sandboxedFile = path.join(sandbox, 'input.txt'); 42 const externalFile = path.join(tmpdir.path, 'outside.txt'); 43 const sandboxedDir = path [all...] |
| /third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/ |
| H A D | realpath.js | 9 const { resolve, basename, dirname } = require('path') 11 const realpathCached = (path, rpcache, stcache, depth) => { 15 throw eloop(path) 18 path = resolve(path) 19 if (rpcache.has(path)) { 20 return Promise.resolve(rpcache.get(path)) 23 const dir = dirname(path) 24 const base = basename(path) 39 realpathCached(path, rpcach [all...] |
| /third_party/skia/third_party/externals/sfntly/cpp/tools/ |
| H A D | utils.py | 20 def GetFontList(path, exts, negate=False): 21 """Recursively gets the list of files that from path such that.""" 26 # for root, dirs, files in os.walk(path): makes the lint tool unhappy 28 for entry in os.walk(path): 31 for path in files: 32 has_ext_list = map(lambda ext: path[-len(ext):] == ext, exts) 37 paths.append(os.path.join(root, path)) 41 def GetLevelList(path, max_level=1, negate=False): 42 """Recursively gets the list of files that from path suc [all...] |
| /third_party/gn/src/base/files/ |
| H A D | file_util_posix.cc | 55 extern "C" char* mkdtemp(char* path); 65 int CallStat(const char* path, stat_wrapper_t* sb) { in CallStat() argument 66 return stat(path, sb); in CallStat() 68 int CallLstat(const char* path, stat_wrapper_t* sb) { in CallLstat() argument 69 return lstat(path, sb); in CallLstat() 72 int CallStat(const char* path, stat_wrapper_t* sb) { 73 return stat64(path, sb); 75 int CallLstat(const char* path, stat_wrapper_t* sb) { 76 return lstat64(path, sb); 81 bool VerifySpecificPathControlledByUser(const FilePath& path, in VerifySpecificPathControlledByUser() argument 173 DeleteFile(const FilePath& path, bool recursive) DeleteFile() argument 262 PathExists(const FilePath& path) PathExists() argument 266 PathIsWritable(const FilePath& path) PathIsWritable() argument 270 DirectoryExists(const FilePath& path) DirectoryExists() argument 277 CreateAndOpenFdForTemporaryFileInDir(const FilePath& directory, FilePath* path) CreateAndOpenFdForTemporaryFileInDir() argument 311 GetPosixFilePermissions(const FilePath& path, int* mode) GetPosixFilePermissions() argument 324 SetPosixFilePermissions(const FilePath& path, int mode) SetPosixFilePermissions() argument 344 std::string path; ExecutableExistsInPath() local 363 GetTempDir(FilePath* path) GetTempDir() argument 478 NormalizeFilePath(const FilePath& path, FilePath* normalized_path) NormalizeFilePath() argument 610 SetCurrentDirectory(const FilePath& path) SetCurrentDirectory() argument 614 VerifyPathControlledByUser(const FilePath& base, const FilePath& path, uid_t owner_uid, const std::set<gid_t>& group_gids) VerifyPathControlledByUser() argument 654 VerifyPathControlledByAdmin(const FilePath& path) VerifyPathControlledByAdmin() argument 678 GetMaximumPathComponentLength(const FilePath& path) GetMaximumPathComponentLength() argument [all...] |
| /third_party/skia/infra/bots/recipes/skpbench.expected/ |
| H A D | Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Skpbench_Mskp.json | 8 "/path/to/tmp/json", 42 "PATH": "<PATH>:RECIPE_REPO[depot_tools]" 53 "/path/to/tmp/json", 56 "/path/to/tmp/" 71 "/path/to/tmp/json", 94 "PATH": "<PATH>:RECIPE_REPO[depot_tools]" 103 "\nimport subprocess\nimport sys\n\n# Remove the path.\nadb = sys.argv[1]\npath = sys.argv[2]\nprint('Removing %s' % path)\ncm [all...] |
| H A D | trybot.json | 8 "/path/to/tmp/json", 42 "PATH": "<PATH>:RECIPE_REPO[depot_tools]" 53 "/path/to/tmp/json", 56 "/path/to/tmp/" 71 "/path/to/tmp/json", 94 "PATH": "<PATH>:RECIPE_REPO[depot_tools]" 103 "\nimport subprocess\nimport sys\n\n# Remove the path.\nadb = sys.argv[1]\npath = sys.argv[2]\nprint('Removing %s' % path)\ncm [all...] |
| /foundation/arkui/ui_lite/frameworks/imgdecode/ |
| H A D | cache_manager.cpp | 56 UIFree(const_cast<char*>(dsc_.path)); in ClearSrc() 58 dsc_.path = nullptr; in ClearSrc() 61 RetCode CacheEntry::SetSrc(const char* path) in SetSrc() argument 65 size_t strLen = strlen(path); in SetSrc() 73 if (memcpy_s(newStr, strLen + 1, path, strLen) != EOK) { in SetSrc() 79 dsc_.path = newStr; in SetSrc() 81 dsc_.path = path; in SetSrc() 119 RetCode CacheManager::Open(const char* path, const Style& style, CacheEntry& entry) in Open() argument 121 if ((path in Open() 152 Close(const char* path) Close() argument 178 GetImageHeader(const char* path, ImageHeader& header) GetImageHeader() argument 229 GetIndex(const char* path, uint16_t& hittedIndex) GetIndex() argument 269 TryDecode(const char* path, const Style& style, CacheEntry& entry) TryDecode() argument [all...] |
| /third_party/ffmpeg/libavutil/ |
| H A D | wchar_filename.h | 100 * Checks for extended path prefixes for which normalization needs to be skipped. 104 static inline int path_is_extended(const wchar_t *path) in path_is_extended() argument 106 if (path[0] == L'\\' && (path[1] == L'\\' || path[1] == L'?') && path[2] == L'?' && path[3] == L'\\') in path_is_extended() 113 * Checks for a device path prefix. 118 static inline int path_is_device_path(const wchar_t *path) in path_is_device_path() argument 120 if (path[ in path_is_device_path() 244 get_extended_win32_path(const char *path, wchar_t **ppath_w) get_extended_win32_path() argument [all...] |
| /third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/ |
| H A D | RbPath.java | 22 * A resource bundle path, used to identify entries in ICU data. 58 * Returns a path with the specified segments in (possibly empty). Note that unlike 59 * {@link #parse(String)}, {@code '/'} is not treated specially and can be present in a path 67 * Returns a path with the specified segments in (possibly empty). Note that unlike 68 * {@link #parse(String)}, {@code '/'} is not treated specially and can be present in a path 75 /** Parses the given path string, assuming {@code '/'} as a path separator. */ 76 public static RbPath parse(String path) { in parse() argument 77 checkArgument(!path.isEmpty(), "cannot parse an empty path strin in parse() 158 contains(RbPath path) contains() argument 169 matchesSublist(RbPath path, int offset) matchesSublist() argument [all...] |
| /third_party/node/test/parallel/ |
| H A D | test-path-parse-format.js | 25 const path = require('path'); 28 // [path, root] 29 ['C:\\path\\dir\\index.html', 'C:\\'], 47 ['\\\\server two\\shared folder\\file path.zip', 69 // [path, root] 114 checkParseFormat(path.win32, winPaths); 115 checkParseFormat(path.posix, unixPaths); 116 checkSpecialCaseParseFormat(path.win32, winSpecialCaseParseTests); 117 checkErrors(path [all...] |
| /third_party/protobuf/objectivec/ProtocolBuffers_OSX.xcodeproj/ |
| H A D | project.pbxproj | 118 1D30AB110D05D00D00671497 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 119 5102DABB1891A052002037B6 /* GPBConcurrencyTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GPBConcurrencyTests.m; sourceTree = "<group>"; }; 120 51457B5F18D0B7AF00CCC606 /* GPBCodedInputStream_PackagePrivate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GPBCodedInputStream_PackagePrivate.h; sourceTree = "<group>"; }; 121 515B840C18B7DEE30031753B /* GPBDescriptor_PackagePrivate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GPBDescriptor_PackagePrivate.h; sourceTree = "<group>"; }; 122 5196A06918CE16B000B759E2 /* GPBMessage_PackagePrivate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GPBMessage_PackagePrivate.h; sourceTree = "<group>"; }; 123 7401C1A90F950347006D8281 /* UnitTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "UnitTests-Info.plist"; sourceTree = "<group>"; }; 124 7461B48D0F94F99000A0C422 /* GPBBootstrap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GPBBootstrap.h; sourceTree = "<group>"; }; 125 7461B48E0F94F99000A0C422 /* GPBCodedInputStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GPBCodedInputStream.h; sourceTree = "<group>"; }; 126 7461B48F0F94F99000A0C422 /* GPBCodedInputStream.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = GPBCodedInputStream.m; sourceTree = "<group>"; }; 127 7461B4900F94F99000A0C422 /* GPBCodedOutputStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path [all...] |
| /third_party/json/tests/src/ |
| H A D | unit-json_patch.cpp | 27 json op1 = R"({ "op": "add", "path": "/a/b/c", "value": "foo" })"_json; 28 json op2 = R"({ "path": "/a/b/c", "op": "add", "value": "foo" })"_json; 29 json op3 = R"({ "value": "foo", "path": "/a/b/c", "op": "add" })"_json; 38 json patch1 = R"([{ "op": "add", "path": "/a/b", "value": [ "foo", "bar" ] }])"_json; 66 json patch2 = R"([{ "op": "add", "path": "/a/b/c", "value": 1 }])"_json; 81 json patch = {{{"op", "remove"}, {"path", "/1"}}}; 95 { "op": "add", "path": "/baz", "value": "qux" } 124 { "op": "add", "path": "/foo/1", "value": "qux" } 153 { "op": "remove", "path": "/baz" } 179 { "op": "remove", "path" [all...] |
| /third_party/node/deps/npm/tap-snapshots/test/lib/commands/ |
| H A D | doctor.js.test.cjs | 29 "Finding git in your PATH", 33 "Finding npm global bin in your PATH", 61 git executable in PATH ok /path/to/git 62 global bin folder in PATH ok {CWD}/global/bin 77 git executable in PATH [32mok[39m /path/to/git 78 global bin folder in PATH [32mok[39m {CWD}/global/bin 108 "Finding git in your PATH", 112 "Finding npm global bin in your PATH", [all...] |
| /third_party/skia/site/docs/user/modules/ |
| H A D | pathkit.md | 21 - Exposes a variety of path effects: 78 function drawStar(path) { 80 path.moveTo(C + R + 22, C); 83 path.lineTo(C + R * Math.cos(a) + 22, C + R * Math.sin(a)); 85 path.closePath(); 86 return path; 92 (path) => path, 94 (path, counter) => path [all...] |
| /third_party/node/deps/npm/node_modules/mkdirp/lib/ |
| H A D | mkdirp-manual.js | 1 const {dirname} = require('path') 3 const mkdirpManual = (path, opts, made) => { 5 const parent = dirname(path) 6 if (parent === path) { 7 return opts.mkdirAsync(path, opts).catch(er => { 15 return opts.mkdirAsync(path, opts).then(() => made || path, er => { 18 .then(made => mkdirpManual(path, opts, made)) 21 return opts.statAsync(path).then(st => { 30 const mkdirpManualSync = (path, opt [all...] |
| /third_party/vulkan-loader/tests/framework/ |
| H A D | test_util.cpp | 242 fs::path fixup_backslashes_in_path(fs::path const& in_path) { return fixup_backslashes_in_path(in_path.str()); } in fixup_backslashes_in_path() 244 path& path::operator+=(path const& in) { in operator +=() 248 path& path::operator+=(std::string const& in) { in operator +=() 252 path& path::operator+=(const char* in) { in operator +=() 256 path in operator +=() 343 create_folder(path const& path) create_folder() argument [all...] |