| /third_party/gn/infra/recipes/gn.expected/ |
| H A D | ci_mac.json | 118 "/path/to/tmp/json" 163 "/path/to/tmp/json" 248 "--show-sdk-path" 262 "name": "debug.xcrun sdk-path", 265 "@@@STEP_LOG_LINE@raw_io.output_text[sdk-path]@/some/xcode/path@@@", 266 "@@@STEP_LOG_END@raw_io.output_text[sdk-path]@@@" 317 "CFLAGS": "--target=x86_64-apple-darwin --sysroot=/some/xcode/path -nostdinc++ -cxx-isystem [CACHE]/macos_sdk/XCode.app/include/c++/v1", 319 "LDFLAGS": "--target=x86_64-apple-darwin --sysroot=/some/xcode/path" 348 "CFLAGS": "--target=x86_64-apple-darwin --sysroot=/some/xcode/path [all...] |
| /third_party/mesa3d/src/compiler/nir/ |
| H A D | nir_opt_find_array_copies.c | 35 /* The index of the first read of the source path that's part of the copy 36 * we're matching. If the last write to the source path is after this, we 166 node_for_path(nir_deref_path *path, struct match_state *state) in node_for_path() argument 169 for (nir_deref_instr **instr = path->path; *instr; instr++) in node_for_path() 176 node_for_path_with_wildcard(nir_deref_path *path, unsigned wildcard_idx, in node_for_path_with_wildcard() argument 181 for (nir_deref_instr **instr = path->path; *instr; instr++, idx++) { in node_for_path_with_wildcard() 258 /* Given a deref path, find all the leaf deref nodes that alias it. */ 261 foreach_aliasing_node(nir_deref_path *path, in foreach_aliasing_node() argument 294 build_wildcard_deref(nir_builder *b, nir_deref_path *path, unsigned wildcard_idx) build_wildcard_deref() argument [all...] |
| /third_party/littlefs/tests/ |
| H A D | test_alloc.toml | 22 char path[1024]; 23 sprintf(path, "breakfast/%s", names[n]); 24 lfs_file_open(&lfs, &files[n], path, 43 char path[1024]; 44 sprintf(path, "breakfast/%s", names[n]); 46 lfs_file_open(&lfs, &file, path, LFS_O_RDONLY) => 0; 74 char path[1024]; 75 sprintf(path, "breakfast/%s", names[n]); 77 lfs_file_open(&lfs, &file, path, 94 char path[102 [all...] |
| /third_party/node/deps/v8/tools/dev/ |
| H A D | gm.py | 124 for path in os.environ["PATH"].split(os.pathsep): 125 if os.path.exists(os.path.join(path, cmd)): 126 return os.path.join(path, cmd) 138 cipd_bin = os.path.join(os.path.dirname(goma), ".cipd_bin") 139 if not os.path [all...] |
| /third_party/node/test/common/ |
| H A D | wpt.js | 7 const path = require('path'); 151 constructor(path) { 152 this.path = path; 161 const base = path.dirname(from); 163 fixtures.path('wpt', url) : 164 fixtures.path('wpt', base, url); 169 * @param {string} from the path of the file loading this resource, 211 const result = path [all...] |
| /third_party/vk-gl-cts/external/vulkan-docs/src/images/ |
| H A D | primitive_topology_line_strip.svg | 29 <path 35 <inkscape:path-effect 37 id="path-effect17318" 54 <path 60 <inkscape:path-effect 68 id="path-effect16956" 79 <path 85 <inkscape:path-effect 87 id="path-effect16309" 95 <inkscape:path [all...] |
| /third_party/python/Lib/test/ |
| H A D | test_sysconfig.py | 31 self.sys_path = sys.path[:] 45 self.join = os.path.join 46 self.isabs = os.path.isabs 47 self.splitdrive = os.path.splitdrive 51 for var in ('MACOSX_DEPLOYMENT_TARGET', 'PATH'): 58 sys.path[:] = self.sys_path 68 os.path.join = self.join 69 os.path.isabs = self.isabs 70 os.path.splitdrive = self.splitdrive 88 path [all...] |
| /third_party/pulseaudio/src/modules/bluetooth/ |
| H A D | backend-ofono.c | 64 char *path; member 163 pa_assert_se(m = dbus_message_new_method_call(t->owner, t->path, "org.ofono.HandsfreeAudioCard", method)); in card_send() 247 static void hf_audio_agent_card_removed(pa_bluetooth_backend *backend, const char *path); 256 hf_audio_agent_card_removed(card->backend, card->path); in device_unlink_cb() 261 static struct hf_audio_card *hf_audio_card_new(pa_bluetooth_backend *backend, const char *path) { in hf_audio_card_new() argument 264 card->path = pa_xstrdup(path); in hf_audio_card_new() 284 pa_xfree(card->path); in hf_audio_card_free() 361 pa_log_info("Transport %s already released", t->path); in hf_audio_agent_transport_release() 371 static void hf_audio_agent_card_found(pa_bluetooth_backend *backend, const char *path, DBusMessageIte argument 439 hf_audio_agent_card_removed(pa_bluetooth_backend *backend, const char *path) hf_audio_agent_card_removed() argument 477 const char *path; hf_audio_agent_get_cards_reply() local 549 const char *path = HF_AUDIO_AGENT_PATH; hf_audio_agent_register() local 567 const char *path = HF_AUDIO_AGENT_PATH; hf_audio_agent_unregister() local 678 const char *sender, *path; hf_audio_agent_new_connection() local 732 const char *path, *interface, *member; hf_audio_agent_handler() local [all...] |
| /foundation/graphic/graphic_3d/lume/LumeEngine/src/io/ |
| H A D | path_tools.h | 25 * Checks if the path is "absolute". ie. rooted. starts with "/" 28 bool IsRelative(BASE_NS::string_view path); 30 * Extracts protocol and path from uri. not fully compliant parsing. 33 bool ParseUri(BASE_NS::string_view uri, BASE_NS::string_view& protocol, BASE_NS::string_view& path); 34 /** Normalize Path. 35 * Removes dot segments from "absolute" path. if the path does not start at "/", it is changed accordingly. 36 * @return Path with out dot segments, or empty if more ".." dotsegments than segments. 38 BASE_NS::string NormalizePath(BASE_NS::string_view path); 48 void SplitPath(BASE_NS::string_view pathIn, BASE_NS::string_view& drive, BASE_NS::string_view& path, [all...] |
| /foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/skia_adapter/ |
| H A D | skia_hm_symbol_test.cpp | 49 Path path; in HWTEST_F() local 50 Path path1; in HWTEST_F() 51 Path path2; in HWTEST_F() 52 std::vector<Path> paths { path1, path2 }; in HWTEST_F() 53 skiaHmSymbol->PathOutlineDecompose(path, paths); in HWTEST_F() 66 Path path1; in HWTEST_F() 67 Path path2; in HWTEST_F() 68 std::vector<Path> paths { path1, path2 }; in HWTEST_F() 69 std::vector<Path> multPath in HWTEST_F() [all...] |
| /third_party/node/test/parallel/ |
| H A D | test-macos-app-sandbox.js | 12 const path = require('path'); 20 const appBundlePath = path.join(tmpdir.path, 'node_sandboxed.app'); 21 const appBundleContentPath = path.join(appBundlePath, 'Contents'); 22 const appExecutablePath = path.join( 33 fs.mkdirSync(path.join(appBundleContentPath, 'MacOS')); 35 fixtures.path('macos-app-sandbox', 'Info.plist'), 36 path.join(appBundleContentPath, 'Info.plist')); 45 '--entitlements', fixtures.path( [all...] |
| H A D | test-net-server-listen-path.js | 21 return `${common.PIPE}-listen-path-${counter++}`; 24 // Test listen(path) 32 // Test listen({path}) 36 .listen({ path: handlePath }) 40 // Test listen(path, cb) 47 // Test listen(path, cb) 51 .listen({ path: handlePath }, closeServer()); 60 path: handlePath, 76 const server1 = net.createServer().listen({ path: handlePath }, () => { 81 path [all...] |
| H A D | test-snapshot-weak-reference.js | 10 const path = require('path'); 14 const blobPath = path.join(tmpdir.path, 'snapshot.blob'); 27 cwd: tmpdir.path 34 const stats = fs.statSync(path.join(tmpdir.path, 'snapshot.blob')); 45 cwd: tmpdir.path, 59 runTest(fixtures.path('snapshot', 'weak-reference.js')); 60 runTest(fixtures.path('snapsho [all...] |
| /third_party/node/test/addons/load-long-path/ |
| H A D | test.js | 7 const path = require('path'); 13 // Make a path that is more than 260 chars long. 16 let addonDestinationDir = path.resolve(tmpdir.path); 19 addonDestinationDir = path.join(addonDestinationDir, 'x'.repeat(30)); 22 const addonPath = path.join(__dirname, 26 const addonDestinationPath = path.join(addonDestinationDir, 'binding.node'); 34 // Attempt to load at long path destination 44 // Copy binary to long path destinatio [all...] |
| /third_party/node/deps/npm/node_modules/@npmcli/run-script/lib/ |
| H A D | set-path.js | 1 const { resolve, dirname, delimiter } = require('path') 2 // the path here is relative, even though it does not need to be 6 // Windows typically calls its PATH environ 'Path', but this is not 10 const PATH = Object.keys(env).filter(p => /^path$/i.test(p) && env[p]) 29 pathArr.push(nodeGypPath, PATH) 33 // XXX include the node-gyp-bin path somehow? Probably better for 35 // the PATH environ, since that's preserved anyway. 37 if (/^path [all...] |
| /third_party/ltp/testcases/kernel/syscalls/statvfs/ |
| H A D | statvfs02.c | 14 * - EFAULT when path points to an invalid address. 15 * - ELOOP when too many symbolic links were encountered in translating path. 16 * - ENAMETOOLONG when path is too long. 17 * - ENOENT when the file referred to by path does not exist. 18 * - ENOTDIR a component of the path prefix of path is not a directory. 32 char *path; member 54 if (tcases[i].path == (char *)-1) in setup() 55 tcases[i].path = tst_get_bad_addr(NULL); in setup() 63 TST_EXP_FAIL(statvfs(tc->path, t in run() [all...] |
| /third_party/skia/tools/ |
| H A D | find_run_binary.py | 37 """Returns path to an existing program binary. 43 Absolute path to the program binary, as a string. 48 trunk_path = os.path.abspath(os.path.join(os.path.dirname(__file__), 50 possible_paths = [os.path.join(trunk_path, 'out', 'Release', program), 51 os.path.join(trunk_path, 'out', 'Debug', program), 52 os.path.join(trunk_path, 'out', 'Release', 54 os.path.join(trunk_path, 'out', 'Debug', 57 if os.path [all...] |
| /third_party/skia/tools/svg/ |
| H A D | svg_downloader.py | 15 PARENT_DIR = os.path.dirname(os.path.realpath(__file__)) 23 common_prefix = os.path.commonprefix(lines) 30 dest_dir = os.path.join(output_dir, os.path.dirname(rel_file)) 34 dest_file = os.path.join(dest_dir, prefix + os.path.basename(file_url)) 35 if not os.path.exists(dest_dir): 46 help='Path to the text file containing URLs. Each line should contain a ' 48 default=os.path [all...] |
| /third_party/skia/site/docs/dev/design/conical/ |
| H A D | lemma4.svg | 20 <path d="M 0 0 L 385 0 L 385 303 L 0 303 L 0 0 z"/> 25 <path d="M 65.171875 205.359375 Q 64.421875 205.359375 64.03125 206.109375 Q 63.65625 206.859375 63.65625 208.359375 Q 63.65625 209.859375 64.03125 210.609375 Q 64.421875 211.359375 65.171875 211.359375 Q 65.953125 211.359375 66.328125 210.609375 Q 66.71875 209.859375 66.71875 208.359375 Q 66.71875 206.859375 66.328125 206.109375 Q 65.953125 205.359375 65.171875 205.359375 z M 65.171875 204.578125 Q 66.40625 204.578125 67.046875 205.546875 Q 67.703125 206.515625 67.703125 208.359375 Q 67.703125 210.203125 67.046875 211.171875 Q 66.40625 212.140625 65.171875 212.140625 Q 63.953125 212.140625 63.296875 211.171875 Q 62.65625 210.203125 62.65625 208.359375 Q 62.65625 206.515625 63.296875 205.546875 Q 63.953125 204.578125 65.171875 204.578125 z"/> 30 <path d="M 56.63336452454984 198.05787425931192 L 56.63336452454984 202.05787425931192"/> 35 <path d="M 123.171875 205.359375 Q 122.421875 205.359375 122.03125 206.109375 Q 121.65625 206.859375 121.65625 208.359375 Q 121.65625 209.859375 122.03125 210.609375 Q 122.421875 211.359375 123.171875 211.359375 Q 123.953125 211.359375 124.328125 210.609375 Q 124.71875 209.859375 124.71875 208.359375 Q 124.71875 206.859375 124.328125 206.109375 Q 123.953125 205.359375 123.171875 205.359375 z M 123.171875 204.578125 Q 124.40625 204.578125 125.046875 205.546875 Q 125.703125 206.515625 125.703125 208.359375 Q 125.703125 210.203125 125.046875 211.171875 Q 124.40625 212.140625 123.171875 212.140625 Q 121.953125 212.140625 121.296875 211.171875 Q 120.65625 210.203125 120.65625 208.359375 Q 120.65625 206.515625 121.296875 205.546875 Q 121.953125 204.578125 123.171875 204.578125 z M 127.4248046875 210.765625 L 128.4560546875 210.765625 L 128.4560546875 212 L 127.4248046875 212 L 127.4248046875 210.765625 z M 130.619140625 204.703125 L 134.494140625 204.703125 L 134.494140625 205.546875 L 131.525390625 205.546875 L 131.525390625 207.328125 Q 131.744140625 207.25 131.947265625 207.21875 Q 132.166015625 207.1875 132.384765625 207.1875 Q 133.603515625 207.1875 134.306640625 207.859375 Q 135.025390625 208.515625 135.025390625 209.65625 Q 135.025390625 210.84375 134.291015625 211.5 Q 133.572265625 212.140625 132.228515625 212.140625 Q 131.775390625 212.140625 131.291015625 212.0625 Q 130.822265625 211.984375 130.306640625 211.828125 L 130.306640625 210.84375 Q 130.759765625 211.078125 131.228515625 211.203125 Q 131.697265625 211.3125 132.212890625 211.3125 Q 133.056640625 211.3125 133.541015625 210.875 Q 134.041015625 210.421875 134.041015625 209.65625 Q 134.041015625 208.90625 133.541015625 208.46875 Q 133.056640625 208.015625 132.212890625 208.015625 Q 131.822265625 208.015625 131.416015625 208.109375 Q 131.025390625 208.1875 130.619140625 208.375 L 130.619140625 204.703125 z"/> 40 <path d="M 127.30951231601955 198.05787425931192 L 127.30951231601955 202.05787425931192"/> 45 <path d="M 196.234375 211.171875 L 197.859375 211.171875 L 197.859375 205.609375 L 196.09375 205.953125 L 196.09375 205.0625 L 197.84375 204.703125 L 198.828125 204.703125 L 198.828125 211.171875 L 200.4375 211.171875 L 200.4375 212 L 196.234375 212 L 196.234375 211.171875 z"/> 50 <path d="M 197.98566010748925 198.05787425931192 L 197.98566010748925 202.05787425931192"/> 55 <path d="M 262.234375 211.171875 L 263.859375 211.171875 L 263.859375 205.609375 L 262.09375 205.953125 L 262.09375 205.0625 L 263.84375 204.703125 L 264.828125 204.703125 L 264.828125 211.171875 L 266.4375 211.171875 L 266.4375 212 L 262.234375 212 L 262.234375 211.171875 z M 268.4248046875 210.765625 L 269.4560546875 210.765625 L 269.4560546875 212 L 268.4248046875 212 L 268.4248046875 210.765625 z M 271.619140625 204.703125 L 275.494140625 204.703125 L 275.494140625 205.546875 L 272.525390625 205.546875 L 272.525390625 207.328125 Q 272.744140625 207.25 272.947265625 207.21875 Q 273.166015625 207.1875 273.384765625 207.1875 Q 274.603515625 207.1875 275.306640625 207.859375 Q 276.025390625 208.515625 276.025390625 209.65625 Q 276.025390625 210.84375 275.291015625 211.5 Q 274.572265625 212.140625 273.228515625 212.140625 Q 272.775390625 212.140625 272.291015625 212.0625 Q 271.822265625 211.984375 271.306640625 211.828125 L 271.306640625 210.84375 Q 271.759765625 211.078125 272.228515625 211.203125 Q 272.697265625 211.3125 273.212890625 211.3125 Q 274.056640625 211.3125 274.541015625 210.875 Q 275.041015625 210.421875 275.041015625 209.65625 Q 275.041015625 208.90625 274.541015625 208.46875 Q 274.056640625 208.015625 273.212890625 208.015625 Q 272.822265625 208.015625 272.416015625 208.109375 Q 272.025390625 208.1875 271.619140625 208.375 L 271.619140625 204.703125 z"/> 60 <path d="M 268.66180789895895 198.05787425931192 L 268.66180789895895 202.05787425931192"/> 65 <path [all...] |
| /foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/gauge/ |
| H A D | gauge_modifier.cpp | 288 RSPath path; in DrawGauge() local 290 RSRecordingPath path; in DrawGauge() local 296 path.AddArc(rRect, data.startDegree - QUARTER_CIRCLE, data.sweepDegree); in DrawGauge() 297 canvas.DrawPath(path); in DrawGauge() 304 RSPath path; in DrawIndicator() local 306 RSRecordingPath path; in DrawIndicator() 310 path.MoveTo(pathStartVertexX, pathStartVertexY); in DrawIndicator() 311 path.LineTo(pathStartVertexX - EDGE, pathStartVertexY + EDGE); in DrawIndicator() 312 path.LineTo(pathStartVertexX - EDGE, pathStartVertexY + EDGE + HEIGHT_OFFSET); in DrawIndicator() 313 path in DrawIndicator() 410 RSPath path; PaintMonochromeCircular() local 501 RSPath path; PaintSingleSegmentGradientCircular() local 546 RSPath path; PaintSingleSegmentGradientCircularShadow() local 657 RSPath path; DrawSingleSegmentGradient() local 805 RSPath path; NewDrawIndicator() local 871 CreateDefaultTrianglePath( float pathStartVertexX, float pathStartVertexY, float radius, RSPath& path) CreateDefaultTrianglePath() argument 909 GetDrawPath(RSPath& path, RenderRingInfo& data, float startAngle, float sweepAngle) GetDrawPath() argument [all...] |
| /third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/regex/ |
| H A D | ResultSpec.java | 51 // bundle (i.e. those sharing the same resource bundle path "key"). Resource bundles 59 // Note that the currently uses the String representation of the resource bundle path (key) 62 // separator in the string representation of the path). The string form of a path is a bad 64 // rare case. However changing this will have the effect of reodering path elements, which 79 // Resource bundle path specification with placeholders (e.g. "/foo/$1/bar") exactly as it 91 // the resource bundle path specification). 121 * Transforms a path/value into a sequence of results. The given matcher has successfully 122 * matched the path and contains the captured arguments corresponding to $1..$N in the 137 // The first unquoted argument in any resource bundle path declaratio in transform() 258 getResultPath(CldrPath path, List<String> args, DynamicVars varLookupFn) getResultPath() argument 408 AbstractResult(RbPath key, Iterable<String> values, Optional<CldrPath> path) AbstractResult() argument 471 MatchedResult(RbPath key, Iterable<String> values, CldrPath path) MatchedResult() argument [all...] |
| /foundation/multimedia/media_library/frameworks/innerkitsimpl/medialibrary_data_extension/src/ |
| H A D | medialibrary_object_utils.cpp | 89 NativeAlbumAsset MediaLibraryObjectUtils::GetDirAsset(const string &path) in GetDirAsset() argument 92 if (path.empty()) { in GetDirAsset() 93 MEDIA_ERR_LOG("Path is empty, create failed!"); in GetDirAsset() 105 int32_t dirId = CreateDirWithPath(path); in GetDirAsset() 122 int32_t MediaLibraryObjectUtils::DeleteInvalidRowInDb(const string &path) in DeleteInvalidRowInDb() argument 124 if (GetIdByPathFromDb(path) < 0) { in DeleteInvalidRowInDb() 125 // path is not in database, no need to delete in DeleteInvalidRowInDb() 129 if (MediaFileUtils::IsFileExists(path)) { in DeleteInvalidRowInDb() 135 if (DeleteInfoByPathInDb(deleteCmd, path) != E_SUCCESS) { in DeleteInvalidRowInDb() 207 NativeAlbumAsset &dirAsset, string &path, int32_ in BuildFileAsset() 206 BuildFileAsset(MediaLibraryCommand &cmd, FileAsset &fileAsset, NativeAlbumAsset &dirAsset, string &path, int32_t &mediaType) BuildFileAsset() argument 259 string path; CreateFileObj() local 345 SetDirValuesByPath(ValuesBucket &values, const string &path, int32_t parentId) SetDirValuesByPath() argument 391 string path = dirPath; InsertDirToDbRecursively() local 531 InvalidateThumbnail(const string &id, const string &tableName, const string &path) InvalidateThumbnail() argument 818 string path = MediaFileUtils::UpdatePath(fileAsset->GetPath(), fileAsset->GetUri()); OpenFile() local 837 ScanFileAsync(const string &path, const string &id, MediaLibraryApi api) ScanFileAsync() argument 861 ScanFileSyncWithoutAlbumUpdate(const string &path, const string &id, MediaLibraryApi api) ScanFileSyncWithoutAlbumUpdate() argument 915 ScanFile(const string &path, MediaLibraryApi api) ScanFile() argument 1081 GetRelativePathFromFilePath(const string &path) GetRelativePathFromFilePath() argument 1179 GetIdByPathFromDb(const string &path) GetIdByPathFromDb() argument 1237 DeleteInfoByPathInDb(MediaLibraryCommand &cmd, const string &path) DeleteInfoByPathInDb() argument 1285 ModifyInfoByPathInDb(MediaLibraryCommand &cmd, const string &path) ModifyInfoByPathInDb() argument 1405 IsFileExistInDb(const string &path) IsFileExistInDb() argument 1580 GetRelativePathFromPath(const string &path) GetRelativePathFromPath() argument [all...] |
| /foundation/ability/idl_tool/test/sa_test/ |
| H A D | test_base.py | 33 self.idl_file = os.path.join(self.working_dir, "foo", "IFoo.idl") 34 self.output_dir = os.path.join(self.working_dir, "out") 35 self.target_dir = os.path.join(self.working_dir, "target") 46 current_path = os.path.dirname(os.path.abspath(__file__)) 47 return os.path.join(current_path, os.path.splitext(os.path.basename(self._file_name))[0]) 56 self.output_dir = os.path.join(self.working_dir, output_dir) 59 self.target_dir = os.path [all...] |
| /foundation/arkui/ace_engine/frameworks/core/components/svg/ |
| H A D | rosen_render_svg_path.cpp | 98 void RosenRenderSvgPath::UpdateMotion(const std::string& path, const std::string& rotate, double percent) in UpdateMotion() argument 105 RosenSvgPainter::UpdateMotionMatrix(rsNode, path, rotate, percent); in UpdateMotion() 111 SkPath path; in GetPaintBounds() local 112 GetPath(path); in GetPaintBounds() 113 auto& bounds = path.getBounds(); in GetPaintBounds() 129 SkPath path; in GetPath() local 137 SkParsePath::FromSVGString(paths_[firstPart].c_str(), &path); in GetPath() 139 ret = ending.interpolate(path, 1.0f, &out); in GetPath() 142 SkParsePath::FromSVGString(paths_[firstPart + 1].c_str(), &path); in GetPath() 144 ret = ending.interpolate(path, newWeigh in GetPath() 160 RSRecordingPath path; GetPath() local [all...] |
| /foundation/multimedia/ringtone_library/test/unittest/ringtone_utils_test/src/ |
| H A D | ringtone_file_utils_test.cpp | 30 const string PATH = "ringtone/audio"; member 47 auto str = RingtoneFileUtils::SplitByChar(PATH, SLASH_CHAR); in HWTEST_F() 54 auto str = RingtoneFileUtils::SplitByChar(PATH, star); in HWTEST_F() 60 const string path = "ringtone/audio.mp3"; in HWTEST_F() local 62 auto str = RingtoneFileUtils::GetExtensionFromPath(path); in HWTEST_F() 68 auto str = RingtoneFileUtils::GetExtensionFromPath(PATH); in HWTEST_F() 74 const string path = "/storage/media/100"; in HWTEST_F() local 75 auto ret = RingtoneFileUtils::OpenFile(path, RINGTONE_FILEMODE_WRITEONLY); in HWTEST_F() 77 ret = RingtoneFileUtils::OpenFile(path, "v"); in HWTEST_F() 99 auto str = RingtoneFileUtils::StartsWith(PATH, prefi in HWTEST_F() 187 const string path = "ringtoneFileUtils_RemoveDirectory_Test_001"; HWTEST_F() local 195 const string path = "ringtoneFileUtils_RemoveDirectory_Test_001"; HWTEST_F() local [all...] |