Home
last modified time | relevance | path

Searched refs:favorite_sticker_ids_ (Results 1 – 2 of 2) sorted by relevance

/dports/net-im/tdlib/td-a53cb30e99f937cfd64e0266fa558785a184a553/td/telegram/
H A DStickersManager.cpp3202 for (auto sticker_id : favorite_sticker_ids_) { in get_stickers()
6593 return favorite_sticker_ids_; in get_favorite_stickers()
6785 if (!favorite_sticker_ids_.empty() && is_equal(favorite_sticker_ids_[0])) { in add_favorite_sticker_impl()
6787 favorite_sticker_ids_[0] = sticker_id; in add_favorite_sticker_impl()
6813 auto it = std::find_if(favorite_sticker_ids_.begin(), favorite_sticker_ids_.end(), is_equal); in add_favorite_sticker_impl()
6814 if (it == favorite_sticker_ids_.end()) { in add_favorite_sticker_impl()
6816 favorite_sticker_ids_.back() = sticker_id; in add_favorite_sticker_impl()
6818 favorite_sticker_ids_.push_back(sticker_id); in add_favorite_sticker_impl()
6820 it = favorite_sticker_ids_.end() - 1; in add_favorite_sticker_impl()
6824 favorite_sticker_ids_[0] = sticker_id; in add_favorite_sticker_impl()
[all …]
H A DStickersManager.h725 vector<FileId> favorite_sticker_ids_; variable