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

1 2 3 4 5

  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactStatusUtil.java 30 public static String getStatusString(Context context, int presence) {
32 switch (presence) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
GlobalSearchSupport.java 67 "(SELECT " + StatusUpdates.PRESENCE +
75 int presence = -1; field in class:GlobalSearchSupport.SearchSuggestion
95 if (presence != -1) {
96 icon2 = String.valueOf(StatusUpdates.getPresenceIconResourceId(presence));
153 presence = -1;
263 suggestion.presence = c.isNull(4) ? -1 : c.getInt(4);
  /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/ContactsCommon/src/com/android/contacts/common/list/
ContactTileAdapter.java 254 // Set presence icon and status message
256 int presence = 0; local
258 presence = cursor.getInt(mPresenceIndex);
259 icon = ContactPresenceIconUtil.getPresenceIcon(mContext, presence);
267 // If there is no status message from the contact, but there was a presence value,
269 if (statusMessage == null && presence != 0) {
270 statusMessage = ContactStatusUtil.getStatusString(mContext, presence);
ContactListItemView.java 69 * icons for presence and call.
74 * to the left of the photo, the text lines are aligned to the left and the presence icon (if
428 // Status view height is the biggest of the text view and the presence icon
437 // Presence and status are in a same row, so status will be affected by icon size.
575 // Layout all text view and presence icon
594 // Presence and status
1262 int presence = 0; local
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_StatusUpdatesTest.java 101 private Uri insertStatusUpdate(long dataId, int presence, String status, Long timestamp)
106 .withValue(StatusUpdates.PRESENCE, presence)
130 .withValue(StatusUpdates.PRESENCE, status)
  /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...]
  /external/v8/test/mjsunit/compiler/
load-elimination-osr.js 30 // Test global load elimination in the presence of OSR compilation.
regress-closures-with-eval.js 30 // Verifies that closures in presence of eval work fine.
simple-deopt.js 103 // Test of deopt in presence of spilling.
  /external/v8/test/mjsunit/regress/
regress-1130.js 28 // Test that parser errors can be build up correctly even in the presence
regress-1172.js 29 // function's prototype even in the presence of JS accessors.
  /external/v8/test/webkit/
continue-break-multiple-labels.js 25 'This test checks break and continue behaviour in the presence of multiple labels.'
eval-and-with.js 25 "This test case checks variable resolution in the presence of both eval and with."
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
DataAction.java 249 public void setPresence(int presence) {
250 mPresence = presence;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
Contact.java 146 boolean starred, Integer presence, boolean sendToVoicemail, String customRingtone,
166 mPresence = presence;
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseContactsProvider2Test.java 411 int presence, String status, int chatMode) {
412 return insertStatusUpdate(protocol, customProtocol, handle, presence, status, chatMode,
417 int presence, String status, int chatMode, boolean isUserProfile) {
418 return insertStatusUpdate(protocol, customProtocol, handle, presence, status, 0, chatMode,
423 int presence, String status, long timestamp, int chatMode, boolean isUserProfile) {
428 return insertStatusUpdate(values, presence, status, timestamp, chatMode, isUserProfile);
432 long dataId, int presence, String status, long timestamp, int chatMode) {
433 return insertStatusUpdate(dataId, presence, status, timestamp, chatMode, false);
437 long dataId, int presence, String status, long timestamp, int chatMode,
441 return insertStatusUpdate(values, presence, status, timestamp, chatMode, isUserProfile)
    [all...]
  /external/v8/test/mjsunit/
arguments-apply.js 132 // stack even in the presence of the apply optimizations.
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapAppParams.java     [all...]
  /external/libunwind/doc/
libunwind-setjmp.tex 46 \item The correct operation of this library depends on the presence of
  /external/linux-tools-perf/src/tools/perf/config/
utilities.mak 166 # by the presence of a leading `/'.
  /hardware/qcom/gps/loc_api/libloc_api-rpc/gen-1240/
loc_api_common.xdr 365 unsigned char presence;
  /hardware/qcom/gps/loc_api/libloc_api-rpc/gen-3200/
loc_api_common.xdr 355 unsigned char presence;
  /hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc/gen-1240/
loc_api_common.xdr 365 unsigned char presence;
  /hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc/gen-3200/
loc_api_common.xdr 355 unsigned char presence;

Completed in 1217 milliseconds

1 2 3 4 5