Home
last modified time | relevance | path

Searched refs:pictures_ (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/animation/
H A Dpicture_animation.h72 if (pictures_.empty()) { in AddPicture()
75 pictures_.emplace_back(AceType::MakeRefPtr<Ace::PictureFrame<T>>(duration, pictureInfo)); in AddPicture()
83 pictures_.clear(); in ClearPictures()
98 if (pictures_.empty()) { in AutoScale()
107 for (const auto& picture : pictures_) { in AutoScale()
133 if (pictures_.empty()) { in OnNormalizedTimestampChanged()
138 for (const auto& picture : pictures_) { in OnNormalizedTimestampChanged()
146 UpdateAndNotifyPicture(pictures_.back()); in OnNormalizedTimestampChanged()
150 std::list<RefPtr<PictureFrame<T>>> pictures_; variable
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/image/apng/
H A Dapng_image_animation.cpp27 if (pictures_.empty()) { in AddPicture()
31 pictures_.emplace_back(AceType::MakeRefPtr<Ace::PictureFrame<int32_t>>(duration, pictureInfo)); in AddPicture()
62 if (pictures_.empty()) { in OnNormalizedTimestampChanged()
66 if (currentIndex_ == pictures_.size() - 1) { in OnNormalizedTimestampChanged()
75 if (index >= pictures_.size()) { in OnNormalizedTimestampChanged()
79 auto picture = pictures_[index]; in OnNormalizedTimestampChanged()
H A Dapng_image_animation.h36 pictures_.clear(); in ClearPictures()
51 if (pictures_.empty()) { in AutoScale()
60 for (const auto &picture : pictures_) { in AutoScale()
78 std::vector<RefPtr<PictureFrame<int32_t>>> pictures_; variable