Home
last modified time | relevance | path

Searched refs:ParticipantsQuery (Results 1 – 12 of 12) sorted by relevance

/packages/apps/Messaging/src/com/android/messaging/datamodel/data/
DParticipantData.java57 public static class ParticipantsQuery { class in ParticipantData
125 pd.mParticipantId = cursor.getString(ParticipantsQuery.INDEX_ID); in getFromCursor()
126 pd.mSubId = cursor.getInt(ParticipantsQuery.INDEX_SUB_ID); in getFromCursor()
127 pd.mSlotId = cursor.getInt(ParticipantsQuery.INDEX_SIM_SLOT_ID); in getFromCursor()
129 ParticipantsQuery.INDEX_NORMALIZED_DESTINATION); in getFromCursor()
130 pd.mSendDestination = cursor.getString(ParticipantsQuery.INDEX_SEND_DESTINATION); in getFromCursor()
131 pd.mDisplayDestination = cursor.getString(ParticipantsQuery.INDEX_DISPLAY_DESTINATION); in getFromCursor()
132 pd.mContactDestination = cursor.getString(ParticipantsQuery.INDEX_CONTACT_DESTINATION); in getFromCursor()
133 pd.mFullName = cursor.getString(ParticipantsQuery.INDEX_FULL_NAME); in getFromCursor()
134 pd.mFirstName = cursor.getString(ParticipantsQuery.INDEX_FIRST_NAME); in getFromCursor()
[all …]
DBlockedParticipantsData.java61 ParticipantData.ParticipantsQuery.PROJECTION, in onCreateLoader()
DContactPickerData.java79 ParticipantData.ParticipantsQuery.PROJECTION, null, null, null); in onCreateLoader()
DConversationData.java363 ParticipantData.ParticipantsQuery.PROJECTION, null, null, null); in onCreateLoader()
413 ParticipantData.ParticipantsQuery.PROJECTION, in onCreateLoader()
DPeopleAndOptionsData.java85 ParticipantData.ParticipantsQuery.PROJECTION, null, null, null); in onCreateLoader()
DSettingsData.java140 ParticipantData.ParticipantsQuery.PROJECTION, in onCreateLoader()
/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/
DParticipantRefreshTest.java32 import com.android.messaging.datamodel.data.ParticipantData.ParticipantsQuery;
112 ParticipantsQuery.PROJECTION, selection, selectionArgs, null, null, null); in verifyParticipant()
120 final int currentContactId = cursor.getInt(ParticipantsQuery.INDEX_CONTACT_ID); in verifyParticipant()
121 final String currentName = cursor.getString(ParticipantsQuery.INDEX_FULL_NAME); in verifyParticipant()
123 cursor.getString(ParticipantsQuery.INDEX_PROFILE_PHOTO_URI); in verifyParticipant()
/packages/apps/Messaging/src/com/android/messaging/datamodel/
DParticipantRefresh.java34 import com.android.messaging.datamodel.data.ParticipantData.ParticipantsQuery;
264 ParticipantsQuery.PROJECTION, selection, selectionArgs, null, null, null); in refreshParticipants()
320 ParticipantsQuery.PROJECTION, in getExistingSubIds()
325 final int subId = cursor.getInt(ParticipantsQuery.INDEX_SUB_ID); in getExistingSubIds()
DBugleDatabaseOperations.java952 ParticipantData.ParticipantsQuery.PROJECTION, in getExistingParticipant()
989 ParticipantData.ParticipantsQuery.PROJECTION, in getParticipantsForConversation()
DMessageNotificationState.java629 uri, ParticipantData.ParticipantsQuery.PROJECTION, null, null, null); in scanFirstNames()
/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/action/
DGetOrCreateConversationActionTest.java128 ParticipantData.ParticipantsQuery.PROJECTION, null, null, null); in testGetOrCreateConversation()
/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/data/
DTestDataFactory.java202 return new FakeCursor(ParticipantData.ParticipantsQuery.PROJECTION, in getConversationParticipantsCursor()