Home
last modified time | relevance | path

Searched refs:ending (Results 1 - 13 of 13) sorted by relevance

/foundation/arkui/ace_engine/frameworks/core/components/svg/
H A Drosen_render_svg_path.cpp130 SkPath ending; in GetPath() local
138 SkParsePath::FromSVGString(paths_[firstPart - 1].c_str(), &ending); in GetPath()
139 ret = ending.interpolate(path, 1.0f, &out); in GetPath()
143 SkParsePath::FromSVGString(paths_[firstPart].c_str(), &ending); in GetPath()
144 ret = ending.interpolate(path, newWeight, &out); in GetPath()
161 RSRecordingPath ending; in GetPath() local
169 ending.BuildFromSVGString(paths_[firstPart - 1]); in GetPath()
170 ret = out.BuildFromInterpolate(ending, path, 1.0f); in GetPath()
174 ending.BuildFromSVGString(paths_[firstPart]); in GetPath()
175 ret = out.BuildFromInterpolate(ending, pat in GetPath()
[all...]
/foundation/filemanagement/dfs_service/test/unittests/utils/cloud_disk/
H A Dcloud_file_utils_test.cpp137 string ending; in HWTEST_F() local
138 EXPECT_EQ(CloudFileUtils::EndsWith(fullString, ending), true); in HWTEST_F()
141 EXPECT_EQ(CloudFileUtils::EndsWith(fullString, ending), true); in HWTEST_F()
147 string ending = "test@@text##"; in HWTEST_F() local
148 EXPECT_EQ(CloudFileUtils::EndsWith(fullString, ending), false); in HWTEST_F()
/foundation/filemanagement/dfs_service/utils/cloud_disk/src/
H A Dcloud_file_utils.cpp174 bool CloudFileUtils::EndsWith(const string &fullString, const string &ending) in EndsWith() argument
176 if (fullString.length() >= ending.length()) { in EndsWith()
177 return (!fullString.compare(fullString.length() - ending.length(), in EndsWith()
178 ending.length(), in EndsWith()
179 ending)); in EndsWith()
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/draw/
H A Dpath.cpp218 bool Path::Interpolate(const Path& ending, scalar weight, Path& out) in Interpolate() argument
220 return impl_->Interpolate(ending, weight, out); in Interpolate()
223 bool Path::BuildFromInterpolate(const Path& src, const Path& ending, scalar weight) in BuildFromInterpolate() argument
225 return impl_->InitWithInterpolate(src, ending, weight); in BuildFromInterpolate()
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/draw/path_fuzzer/
H A Dpath_fuzzer.cpp67 Path ending; in PathOpFuzzTest() local
70 path1.Interpolate(ending, weight, out); in PathOpFuzzTest()
200 Path ending; in PathFuzzTest004() local
214 path.BuildFromInterpolate(src, ending, weight); in PathFuzzTest004()
/foundation/filemanagement/dfs_service/test/unittests/cloudsync_sa/mock/
H A Dcloud_file_utils_mock.cpp91 bool CloudFileUtils::EndsWith(const string &fullString, const string &ending) in EndsWith() argument
/foundation/filemanagement/dfs_service/utils/inner_api/
H A Dcloud_file_utils.h72 static bool EndsWith(const std::string &fullString, const std::string &ending);
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/draw/
H A Dpath.h165 * ending at (endPtX, endPtY).
178 * @brief Adds cubic from last point towards Point ctrlPt1, then towards Point ctrlPt2, ending at Point endPt.
407 * @param ending Point array averaged with this Point array
408 * @param weight contribution of this Point array, and one minus contribution of ending Point array
412 bool Interpolate(const Path& ending, scalar weight, Path& out);
417 * @param ending The number of point sets of the ending Path.
421 virtual bool BuildFromInterpolate(const Path& src, const Path& ending, scalar weight);
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/draw/
H A Dpath_test.cpp787 Path ending; in HWTEST_F() local
789 path->Interpolate(ending, 0.5f, out); in HWTEST_F()
803 Path ending; in HWTEST_F() local
805 path->Interpolate(ending, 0.2f, out); in HWTEST_F()
/foundation/graphic/graphic_3d/lume/LumeEcsSerializer/Util/src/util/
H A Dio_util.cpp300 auto ending = entry.name.substr(separator_pos); in ReplaceTextInFilesImpl() local
397 auto ending = n.substr(n.find_last_of('.')); in CopyAndRenameFiles() local
399 auto to = PathUtil ::ResolvePath(toUri, filename + ending); in CopyAndRenameFiles()
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/impl_interface/
H A Dpath_impl.h88 virtual bool Interpolate(const Path& ending, scalar weight, Path& out) = 0;
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/skia_adapter/
H A Dskia_path.h87 bool Interpolate(const Path& ending, scalar weight, Path& out) override;
H A Dskia_path.cpp284 bool SkiaPath::Interpolate(const Path& ending, scalar weight, Path& out) in Interpolate() argument
287 auto skPathImpl1 = ending.GetImpl<SkiaPath>(); in Interpolate()

Completed in 9 milliseconds