Home
last modified time | relevance | path

Searched refs:paths (Results 1 - 25 of 88) sorted by relevance

1234

/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/text/
H A Dhm_symbol.cpp23 void DrawingHMSymbol::PathOutlineDecompose(const Path& path, std::vector<Path>& paths) in PathOutlineDecompose() argument
25 StaticFactory::PathOutlineDecompose(path, paths); in PathOutlineDecompose()
29 const std::vector<Path>& paths, std::vector<Path>& multPaths) in MultilayerPath()
31 StaticFactory::MultilayerPath(multMap, paths, multPaths); in MultilayerPath()
28 MultilayerPath(const std::vector<std::vector<size_t>>& multMap, const std::vector<Path>& paths, std::vector<Path>& multPaths) MultilayerPath() argument
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/drawing_ndk/cpp/dm/
H A Dshadowutils.cpp45 std::vector<OH_Drawing_Path*>& paths; member
82 void make_path_rect(std::vector<OH_Drawing_Path*>& paths, std::vector<DrawRect>& pathsBounds) in make_path_rect() argument
90 paths.push_back(path1); in make_path_rect()
97 paths.push_back(path2); in make_path_rect()
104 paths.push_back(path3); in make_path_rect()
110 paths.push_back(path4); in make_path_rect()
116 paths.push_back(path5); in make_path_rect()
123 paths.push_back(path6); in make_path_rect()
128 void make_path_star(std::vector<OH_Drawing_Path*>& paths, std::vector<DrawRect>& pathsBounds) in make_path_star() argument
145 paths in make_path_star()
158 destory_path(std::vector<OH_Drawing_Path*>& paths, std::vector<OH_Drawing_Path*>& concavePaths, std::vector<OH_Drawing_Matrix*>& matrices) destory_path() argument
351 std::vector<OH_Drawing_Path*> paths; draw_paths() local
[all...]
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/skia_adapter/
H A Dskia_hm_symbol_test.cpp52 std::vector<Path> paths { path1, path2 }; in HWTEST_F()
53 skiaHmSymbol->PathOutlineDecompose(path, paths); in HWTEST_F()
68 std::vector<Path> paths { path1, path2 }; in HWTEST_F()
70 skiaHmSymbol->MultilayerPath({}, paths, multPaths); in HWTEST_F()
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/skia_adapter/
H A Dskia_hm_symbol.cpp26 void SkiaHMSymbol::PathOutlineDecompose(const Path& path, std::vector<Path>& paths) in PathOutlineDecompose() argument
28 // paths only call push_back, Improve performance! in PathOutlineDecompose()
40 paths.push_back(pathTmp); in PathOutlineDecompose()
45 const std::vector<Path>& paths, std::vector<Path>& multPaths) in MultilayerPath()
50 for (const Path& pathTmp : paths) { in MultilayerPath()
44 MultilayerPath(const std::vector<std::vector<size_t>>& multMap, const std::vector<Path>& paths, std::vector<Path>& multPaths) MultilayerPath() argument
H A Dskia_hm_symbol.h31 static void PathOutlineDecompose(const Path& path, std::vector<Path>& paths);
34 const std::vector<Path>& paths, std::vector<Path>& multPaths);
H A Dskia_static_factory.cpp176 void SkiaStaticFactory::PathOutlineDecompose(const Path& path, std::vector<Path>& paths) in PathOutlineDecompose() argument
178 SkiaHMSymbol::PathOutlineDecompose(path, paths); in PathOutlineDecompose()
182 const std::vector<Path>& paths, std::vector<Path>& multPaths) in MultilayerPath()
184 SkiaHMSymbol::MultilayerPath(multMap, paths, multPaths); in MultilayerPath()
181 MultilayerPath(const std::vector<std::vector<size_t>>& multMap, const std::vector<Path>& paths, std::vector<Path>& multPaths) MultilayerPath() argument
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/draw/hmsymbol_fuzzer/
H A Dhm_symbol_fuzzer.cpp41 std::vector<Path> paths { path1, path2 }; in HmSymbolFuzzTest()
42 hmSymbol.PathOutlineDecompose(path, paths); in HmSymbolFuzzTest()
52 hmSymbol.MultilayerPath(multMap, paths, multPaths); in HmSymbolFuzzTest()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/verify/
H A Dverify_manager_host_impl.cpp317 std::vector<std::string> paths; in VerifyAbc() local
318 paths.reserve(names.size()); in VerifyAbc()
320 paths.emplace_back(rootDir + name); in VerifyAbc()
323 return VerifyAbc(paths); in VerifyAbc()
377 void VerifyManagerHostImpl::RemoveTempFiles(const std::vector<std::string> &paths) in RemoveTempFiles() argument
380 for (const auto &path : paths) { in RemoveTempFiles()
471 std::vector<std::string> paths; in Rollback() local
473 paths.emplace_back(rootDir + name); in Rollback()
476 Rollback(paths); in Rollback()
479 void VerifyManagerHostImpl::Rollback(const std::vector<std::string> &paths) in Rollback() argument
[all...]
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/zip/include/
H A Dzip_writer.h43 // Writes the files at |paths| to the ZIP file and closes this Zip file.
47 bool WriteEntries(const std::vector<std::pair<FilePath, FilePath>> &paths, const OPTIONS &options);
58 // Adds the files at |paths| to the ZIP file. These FilePaths must be relative
60 bool AddEntries(const std::vector<std::pair<FilePath, FilePath>> &paths, const OPTIONS &options);
/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_others/verifymanagerhostimplremovetempfiles_fuzzer/
H A Dverifymanagerhostimplremovetempfiles_fuzzer.cpp32 std::vector<std::string> paths; in DoSomethingInterestingWithMyAPI() local
34 impl.RemoveTempFiles(paths); in DoSomethingInterestingWithMyAPI()
/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_others/verifymanagerhostimplremovetempfilespaths_fuzzer/
H A Dverifymanagerhostimplremovetempfilespaths_fuzzer.cpp31 std::vector<std::string> paths; in DoSomethingInterestingWithMyAPI() local
32 impl.RemoveTempFiles(paths); in DoSomethingInterestingWithMyAPI()
/foundation/multimedia/audio_framework/services/audio_service/server/src/config/
H A Daudio_param_parser.cpp51 if (cfgFiles->paths[i] && *(cfgFiles->paths[i]) != '\0') { in LoadConfiguration()
52 AUDIO_INFO_LOG("extra parameter config file path: %{public}s", cfgFiles->paths[i]); in LoadConfiguration()
53 doc = xmlReadFile(cfgFiles->paths[i], nullptr, 0); in LoadConfiguration()
/foundation/resourceschedule/resource_schedule_service/ressched_executor/plugins/socperf_executor_plugin/framework/src/
H A Dsocperf_executor_wirte_node.cpp63 i < (int32_t)govResNode->paths.size(); i++) { in InitResourceNodeInfo()
64 WriteNode(govResNode->id, govResNode->paths[i], govResNode->levelToStr[govResNode->def][i]); in InitResourceNodeInfo()
100 for (int32_t i = 0; i < (int32_t)govResNode->paths.size(); i++) { in UpdateCurrentValue()
101 WriteNode(resId, govResNode->paths[i], targetStrs[i]); in UpdateCurrentValue()
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/zip/src/
H A Dzip_writer.cpp156 bool ZipWriter::WriteEntries(const std::vector<std::pair<FilePath, FilePath>> &paths, const OPTIONS &options) in WriteEntries() argument
158 return AddEntries(paths, options) && Close(options); in WriteEntries()
161 bool ZipWriter::AddEntries(const std::vector<std::pair<FilePath, FilePath>> &paths, const OPTIONS &options) in AddEntries() argument
166 pendingEntries_.insert(pendingEntries_.end(), paths.begin(), paths.end()); in AddEntries()
/foundation/multimedia/audio_framework/services/audio_policy/server/src/service/config/
H A Daudio_volume_parser.cpp121 if (cfgFiles->paths[i] && *(cfgFiles->paths[i]) != '\0') { in LoadConfig()
122 AUDIO_INFO_LOG("volume config file path:%{public}s", cfgFiles->paths[i]); in LoadConfig()
123 ret = ParseVolumeConfig(cfgFiles->paths[i], streamVolumeInfoMap); in LoadConfig()
/foundation/arkui/ui_lite/test/unittest/image/
H A Dimage_load_unit_test.cpp51 const char* paths[] = { in SetUpTestCase() local
56 imgResFds_[i] = open(paths[i], O_RDONLY); in SetUpTestCase()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/verify/
H A Dverify_manager_host_impl.h42 void Rollback(const std::vector<std::string> &paths);
46 void RemoveTempFiles(const std::vector<std::string> &paths);
/foundation/graphic/graphic_3d/lume/LumeEngine/src/io/
H A Dproxy_filesystem.cpp199 vector<string> paths; in GetUriPaths() local
206 paths.push_back(destination + path); in GetUriPaths()
211 return paths; in GetUriPaths()
/foundation/multimedia/media_library/frameworks/innerkitsimpl/medialibrary_data_extension/src/
H A Dbackground_cloud_file_processor.cpp83 if (downloadFiles.paths.empty()) { in DownloadCloudFiles()
178 downloadFiles.paths.clear(); in ParseDownloadFiles()
179 downloadFiles.paths.push_back(path); in ParseDownloadFiles()
183 downloadFiles.paths.push_back(path); in ParseDownloadFiles()
212 MEDIA_DEBUG_LOG("Try to download %{public}zu cloud files.", downloadFiles.paths.size()); in DownloadCloudFilesExecutor()
213 for (const auto &path : downloadFiles.paths) { in DownloadCloudFilesExecutor()
221 curDownloadPaths_ = downloadFiles.paths; in DownloadCloudFilesExecutor()
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/
H A Dstatic_factory.cpp298 void StaticFactory::PathOutlineDecompose(const Path& path, std::vector<Path>& paths) in PathOutlineDecompose() argument
302 return DDGRStaticFactory::PathOutlineDecompose(path, paths); in PathOutlineDecompose()
305 EngineStaticFactory::PathOutlineDecompose(path, paths); in PathOutlineDecompose()
309 const std::vector<Path>& paths, std::vector<Path>& multPaths) in MultilayerPath()
313 return DDGRStaticFactory::MultilayerPath(multMap, paths, multPaths); in MultilayerPath()
316 EngineStaticFactory::MultilayerPath(multMap, paths, multPaths); in MultilayerPath()
308 MultilayerPath(const std::vector<std::vector<size_t>>& multMap, const std::vector<Path>& paths, std::vector<Path>& multPaths) MultilayerPath() argument
/foundation/distributeddatamgr/relational_store/test/native/rdb/unittest/
H A Drdb_get_store_test.cpp430 std::vector<std::string> paths = { "./" }; in HWTEST_F() local
431 config.SetPluginLibs(paths); in HWTEST_F()
447 std::vector<std::string> paths = { "", "" }; in HWTEST_F() local
448 config.SetPluginLibs(paths); in HWTEST_F()
464 std::vector<std::string> paths = { "", "/data/errPath/libErr.so" }; in HWTEST_F() local
465 config.SetPluginLibs(paths); in HWTEST_F()
/foundation/ability/ability_runtime/test/unittest/cj_test_runner_test/
H A Dcj_test_runner_test.cpp100 std::vector<std::string> paths = {"/data/test/"}; in SetUp() local
101 appLibPaths.emplace("", paths); in SetUp()
/foundation/ability/ability_runtime/test/unittest/cj_runtime_test/
H A Dcj_runtime_test.cpp86 std::vector<std::string> paths = {"/data/test/"}; in HWTEST_F() local
87 appLibPaths.emplace("", paths); in HWTEST_F()
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/text/
H A Dhm_symbol.h142 static void PathOutlineDecompose(const Path& path, std::vector<Path>& paths);
145 const std::vector<Path>& paths, std::vector<Path>& multPaths);
/foundation/filemanagement/app_file_service/tests/unittests/backup_utils/b_filesystem/
H A Db_dir_test.cpp310 vector<string_view> paths; in HWTEST_F() local
311 vector<string> res = BDir::GetDirs(paths); in HWTEST_F()
312 set<string> inc(paths.begin(), paths.end()); in HWTEST_F()

Completed in 10 milliseconds

1234