Home
last modified time | relevance | path

Searched refs:is_masks (Results 1 – 9 of 9) sorted by relevance

/dports/net-im/tdlib/td-a53cb30e99f937cfd64e0266fa558785a184a553/td/telegram/
H A DStickersManager.hpp143 STORE_FLAG(sticker_set->is_masks); in store_sticker_set()
195 bool is_masks; in parse_sticker_set() local
207 PARSE_FLAG(is_masks); in parse_sticker_set()
257 sticker_set->is_masks = is_masks; in parse_sticker_set()
277 if (sticker_set->is_masks != is_masks) { in parse_sticker_set()
278 …LOG(ERROR) << "Is masks of " << sticker_set->id << " has changed from \"" << is_masks << "\" to \"" in parse_sticker_set()
279 << sticker_set->is_masks << "\""; in parse_sticker_set()
H A DStickersManager.cpp77 is_masks_ = is_masks; in send()
78 if (is_masks) { in send()
253 is_masks_ = is_masks; in send()
627 if (is_masks) { in send()
982 if (is_masks) { in send()
2742 s->is_masks = is_masks; in on_get_sticker_set()
3803 CHECK(sticker_set->is_masks == is_masks); in on_load_installed_sticker_sets_finished()
5636 pending_new_sticker_set->is_masks = is_masks; in create_new_sticker_set()
5805 bool is_masks = pending_new_sticker_set->is_masks; in on_new_stickers_uploaded() local
6122 for (int is_masks = 0; is_masks < 2; is_masks++) { in send_update_installed_sticker_sets() local
[all …]
H A DStickersManager.h110 vector<StickerSetId> get_installed_sticker_sets(bool is_masks, Promise<Unit> &&promise);
133 void on_get_installed_sticker_sets_failed(bool is_masks, Status error);
167 void on_update_sticker_sets_order(bool is_masks, const vector<StickerSetId> &sticker_set_ids);
172 void on_get_archived_sticker_sets(bool is_masks, StickerSetId offset_sticker_set_id,
188 void reorder_installed_sticker_sets(bool is_masks, const vector<StickerSetId> &sticker_set_ids,
201 void create_new_sticker_set(UserId user_id, string &title, string &short_name, bool is_masks,
277 void reload_installed_sticker_sets(bool is_masks, bool force);
382 bool is_masks = false; variable
399 bool is_masks = false; member
510 void load_installed_sticker_sets(bool is_masks, Promise<Unit> &&promise);
[all …]
H A Dcli.cpp2411 bool is_masks; in on_cmd() local
2414 get_args(args, is_masks, offset_sticker_set_id, limit); in on_cmd()
2416 …td_api::make_object<td_api::getArchivedStickerSets>(is_masks, offset_sticker_set_id, as_limit(limi… in on_cmd()
2545 bool is_masks; in on_cmd() local
2547 get_args(args, is_masks, new_order); in on_cmd()
2548 …send_request(td_api::make_object<td_api::reorderInstalledStickerSets>(is_masks, to_integers<int64>… in on_cmd()
H A DTd.cpp2094 GetInstalledStickerSetsRequest(ActorShared<Td> td, uint64 request_id, bool is_masks) in GetInstalledStickerSetsRequest() argument
2095 : RequestActor(std::move(td), request_id), is_masks_(is_masks) { in GetInstalledStickerSetsRequest()
2117 …GetArchivedStickerSetsRequest(ActorShared<Td> td, uint64 request_id, bool is_masks, int64 offset_s… in GetArchivedStickerSetsRequest() argument
2120 , is_masks_(is_masks) in GetArchivedStickerSetsRequest()
2222 …SearchInstalledStickerSetsRequest(ActorShared<Td> td, uint64 request_id, bool is_masks, string &&q… in SearchInstalledStickerSetsRequest() argument
2223 …: RequestActor(std::move(td), request_id), is_masks_(is_masks), query_(std::move(query)), limit_(l… in SearchInstalledStickerSetsRequest()
2309 … bool is_masks, vector<tl_object_ptr<td_api::InputSticker>> &&stickers, string &&software) in CreateNewStickerSetRequest() argument
2314 , is_masks_(is_masks) in CreateNewStickerSetRequest()
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/SourceFiles/data/stickers/
H A Ddata_stickers_set.cpp51 | (data.is_masks() ? Flag::Masks : Flag()) in ParseStickersSetFlags()
H A Ddata_stickers.cpp1368 auto &order = s.is_masks() ? maskSetsOrderRef() : setsOrderRef(); in newSetReceived()
/dports/net-im/tdlib/td-a53cb30e99f937cfd64e0266fa558785a184a553/td/generate/scheme/
H A Dtd_api.tl2171 …is official @is_animated True, is the stickers in the set are animated @is_masks True, if the stic…
2179 …is official @is_animated True, is the stickers in the set are animated @is_masks True, if the stic…
3896 //@description The list of installed sticker sets was updated @is_masks True, if the list of instal…
3897 updateInstalledStickerSets is_masks:Bool sticker_set_ids:vector<int64> = Update;
5237 //@description Returns a list of installed sticker sets @is_masks Pass true to return mask sticker …
5238 getInstalledStickerSets is_masks:Bool = StickerSets;
5241 getArchivedStickerSets is_masks:Bool offset_sticker_set_id:int64 limit:int32 = StickerSets;
5258 searchInstalledStickerSets is_masks:Bool query:string limit:int32 = StickerSets;
5270 reorderInstalledStickerSets is_masks:Bool sticker_set_ids:vector<int64> = Ok;
5717 //@is_masks True, if stickers are masks. Animated stickers can't be masks
[all …]
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/SourceFiles/api/
H A Dapi_updates.cpp2223 const auto isMasks = d.is_masks(); in feedUpdate()