Home
last modified time | relevance | path

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

123

/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...]
/third_party/python/Tools/c-analyzer/c_parser/parser/
H A D_compound_decl_body.py55 ending,
110 if ending == ',':
128 ending = None
129 while ending != '}':
142 name, init, ending,
145 ending = '}'
/third_party/node/test/parallel/
H A Dtest-stream-writableState-ending.js10 function testStates(ending, finished, ended) {
11 assert.strictEqual(writable._writableState.ending, ending);
H A Dtest-child-process-fork-net.js74 debug(`[${id}] ending ${i}/${needEnd.length}`);
80 debug(`[${id}] process disconnect, ending`);
82 debug(`[${id}] ending ${i}/${needEnd.length}`);
H A Dtest-net-server-max-connections-close-makes-more-available.js42 console.error(`ending ${index}`);
/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()
/third_party/node/src/
H A Dinspector_profiler.h54 // Return if the profile is ending and the response can be parsed.
55 virtual bool ending() const = 0;
90 bool ending() const override { return ending_; }
114 bool ending() const override { return ending_; }
134 bool ending() const override { return ending_; }
/third_party/node/lib/internal/streams/
H A Dwritable.js107 this.ending = false;
321 if (state.ending) {
491 const needDrain = !state.ending && !stream.destroyed && state.length === 0 &&
626 } else if (!state.errored && !state.ending) {
633 state.ending = true;
654 return (state.ending &&
797 !w.ending && !w.ended;
831 return this._writableState ? this._writableState.ending : false;
840 return !wState.destroyed && !wState.ending && wState.needDrain;
H A Dduplex.js72 this._writableState.ending = true;
/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()
/third_party/node/lib/internal/http2/
H A Dcompat.js480 ending: false,
509 return state.ending;
514 return state.ending;
734 if (state.ending) {
767 if ((state.closed || state.ending) &&
779 state.ending = true;
833 endStream: state.ending,
479 ending: false, global() property
/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()
/base/telephony/core_service/utils/vcard/src/
H A Dvcard_utils.cpp141 bool VCardUtils::EndWith(const std::string &fullString, const std::string &ending) in EndWith() argument
143 if (fullString.length() < ending.length()) { in EndWith()
147 std::string extractedEnding = fullString.substr(fullString.length() - ending.length()); in EndWith()
149 return extractedEnding == ending; in EndWith()
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_string.h137 void SetLineEndings (char ending);
H A Ddng_string.cpp1815 void dng_string::SetLineEndings (char ending) in SetLineEndings() argument
1837 if (ending) in SetLineEndings()
1839 *(dPtr++) = ending; in SetLineEndings()
1848 if (ending) in SetLineEndings()
1850 *(dPtr++) = ending; in SetLineEndings()
/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);
/base/telephony/core_service/utils/vcard/include/
H A Dvcard_utils.h31 static bool EndWith(const std::string &fullString, const std::string &ending);
/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/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()
/third_party/mesa3d/src/mesa/main/
H A Dversion.c42 * Scans 'string' to see if it ends with 'ending'.
45 check_for_ending(const char *string, const char *ending) in check_for_ending() argument
48 const size_t len2 = strlen(ending); in check_for_ending()
53 return strcmp(string + (len1 - len2), ending) == 0; in check_for_ending()
/third_party/skia/experimental/tools/
H A Dpdf-comparison.py107 def getfilesoftype(directory, ending):
111 if f.endswith(ending):
/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;

Completed in 17 milliseconds

123