Searched refs:ParticipantsQuery (Results 1 – 12 of 12) sorted by relevance
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/ |
D | ParticipantData.java | 63 public static class ParticipantsQuery { class in ParticipantData 131 pd.mParticipantId = cursor.getString(ParticipantsQuery.INDEX_ID); in getFromCursor() 132 pd.mSubId = cursor.getInt(ParticipantsQuery.INDEX_SUB_ID); in getFromCursor() 133 pd.mSlotId = cursor.getInt(ParticipantsQuery.INDEX_SIM_SLOT_ID); in getFromCursor() 135 ParticipantsQuery.INDEX_NORMALIZED_DESTINATION); in getFromCursor() 136 pd.mSendDestination = cursor.getString(ParticipantsQuery.INDEX_SEND_DESTINATION); in getFromCursor() 137 pd.mDisplayDestination = cursor.getString(ParticipantsQuery.INDEX_DISPLAY_DESTINATION); in getFromCursor() 138 pd.mContactDestination = cursor.getString(ParticipantsQuery.INDEX_CONTACT_DESTINATION); in getFromCursor() 139 pd.mFullName = cursor.getString(ParticipantsQuery.INDEX_FULL_NAME); in getFromCursor() 140 pd.mFirstName = cursor.getString(ParticipantsQuery.INDEX_FIRST_NAME); in getFromCursor() [all …]
|
D | BlockedParticipantsData.java | 61 ParticipantData.ParticipantsQuery.PROJECTION, in onCreateLoader()
|
D | ContactPickerData.java | 79 ParticipantData.ParticipantsQuery.PROJECTION, null, null, null); in onCreateLoader()
|
D | PeopleAndOptionsData.java | 85 ParticipantData.ParticipantsQuery.PROJECTION, null, null, null); in onCreateLoader()
|
D | SettingsData.java | 140 ParticipantData.ParticipantsQuery.PROJECTION, in onCreateLoader()
|
D | ConversationData.java | 363 ParticipantData.ParticipantsQuery.PROJECTION, null, null, null); in onCreateLoader() 413 ParticipantData.ParticipantsQuery.PROJECTION, in onCreateLoader()
|
/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/ |
D | ParticipantRefreshTest.java | 32 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/ |
D | ParticipantRefresh.java | 34 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()
|
D | BugleDatabaseOperations.java | 952 ParticipantData.ParticipantsQuery.PROJECTION, in getExistingParticipant() 989 ParticipantData.ParticipantsQuery.PROJECTION, in getParticipantsForConversation()
|
D | MessageNotificationState.java | 630 uri, ParticipantData.ParticipantsQuery.PROJECTION, null, null, null)) { in scanFirstNames()
|
/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/action/ |
D | GetOrCreateConversationActionTest.java | 121 ParticipantData.ParticipantsQuery.PROJECTION, null, null, null); in testGetOrCreateConversation()
|
/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/data/ |
D | TestDataFactory.java | 202 return new FakeCursor(ParticipantData.ParticipantsQuery.PROJECTION, in getConversationParticipantsCursor()
|