Home
last modified time | relevance | path

Searched refs:unread_count (Results 1 – 25 of 147) sorted by relevance

123456

/dports/misc/py-powerline-status/powerline-2.8.2/powerline/segments/common/
H A Dmail.py36 unread_count = int(re.search('UNSEEN (\d+)', unread_str).group(1))
37 return unread_count
40 def render_one(unread_count, max_msgs=None, **kwargs): argument
41 if not unread_count:
43 elif type(unread_count) != int or not max_msgs:
45 'contents': str(unread_count),
50 'contents': str(unread_count),
52 'gradient_level': min(unread_count * 100.0 / max_msgs, 100),
/dports/mail/geary/geary-40.0/src/client/sidebar/
H A Dsidebar-count-cell-renderer.vala15 private CountBadge unread_count = new CountBadge(1);
25 unread_count.count = counter;
26 minimum_size = unread_count.get_width(widget) + FormattedConversationData.SPACING;
32 unread_count.count = counter;
35 … int x = cell_area.x + (cell_area.width - unread_count.get_width(widget)) - HORIZONTAL_MARGIN;
36 int y = cell_area.y + ((cell_area.height - unread_count.get_height(widget)) / 2);
37 unread_count.render(widget, ctx, x, y, false);
/dports/net-im/cawbird/cawbird-1.4.2/src/
H A DDMThreadsPage.vala21 public int unread_count {
26 //debug ("Changing unread_count from %d to %d", this._unread_count, value);
115 this.unread_count -= manager.reset_unread_count (user_id);
141 row.unread_count = thread.unread_count;
154 this.unread_count ++;
168 entry.unread_count = thread.unread_count;
248 thread.unread_count).printf (thread.unread_count,
280 int unread_count = manager.reset_unread_count (user_id);
281 this.unread_count -= unread_count;
282 debug ("unread_count -= %d", unread_count);
H A DHomeTimeline.vala120 this.unread_count ++;
155 } else if(stack_size != 0 && unread_count % stack_size == 0
156 && unread_count > 0) {
158 "%d new Tweets!", unread_count).printf (unread_count);
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/sfntly/cpp/src/sfntly/port/
H A Dfile_input_stream.cc143 size_t unread_count = std::min<size_t>(position_, length); in Unread() local
144 fseek(file_, position_ - unread_count, SEEK_SET); in Unread()
145 position_ -= unread_count; in Unread()
147 fseek(file_, position_ - unread_count, SEEK_SET); in Unread()
148 position_ -= unread_count; in Unread()
H A Dmemory_input_stream.cc135 size_t unread_count = std::min<size_t>(position_, length); in Unread() local
136 position_ -= unread_count; in Unread()
138 position_ -= unread_count; in Unread()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/sfntly/cpp/src/sfntly/port/
H A Dfile_input_stream.cc147 size_t unread_count = std::min<size_t>(position_, length); in Unread() local
148 fseek(file_, position_ - unread_count, SEEK_SET); in Unread()
149 position_ -= unread_count; in Unread()
151 fseek(file_, position_ - unread_count, SEEK_SET); in Unread()
152 position_ -= unread_count; in Unread()
H A Dmemory_input_stream.cc139 size_t unread_count = std::min<size_t>(position_, length); in Unread() local
140 position_ -= unread_count; in Unread()
142 position_ -= unread_count; in Unread()
/dports/net/freeswitch/freeswitch-1.10.3.-release/scripts/perl/
H A Dfsconsole.pl47 my %unread_count;
216 $unread_count{$window_id} = 0;
331 $unread_count{$destination_window}++;
361 if($unread_count{$windows{$window}}) {
362 $status_field .= " (" . $unread_count{$windows{$window}} . ")";
/dports/net/freeswitch/freeswitch-1.10.3.-release/scripts/perl/POE-Filter-FSSocket/examples/
H A Dfsconsole.pl47 my %unread_count;
216 $unread_count{$window_id} = 0;
331 $unread_count{$destination_window}++;
361 if($unread_count{$windows{$window}}) {
362 $status_field .= " (" . $unread_count{$windows{$window}} . ")";
/dports/net-im/telepathy-gabble/telepathy-gabble-0.18.4/tests/twisted/
H A Dmail-notification.py130 unread_count = event.args[0]
142 assert unread_count == 2
143 assert stored_unread_count == unread_count
144 assert len(stored_unread_mails) == unread_count
145 assert len(mails_added) == unread_count
269 unread_count = event.args[0]
274 assert unread_count == 2
/dports/net-im/telepathy-gabble/telepathy-gabble-0.18.4/src/
H A Dconn-mail-notif.c69 guint unread_count; member
413 const gchar *url, *unread_count; in store_unread_mails() local
453 unread_count = wocky_node_get_attribute (mailbox, "total-matched"); in store_unread_mails()
455 if (unread_count != NULL) in store_unread_mails()
456 priv->unread_count = (guint)g_ascii_strtoll (unread_count, NULL, 0); in store_unread_mails()
458 priv->unread_count = g_hash_table_size (priv->unread_mails); in store_unread_mails()
461 conn, priv->unread_count, collector.mails_added, in store_unread_mails()
692 self->mail_priv->unread_count = 0; in mail_clients_uninterested_cb()
730 priv->unread_count = 0; in conn_mail_notif_dispose()
824 g_value_set_uint (value, priv->unread_count); in conn_mail_notif_properties_getter()
/dports/net-im/cawbird/cawbird-1.4.2/src/list/
H A DDMThreadEntry.vala59 public int unread_count {
75 if (unread_count == 0)
81 unread_count).printf(unread_count);
/dports/news/nn/nn-6.7.3/
H A Dnewsrc.c994 gh->unread_count = mark_counter; in end_rc_update()
1228 if (gh->unread_count <= 0) { in restore_rc()
1237 return gh->unread_count; in restore_rc()
1248 count = gh->unread_count; in restore_rc()
1316 gh->unread_count = 0; in count_unread_articles()
1374 old_count = gh->unread_count; in add_unread()
1382 gh->unread_count = 0; in add_unread()
1401 gh->unread_count++; in add_unread()
1406 if (gh->unread_count <= 0) { in add_unread()
1407 gh->unread_count = 0; in add_unread()
[all …]
H A Dnn.c236 if (gh->unread_count == 0) in last_group_maint()
241 prompt("Enter %s (%ld unread)? ", gh->group_name, gh->unread_count); in last_group_maint()
246 if (gh->unread_count == 0) in last_group_maint()
283 if (gh->unread_count <= 0) in read_news()
312 } else if (!also_read_articles && gh->unread_count <= 0) { in read_news()
355 if (gh->unread_count <= 0) in read_news()
461 if (gh->unread_count > 0) in catch_up()
H A Dgroup.c191 if (current_group->unread_count <= 0) in print_header()
547 gh->unread_count <= 0 ? " READ" : ""); in goto_group()
809 if (gh->unread_count > 0) in goto_group()
812 if (gh->unread_count > 0 && gh->current_first > entry_first_article) in goto_group()
820 (gh->unread_count > 0) ? "j" : "", in goto_group()
853 if (gh == orig_group || gh->unread_count <= 0) { in goto_group()
1211 (long) (gh->unread_count), in disp_group()
1249 if (gh->unread_count <= 0) in group_overview()
1261 if (amount <= 1 && gh->unread_count <= 0) in group_overview()
/dports/net-im/py-matrix-synapse/synapse-1.50.2/synapse/storage/databases/main/
H A Devent_push_actions.py89 unread_count: int
235 (notif_count, highlight_count, unread_count) = (0, 0, 0)
238 (notif_count, highlight_count, unread_count) = row
256 unread_count += row[1]
260 unread_count=unread_count,
843 unread_count=row[2],
864 unread_count=0,
883 "unread_count": summary.unread_count,
900 summary.unread_count,
1069 unread_count: int
/dports/net/liferea/liferea-1.12.7/plugins/
H A Dbold-unread.py4 unread_count = model.get(iter, 3)
5 cell.set_property("weight", Pango.Weight.BOLD if (unread_count[0] > 0) else Pango.Weight.NORMAL)
/dports/mail/evolution-ews/evolution-ews-3.42.1/src/Microsoft365/camel/
H A Dcamel-m365-store-summary.h75 gint32 unread_count,
86 gint32 unread_count,
133 gint32 unread_count);
H A Dcamel-m365-store-summary.c510 gint32 unread_count, in camel_m365_store_summary_set_folder() argument
524 …er (store_summary, with_hashes_update, id, parent_id, display_name, total_count, unread_count, -1); in camel_m365_store_summary_set_folder()
528 camel_m365_store_summary_set_folder_unread_count (store_summary, id, unread_count); in camel_m365_store_summary_set_folder()
562 gint32 unread_count, in camel_m365_store_summary_update_folder() argument
573 camel_m365_store_summary_set_folder_unread_count (store_summary, id, unread_count); in camel_m365_store_summary_update_folder()
988 gint32 unread_count) in camel_m365_store_summary_set_folder_unread_count() argument
995 …(g_key_file_get_integer (store_summary->priv->key_file, id, "UnreadCount", NULL) != unread_count) { in camel_m365_store_summary_set_folder_unread_count()
996 g_key_file_set_integer (store_summary->priv->key_file, id, "UnreadCount", unread_count); in camel_m365_store_summary_set_folder_unread_count()
1143 gint32 unread_count = 0; in camel_m365_store_summary_build_folder_info_for_id() local
1151 …r (store_summary, id, &full_name, &display_name, NULL, &total_count, &unread_count, &flags, NULL, … in camel_m365_store_summary_build_folder_info_for_id()
[all …]
/dports/net-im/cawbird/cawbird-1.4.2/src/model/
H A DDMThreadsModel.vala22 public int unread_count = 0;
119 int k = thread.unread_count;
120 thread.unread_count = 0;
145 thread.unread_count += amount;
/dports/www/phpbb3/phpBB3/phpbb/notification/method/
H A Dboard.php158 $total_count = $unread_count = 0;
170 $unread_count = (int) $this->db->sql_fetchfield('unread_count');
208 if ($unread_count && $options['all_unread'] && !empty($rowset))
257 'unread_count' => $unread_count,
/dports/net-im/mcabber/mcabber-1.1.2/mcabber/
H A Dhooks.c673 void hk_unread_list_change(guint unread_count, guint attention_count, in hk_unread_list_change() argument
684 if (unread_count == prev_unread && in hk_unread_list_change()
692 str_unread = g_strdup_printf("%u", unread_count); in hk_unread_list_change()
711 prev_unread = unread_count; in hk_unread_list_change()
717 str_unread = g_strdup_printf("%u %u %u %u", unread_count, attention_count, in hk_unread_list_change()
719 hk_ext_cmd("", 'U', (guchar)MIN(255, unread_count), str_unread); in hk_unread_list_change()
/dports/mail/geary/geary-40.0/sql/
H A Dversion-010.sql5 ALTER TABLE FolderTable ADD COLUMN unread_count INTEGER DEFAULT 0;
/dports/net-im/py-matrix-synapse/synapse-1.50.2/synapse/storage/schema/main/delta/58/
H A D15unread_count.sql26 ALTER TABLE event_push_summary ADD COLUMN unread_count BIGINT;

123456