HomeSort by relevance Sort by last modified time
    Searched refs:starred (Results 1 - 25 of 74) sorted by null

1 2 3

  /external/chromium_org/chrome/browser/ui/bookmarks/
bookmark_tab_helper_delegate.h 20 bool starred) = 0;
  /external/chromium_org/chrome/browser/ui/cocoa/location_bar/
star_decoration.h 21 // Sets the image and tooltip based on |starred|.
22 void SetStarred(bool starred);
25 bool starred() const { return starred_; } function in class:StarDecoration
  /external/chromium/chrome/browser/ui/tab_contents/
tab_contents_wrapper_delegate.h 19 virtual void URLStarredChanged(TabContentsWrapper* source, bool starred) = 0;
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
MessageInfo.java 28 public boolean starred; field in class:MessageInfo
43 starred = (in.readInt() != 0);
57 dest.writeInt(starred ? 1 : 0);
65 starred = isStarred;
81 return Objects.hashCode(read, starred, sender, senderEmail);
Conversation.java 130 * @see UIProvider.ConversationColumns#STARRED
132 public boolean starred; field in class:Conversation
227 dest.writeInt(starred ? 1 : 0);
260 starred = (in.readInt() != 0);
338 starred = cursor.getInt(UIProvider.CONVERSATION_STARRED_COLUMN) != 0;
389 starred = other.starred;
422 boolean seen, boolean starred, FolderList rawFolders, int convFlags, int personalLevel,
443 conversation.starred = starred;
    [all...]
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/
SendersFormattingTests.java 41 boolean read = false, starred = false;
42 MessageInfo info = new MessageInfo(read, starred, null, -1, null);
52 MessageInfo info2 = new MessageInfo(read, starred, "", -1, null);
61 MessageInfo info3 = new MessageInfo(read, starred, "", -1, null);
63 MessageInfo info4 = new MessageInfo(read, starred, "", -1, null);
77 boolean read = false, starred = false;
79 MessageInfo info = new MessageInfo(read, starred, sender, -1, null);
81 MessageInfo info2 = new MessageInfo(read, starred, sender, -1, null);