Home
last modified time | relevance | path

Searched refs:conversation (Results 1 – 25 of 5016) sorted by relevance

12345678910>>...201

/dports/www/py-praw/praw-6.2.0/tests/integration/models/reddit/
H A Dtest_modmail.py15 conversation.archive()
17 assert conversation.state == 2
26 conversation.highlight()
28 assert conversation.is_highlighted
35 conversation.mute()
44 conversation.read()
70 conversation.unarchive()
72 assert conversation.state == 1
81 conversation.unhighlight()
90 conversation.unmute()
[all …]
/dports/net-im/dino/dino-0.2.2/libdino/src/service/
H A Dchat_interaction.vala12 public signal void focused_in(Conversation conversation);
51 if (conversation != null) {
59 on_conversation_focused(conversation);
63 on_conversation_unfocused(conversation);
83 selected_conversation = conversation;
84 on_conversation_focused(conversation);
119 last_input_interaction.unset(conversation);
125 if (conversation == null) return;
126 focused_in(conversation);
137 if (conversation == null) return;
[all …]
H A Dmessage_storage.vala29 init_conversation(conversation);
30 messages[conversation].add(message);
34 init_conversation(conversation);
38 if (messages[conversation].size > 0) {
48 init_conversation(conversation);
69 …messages = db.get_messages(conversation.counterpart, conversation.account, Util.get_message_type_f…
79 …messages = db.get_messages(conversation.counterpart, conversation.account, Util.get_message_type_f…
88 init_conversation(conversation);
96 init_conversation(conversation);
104 init_conversation(conversation);
[all …]
H A Dconversation_manager.vala49 add_conversation(conversation);
50 conversation.persist(db);
51 return conversation;
122 if(conversation.active) ret.add(conversation);
132 if (conversation.active) conversation_activated(conversation);
134 if (!conversation.active) {
143 conversation.active = false;
157 if(conversation.active) conversation_deactivated(conversation);
198 if (!conversations[conversation.account].has_key(conversation.counterpart)) {
202 conversations[conversation.account][conversation.counterpart].add(conversation);
[all …]
H A Dcounterpart_interaction_manager.vala57 … if (!typing_since.has_key(conversation) || typing_since[conversation].size == 0) return null;
79 … if (!(typing_since.has_key(conversation) && typing_since[conversation].has_key(jid))) return;
81 typing_since[conversation].unset(jid);
99 if (conversation == null) return;
114 received_state(conversation, state);
116 clear_chat_state(conversation, jid);
122 if (conversation == null) return;
142 …if (conversation.type_ == Conversation.Type.GROUPCHAT || conversation.type_ == Conversation.Type.G…
153 …if (conversation.read_up_to != null && conversation.read_up_to.local_time.compare(message.local_ti…
154 conversation.read_up_to = message;
[all …]
H A Dmessage_correction.vala36 if (conversation != null) {
37 if (last_messages.has_key(conversation)) last_messages[conversation].unset(jid);
62 on_received_correction(conversation, out_message.id);
69 if (conversation.type_ == Conversation.Type.CHAT) {
70 own_jid = conversation.account.full_jid;
72 …m_interactor.get_module(MucManager.IDENTITY).get_own_jid(conversation.counterpart, conversation.ac…
77 return last_messages.has_key(conversation) &&
87 if (!last_messages.has_key(conversation)) {
99 if (conversation.type_ != Conversation.Type.CHAT) {
107 if (!last_messages.has_key(conversation)) {
[all …]
H A Dfile_manager.vala51 file_transfer.account = conversation.account;
53 if (conversation.type_.is_muc_semantic()) {
54 ….get_module(MucManager.IDENTITY).get_own_jid(conversation.counterpart, conversation.account) ?? co…
73 conversation.last_active = file_transfer.time;
74 received_file(file_transfer, conversation);
144 if (conversation == null) return false;
300 file_transfer.account = conversation.account;
302 if (conversation.type_.is_muc_semantic()) {
303 ….get_module(MucManager.IDENTITY).get_own_jid(conversation.counterpart, conversation.account) ?? co…
340 conversation.last_active = file_transfer.time;
[all …]
/dports/net-im/dino/dino-0.2.2/main/src/ui/chat_input/
H A Dedit_history.vala11 private Conversation? conversation;
28 this.conversation = conversation;
49 indices[conversation] = indices[conversation] - 1;
50 text_input.buffer.text = histories[conversation][indices[conversation]];
55 if (indices[conversation] < histories[conversation].size - 1) {
56 indices[conversation] = indices[conversation] + 1;
57 text_input.buffer.text = histories[conversation][indices[conversation]];
62 if (histories[conversation][indices[conversation]] == text_input.buffer.text) return;
63 if (indices[conversation] < histories[conversation].size - 1) {
64 histories[conversation] = histories[conversation].slice(0, indices[conversation] + 1);
[all …]
/dports/x11/gdm/gdm-3.28.4/daemon/
H A Dgdm-session.c202 if (conversation == NULL) { in find_conversation_by_name()
206 return conversation; in find_conversation_by_name()
253 self = conversation->session; in on_authenticate_cb()
286 self = conversation->session; in on_authorize_cb()
708 if (conversation != NULL) { in gdm_session_handle_choice_list_query()
733 if (conversation != NULL) { in gdm_session_handle_info_query()
756 if (conversation != NULL) { in gdm_session_handle_secret_info_query()
1264 return conversation; in begin_verification_conversation()
1840 g_free (conversation); in free_conversation()
2084 conversation->worker_pid = gdm_session_worker_job_get_pid (conversation->job); in start_conversation()
[all …]
/dports/net/samba412/samba-4.12.15/python/samba/tests/emulate/
H A Dtraffic_packet.py62 self.conversation = traffic.Conversation()
63 self.conversation.conversation_id = 1
101 self.conversation,
108 self.conversation,
168 self.conversation,
224 self.conversation,
255 self.conversation,
263 self.conversation,
271 self.conversation,
293 self.conversation,
[all …]
/dports/net-im/dino/dino-0.2.2/libdino/src/entity/
H A Dconversation.vala7 public signal void object_updated(Conversation conversation);
58 id = row[db.conversation.id];
65 active = row[db.conversation.active];
81 var insert = db.conversation.insert()
84 .value(db.conversation.type_, type_)
86 .value(db.conversation.active, active)
142 public bool equals(Conversation? conversation) {
143 if (conversation == null) return false;
144 return equals_func(this, conversation);
152 …return conversation.counterpart.to_string().hash() ^ conversation.account.bare_jid.to_string().has…
[all …]
/dports/net/wireshark-lite/wireshark-3.6.1/epan/
H A Dconversation.c119 conversation->key_ptr->etype, conversation->key_ptr->port1, in conversation_create_from_template()
130 &conversation->key_ptr->addr1, &conversation->key_ptr->addr2, in conversation_create_from_template()
131 conversation->key_ptr->etype, conversation->key_ptr->port1, in conversation_create_from_template()
143 conversation->key_ptr->etype, conversation->key_ptr->port1, in conversation_create_from_template()
950 conversation = in find_conversation()
958 conversation = in find_conversation()
969 conversation = in find_conversation()
995 conversation = in find_conversation()
1004 conversation = in find_conversation()
1095 conversation = in find_conversation()
[all …]
/dports/net/tshark-lite/wireshark-3.6.1/epan/
H A Dconversation.c119 conversation->key_ptr->etype, conversation->key_ptr->port1, in conversation_create_from_template()
130 &conversation->key_ptr->addr1, &conversation->key_ptr->addr2, in conversation_create_from_template()
131 conversation->key_ptr->etype, conversation->key_ptr->port1, in conversation_create_from_template()
143 conversation->key_ptr->etype, conversation->key_ptr->port1, in conversation_create_from_template()
950 conversation = in find_conversation()
958 conversation = in find_conversation()
969 conversation = in find_conversation()
995 conversation = in find_conversation()
1004 conversation = in find_conversation()
1095 conversation = in find_conversation()
[all …]
/dports/net/wireshark/wireshark-3.6.1/epan/
H A Dconversation.c119 conversation->key_ptr->etype, conversation->key_ptr->port1, in conversation_create_from_template()
130 &conversation->key_ptr->addr1, &conversation->key_ptr->addr2, in conversation_create_from_template()
131 conversation->key_ptr->etype, conversation->key_ptr->port1, in conversation_create_from_template()
143 conversation->key_ptr->etype, conversation->key_ptr->port1, in conversation_create_from_template()
950 conversation = in find_conversation()
958 conversation = in find_conversation()
969 conversation = in find_conversation()
995 conversation = in find_conversation()
1004 conversation = in find_conversation()
1095 conversation = in find_conversation()
[all …]
/dports/net/tshark/wireshark-3.6.1/epan/
H A Dconversation.c119 conversation->key_ptr->etype, conversation->key_ptr->port1, in conversation_create_from_template()
130 &conversation->key_ptr->addr1, &conversation->key_ptr->addr2, in conversation_create_from_template()
131 conversation->key_ptr->etype, conversation->key_ptr->port1, in conversation_create_from_template()
143 conversation->key_ptr->etype, conversation->key_ptr->port1, in conversation_create_from_template()
950 conversation = in find_conversation()
958 conversation = in find_conversation()
969 conversation = in find_conversation()
995 conversation = in find_conversation()
1004 conversation = in find_conversation()
1095 conversation = in find_conversation()
[all …]
/dports/mail/geary/geary-40.0/src/engine/app/conversation-monitor/
H A Dapp-conversation-set.vala53 * Constructs a new conversation set.
153 if (conversation != null) {
188 // The conversation could be null if the conversation
192 if (conversation != null) {
293 * conversation, otherwise if in an existing conversation,
295 * conversation.
308 if (conversation != null) {
314 conversation = null;
319 if (conversation == null) {
331 return conversation;
[all …]
/dports/security/keybase/client-v5.7.1/shared/chat/
H A Droutes.tsx1 import ChatConversation from './conversation/container'
2 import ChatEnterPaperkey from './conversation/rekey/enter-paper-key'
4 import ChatAddToChannel from './conversation/info-panel/add-to-channel/container'
13 import ChatInfoPanel from './conversation/info-panel/container'
22 import ChatInstallBot from './conversation/bot/install'
23 import ChatInstallBotPick from './conversation/bot/team-picker'
24 import ChatForwardMsgPick from './conversation/fwd-msg/team-picker'
25 import ChatSearchBot from './conversation/bot/search'
26 import ChatConfirmRemoveBot from './conversation/bot/confirm'
39 ? require('./inbox-and-conversation-2').default
[all …]
/dports/www/moodle310/moodle/message/tests/behat/
H A Dmessage_delete_conversation.feature28 Scenario: Delete a private conversation
34 # Confirm deletion, so conversation should not be there
41 # Check user is deleting private conversation only for them
50 Scenario: Cancel deleting a private conversation
56 # Cancel deletion, so conversation should be there
63 Scenario: Delete a starred conversation
72 # Confirm deletion, so conversation should not be there
88 Scenario: Cancel deleting a starred conversation
99 # Cancel deletion, so conversation should be there
119 And I go back in "view-conversation" message drawer
[all …]
/dports/www/moodle311/moodle/message/tests/behat/
H A Dmessage_delete_conversation.feature28 Scenario: Delete a private conversation
34 # Confirm deletion, so conversation should not be there
41 # Check user is deleting private conversation only for them
50 Scenario: Cancel deleting a private conversation
56 # Cancel deletion, so conversation should be there
63 Scenario: Delete a starred conversation
72 # Confirm deletion, so conversation should not be there
88 Scenario: Cancel deleting a starred conversation
99 # Cancel deletion, so conversation should be there
119 And I go back in "view-conversation" message drawer
[all …]
/dports/www/moodle39/moodle/message/tests/behat/
H A Dmessage_delete_conversation.feature28 Scenario: Delete a private conversation
34 # Confirm deletion, so conversation should not be there
41 # Check user is deleting private conversation only for them
50 Scenario: Cancel deleting a private conversation
56 # Cancel deletion, so conversation should be there
63 Scenario: Delete a starred conversation
72 # Confirm deletion, so conversation should not be there
88 Scenario: Cancel deleting a starred conversation
99 # Cancel deletion, so conversation should be there
119 And I go back in "view-conversation" message drawer
[all …]
/dports/mail/geary/geary-40.0/src/client/conversation-list/
H A Dconversation-list-store.vala66 this.conversation = conversation;
198 if (conversation != null) {
291 conversation,
306 row_map.set(conversation, wrapper);
313 add_conversation(conversation);
342 add_conversation(conversation);
384 return conversation;
403 row_map.unset(conversation);
462 add_conversation(conversation);
467 refresh_conversation(conversation);
[all …]
/dports/net-im/dino/dino-0.2.2/main/src/ui/
H A Dnotifications.vala10 public signal void conversation_selected(Conversation conversation);
23 foreach (Conversation conversation in conversations) {
50 if (!notifications.has_key(conversation)) {
51 notifications[conversation] = new Notification("");
52 …notifications[conversation].set_default_action_and_target_value("app.open-conversation", new Varia…
72 …_interactor.get_module(MucManager.IDENTITY).is_groupchat(conversation.counterpart, conversation.ac…
76 notifications[conversation].set_title(display_name);
77 notifications[conversation].set_body(text);
82 …GLib.Application.get_default().send_notification(conversation.id.to_string(), notifications[conver…
104 …ication.set_default_action_and_target_value("app.open-conversation", new Variant.int32(conversatio…
[all …]
/dports/net-im/dino/dino-0.2.2/main/src/ui/util/
H A Dhelper.vala75 … Util.get_avatar_hex_color(stream_interactor, conversation.account, jid, conversation));
82 …null && avatar_jid.equals_bare(conversation.counterpart) && muc_manager.is_private_room(conversati…
87 … Util.get_avatar_hex_color(stream_interactor, conversation.account, jids[i], conversation));
94 …Gdk.Pixbuf? room_avatar = yield avatar_manager.get_avatar(conversation.account, conversation.count…
97 … Util.get_avatar_hex_color(stream_interactor, conversation.account, conversation.counterpart, conv…
104 …null && avatar_jid.equals_bare(conversation.counterpart) && muc_manager.is_private_room(conversati…
109 … Util.get_avatar_hex_color(stream_interactor, conversation.account, jid, conversation));
124 …return get_groupchat_display_name(stream_interactor, conversation.account, conversation.counterpar…
127 …eam_interactor, conversation, conversation.counterpart), get_groupchat_display_name(stream_interac…
136conversation.nickname != null && participant.equals_bare(conversation.counterpart) && conversation
[all …]
/dports/net-im/dino/dino-0.2.2/main/src/ui/conversation_selector/
H A Dconversation_selector.vala29 add_conversation(conversation);
56 if (!rows.has_key(conversation)) {
57 add_conversation(conversation);
59 this.select_row(rows[conversation]);
63 if (rows.has_key(conversation)) {
70 if (!rows.has_key(conversation)) {
72 rows[conversation] = row;
121 if (rows.has_key(conversation)) {
122 yield rows[conversation].colapse();
123 remove(rows[conversation]);
[all …]
/dports/net-im/ktp-common-internals/ktp-common-internals-21.12.3/KTp/Declarative/
H A Dmainlogmodel.cpp142 setupSignals(item.conversation); in processQueryResults()
158 const Conversation *conversation = m_logItems.at(row).conversation; in data() local
177 if (conversation->personData()->isValid()) { in data()
187 if (conversation->isValid()) { in data()
189 return conversation->hasUnreadMessages(); in data()
286 if (conversation->isValid() && !conversation->textChannel().isNull()) { in startChat()
427 item.conversation = conversation; in handleChannel()
428 setupSignals(conversation); in handleChannel()
431 conversation->setTextChannel(channel); in handleChannel()
462 if (!conversation || !conversation->isValid()) { in onConversationChanged()
[all …]

12345678910>>...201