HomeSort by relevance Sort by last modified time
    Searched full:unread_count (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
file_input_stream.cc 143 size_t unread_count = std::min<size_t>(position_, length); local
144 fseek(file_, position_ - unread_count, SEEK_SET);
145 position_ -= unread_count;
147 fseek(file_, position_ - unread_count, SEEK_SET);
148 position_ -= unread_count;
memory_input_stream.cc 135 size_t unread_count = std::min<size_t>(position_, length); local
136 position_ -= unread_count;
138 position_ -= unread_count;
  /external/sfntly/cpp/src/sfntly/port/
file_input_stream.cc 141 size_t unread_count = std::min<size_t>(position_, length); local
142 fseek(file_, position_ - unread_count, SEEK_SET);
143 position_ -= unread_count;
145 fseek(file_, position_ - unread_count, SEEK_SET);
146 position_ -= unread_count;
memory_input_stream.cc 133 size_t unread_count = std::min<size_t>(position_, length); local
134 position_ -= unread_count;
136 position_ -= unread_count;
  /external/chromium_org/chrome/browser/ui/cocoa/notifications/
message_center_tray_bridge.mm 116 size_t unread_count = message_center_->UnreadNotificationCount();
118 [status_item_view_ setUnreadCount:unread_count withQuietMode:quiet_mode];
120 if (unread_count > 0) {
121 base::string16 unread_count_string = base::FormatNumber(unread_count);
  /external/chromium_org/ash/system/web_notification/
web_notification_tray.cc 131 void SetUnreadCount(int unread_count) {
134 unread_count_ = unread_count;
137 unread_label_->SetText((unread_count > 9) ?
139 base::FormatNumber(unread_count));
  /external/chromium_org/ui/message_center/
notification_list.cc 306 size_t unread_count = 0; local
310 ++unread_count;
312 return unread_count;
message_center_impl.cc 400 : unread_count(0) {}
411 unread_count = 0;
416 ++unread_count;
527 return notification_cache_.unread_count;
message_center.h 140 // to the user, in order to decrement the unread_count for the tray, and to
message_center_impl.h 218 size_t unread_count; member in struct:message_center::MessageCenterImpl::NotificationCache
notification_list_unittest.cc 695 // Verifies that unread_count doesn't become negative.
706 // Updates the notification and verifies unread_count doesn't change.
  /external/chromium_org/chrome/browser/ui/views/message_center/
web_notification_tray.cc 47 gfx::ImageSkia* GetIcon(int unread_count, bool is_quiet_mode) {
51 if (unread_count) {
  /packages/apps/Email/provider_src/com/android/email/provider/
DBHelper.java 373 " begin update " + Mailbox.TABLE_NAME + " set " + MailboxColumns.UNREAD_COUNT +
374 '=' + MailboxColumns.UNREAD_COUNT + "+1" +
381 " begin update " + Mailbox.TABLE_NAME + " set " + MailboxColumns.UNREAD_COUNT +
382 '=' + MailboxColumns.UNREAD_COUNT + "-1" +
390 " begin update " + Mailbox.TABLE_NAME + " set " + MailboxColumns.UNREAD_COUNT +
391 '=' + MailboxColumns.UNREAD_COUNT + "-1" +
393 "; update " + Mailbox.TABLE_NAME + " set " + MailboxColumns.UNREAD_COUNT +
394 '=' + MailboxColumns.UNREAD_COUNT + "+1" +
402 " begin update " + Mailbox.TABLE_NAME + " set " + MailboxColumns.UNREAD_COUNT +
403 '=' + MailboxColumns.UNREAD_COUNT + "+ case OLD." + MessageColumns.FLAG_READ
    [all...]
EmailProvider.java     [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/mock/
MockUiProvider.java 293 folderMap.put(FolderColumns.UNREAD_COUNT, unread);
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
UIProvider.java     [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
EmailContent.java     [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTests.java 357 new String[] {MailboxColumns.UNREAD_COUNT};
    [all...]

Completed in 1129 milliseconds