HomeSort by relevance Sort by last modified time
    Searched defs:presence (Results 1 - 10 of 10) sorted by null

  /external/chromium/third_party/libjingle/source/talk/examples/call/
friendinvitesendtask.cc 38 // Need to first add to roster, then subscribe to presence.
49 // Subscribe to presence
50 XmlElement* presence = new XmlElement(QN_PRESENCE); local
51 presence->AddAttr(QN_TO, user.Str());
52 presence->AddAttr(QN_TYPE, STR_SUBSCRIBE);
58 presence->AddElement(invitation);
59 QueueStanza(presence);
  /packages/experimental/LoaderApp/src/com/android/loaderapp/
ContactHeaderWidget.java 180 mPresenceView = (ImageView) findViewById(R.id.presence);
321 * Manually set the presence.
323 public void setPresence(int presence) {
324 mPresenceView.setImageResource(StatusUpdates.getPresenceIconResourceId(presence));
328 * Manually set the presence. If presence is null, it is hidden.
332 public void setPresence(Integer presence) {
333 if (presence == null) {
337 setPresence(presence.intValue());
342 * Turn on/off showing the presence
646 int presence = c.getInt(ContactQuery.CONTACT_PRESENCE_STATUS); local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactTileAdapter.java 255 // Set presence icon and status message
257 int presence = 0; local
259 presence = cursor.getInt(mPresenceIndex);
260 icon = ContactPresenceIconUtil.getPresenceIcon(mContext, presence);
268 // If there is no status message from the contact, but there was a presence value,
270 if (statusMessage == null && presence != 0) {
271 statusMessage = ContactStatusUtil.getStatusString(mContext, presence);
ContactListItemView.java 55 * icons for presence and call.
60 * to the left of the photo, the text lines are aligned to the left and the presence icon (if
416 // Status view height is the biggest of the text view and the presence icon
423 // Presence and status are in a same row, so status will be affected by icon size.
563 // Layout all text view and presence icon
573 // Presence and status
1215 int presence = 0; local
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
GlobalSearchSupport.java 78 "(SELECT " + StatusUpdates.PRESENCE +
111 int presence = -1; field in class:GlobalSearchSupport.SearchSuggestion
127 if (presence != -1) {
128 icon2 = String.valueOf(StatusUpdates.getPresenceIconResourceId(presence));
342 suggestion.presence = c.isNull(4) ? -1 : c.getInt(4);
  /packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
ContactFragment.java 431 // Apply presence and status details when available
540 public int presence = -1; field in class:ContactFragment.ViewEntry
576 * and {@link #footerLine}. Otherwise only {@link #presence}
580 presence = status.getPresence();
606 // Choose the presence with the highest precedence.
607 if (StatusUpdates.getPresencePrecedence(presence)
608 < StatusUpdates.getPresencePrecedence(entry.presence)) {
609 presence = entry.presence;
758 // Set the presence ico
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ContactLoader.java 188 boolean starred, Integer presence, boolean sendToVoicemail, String customRingtone,
209 mPresence = presence;
550 Data.PRESENCE,
622 public final static int PRESENCE = 54;
742 if (!cursor.isNull(ContactQuery.PRESENCE)
856 final Integer presence = cursor.isNull(ContactQuery.CONTACT_PRESENCE) local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailFragment.java 446 // The presence of a static photo view is not sufficient to determine whether or not
656 // Apply presence and status details when available
1229 public int presence = -1; field in class:ContactDetailFragment.DetailViewEntry
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api-rpc/inc-1240/
loc_api_common.h 358 u_char presence; member in struct:rpc_loc_ni_supl_slp_session_id_s_type
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api-rpc/inc-3200/
loc_api_common.h 348 u_char presence; member in struct:rpc_loc_ni_supl_slp_session_id_s_type
    [all...]

Completed in 434 milliseconds