HomeSort by relevance Sort by last modified time
    Searched refs:unread_count (Results 1 - 7 of 7) 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/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_impl.h 218 size_t unread_count; member in struct:message_center::MessageCenterImpl::NotificationCache
  /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) {

Completed in 238 milliseconds