OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:unseen
(Results
1 - 2
of
2
) sorted by null
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
NotificationUtils.java
127
*
unseen
conversations that triggered each.
144
* Retuns the unread
unseen
count for the given NotificationKey.
152
* Store the unread and
unseen
value for the given NotificationKey
154
public void put(NotificationKey key, int unread, int
unseen
) {
156
new Pair<Integer, Integer>(Integer.valueOf(unread), Integer.valueOf(
unseen
));
234
* @return the title of this notification with each account and the number of unread and
unseen
243
Integer
unseen
= notifications.getUnseen(key);
local
248
result.append(key.toString() + " (" + unread + ", " +
unseen
+ ")");
465
final Integer
unseen
= notificationMap.getUnseen(key);
local
466
int unseenCount =
unseen
!= null ? unseen.intValue() : 0
[
all
...]
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
FolderItemView.java
88
mUnseenCountTextView = (TextView)findViewById(R.id.
unseen
);
158
* Sets the
unseen
count, taking care to hide/show the textview if the count is zero/non-zero.
Completed in 48 milliseconds