Searched defs:unread_count (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
H A Dfile_input_stream.cc143 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;
H A Dmemory_input_stream.cc135 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/
H A Dfile_input_stream.cc141 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;
H A Dmemory_input_stream.cc133 size_t unread_count = std::min<size_t>(position_, length); local
134 position_ -= unread_count;
136 position_ -= unread_count;
/external/chromium_org/ui/message_center/
H A Dmessage_center_impl.h218 size_t unread_count; member in struct:message_center::MessageCenterImpl::NotificationCache
H A Dnotification_list.cc306 size_t unread_count = 0; local
310 ++unread_count;
312 return unread_count;
/external/chromium_org/chrome/browser/ui/views/message_center/
H A Dweb_notification_tray.cc47 gfx::ImageSkia* GetIcon(int unread_count, bool is_quiet_mode) { argument
51 if (unread_count) {
/external/chromium_org/ash/system/web_notification/
H A Dweb_notification_tray.cc131 void SetUnreadCount(int unread_count) { argument
134 unread_count_ = unread_count;
137 unread_label_->SetText((unread_count > 9) ?
139 base::FormatNumber(unread_count));

Completed in 267 milliseconds