OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ParticipantColumns
(Results
1 - 15
of
15
) sorted by null
/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/data/
ConversationParticipantsDataTest.java
22
import com.android.messaging.datamodel.DatabaseHelper.
ParticipantColumns
;
37
ParticipantColumns
.FIRST_NAME, 1) );
39
ParticipantColumns
.SEND_DESTINATION, 1));
TestDataFactory.java
32
import com.android.messaging.datamodel.DatabaseHelper.
ParticipantColumns
;
184
ParticipantColumns
._ID,
185
ParticipantColumns
.SUB_ID,
186
ParticipantColumns
.NORMALIZED_DESTINATION,
187
ParticipantColumns
.SEND_DESTINATION,
188
ParticipantColumns
.FULL_NAME,
189
ParticipantColumns
.FIRST_NAME,
190
ParticipantColumns
.PROFILE_PHOTO_URI,
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/
ParticipantData.java
33
import com.android.messaging.datamodel.DatabaseHelper.
ParticipantColumns
;
59
ParticipantColumns
._ID,
60
ParticipantColumns
.SUB_ID,
61
ParticipantColumns
.SIM_SLOT_ID,
62
ParticipantColumns
.NORMALIZED_DESTINATION,
63
ParticipantColumns
.SEND_DESTINATION,
64
ParticipantColumns
.DISPLAY_DESTINATION,
65
ParticipantColumns
.FULL_NAME,
66
ParticipantColumns
.FIRST_NAME,
67
ParticipantColumns
.PROFILE_PHOTO_URI
[
all
...]
BlockedParticipantsData.java
27
import com.android.messaging.datamodel.DatabaseHelper.
ParticipantColumns
;
62
ParticipantColumns
.BLOCKED + "=1", null, null);
ConversationListData.java
28
import com.android.messaging.datamodel.DatabaseHelper.
ParticipantColumns
;
74
ParticipantColumns
._ID,
75
ParticipantColumns
.NORMALIZED_DESTINATION,
94
ParticipantColumns
.BLOCKED + "=1", null, null);
ConversationMessageData.java
28
import com.android.messaging.datamodel.DatabaseHelper.
ParticipantColumns
;
754
+ DatabaseHelper.PARTICIPANTS_TABLE + '.' +
ParticipantColumns
.FULL_NAME
756
+ DatabaseHelper.PARTICIPANTS_TABLE + '.' +
ParticipantColumns
.FIRST_NAME
758
+ DatabaseHelper.PARTICIPANTS_TABLE + '.' +
ParticipantColumns
.DISPLAY_DESTINATION
760
+ DatabaseHelper.PARTICIPANTS_TABLE + '.' +
ParticipantColumns
.NORMALIZED_DESTINATION
762
+ DatabaseHelper.PARTICIPANTS_TABLE + '.' +
ParticipantColumns
.PROFILE_PHOTO_URI
764
+ DatabaseHelper.PARTICIPANTS_TABLE + '.' +
ParticipantColumns
.CONTACT_ID
766
+ DatabaseHelper.PARTICIPANTS_TABLE + '.' +
ParticipantColumns
.LOOKUP_KEY
776
+ '=' + DatabaseHelper.PARTICIPANTS_TABLE + '.' +
ParticipantColumns
._ID + ")"
[
all
...]
ConversationListItemData.java
27
import com.android.messaging.datamodel.DatabaseHelper.
ParticipantColumns
;
331
+ DatabaseHelper.PARTICIPANTS_TABLE + '.' +
ParticipantColumns
.FIRST_NAME
333
+ DatabaseHelper.PARTICIPANTS_TABLE + '.' +
ParticipantColumns
.DISPLAY_DESTINATION
339
+ '=' + DatabaseHelper.PARTICIPANTS_TABLE + '.' + DatabaseHelper.
ParticipantColumns
._ID
SettingsData.java
28
import com.android.messaging.datamodel.DatabaseHelper.
ParticipantColumns
;
141
ParticipantColumns
.SUB_ID + " <> ?",
ConversationData.java
36
import com.android.messaging.datamodel.DatabaseHelper.
ParticipantColumns
;
414
ParticipantColumns
.SUB_ID + " <> ?",
[
all
...]
/packages/apps/Messaging/src/com/android/messaging/datamodel/
ConversationImagePartsView.java
25
import com.android.messaging.datamodel.DatabaseHelper.
ParticipantColumns
;
43
+ DatabaseHelper.PARTICIPANTS_TABLE + '.' +
ParticipantColumns
.FULL_NAME
54
+ DatabaseHelper.PARTICIPANTS_TABLE + '.' +
ParticipantColumns
.DISPLAY_DESTINATION
66
+ '=' + DatabaseHelper.PARTICIPANTS_TABLE + '.' +
ParticipantColumns
._ID + ")"
84
static final String DISPLAY_DESTINATION =
ParticipantColumns
.DISPLAY_DESTINATION;
DatabaseHelper.java
290
+ PARTICIPANTS_TABLE + "(" +
ParticipantColumns
._ID + ") ON DELETE SET NULL "
292
+ PARTICIPANTS_TABLE + "(" +
ParticipantColumns
._ID + ") ON DELETE SET NULL "
381
public static class
ParticipantColumns
implements BaseColumns {
440
+
ParticipantColumns
._ID + " INTEGER PRIMARY KEY AUTOINCREMENT,"
441
+
ParticipantColumns
.SUB_ID + " INT DEFAULT("
443
+
ParticipantColumns
.SIM_SLOT_ID + " INT DEFAULT("
445
+
ParticipantColumns
.NORMALIZED_DESTINATION + " TEXT,"
446
+
ParticipantColumns
.SEND_DESTINATION + " TEXT,"
447
+
ParticipantColumns
.DISPLAY_DESTINATION + " TEXT,"
448
+
ParticipantColumns
.FULL_NAME + " TEXT,
[
all
...]
ParticipantRefresh.java
32
import com.android.messaging.datamodel.DatabaseHelper.
ParticipantColumns
;
250
selection =
ParticipantColumns
.CONTACT_ID + "=?";
308
private static final String SELF_PARTICIPANTS_CLAUSE =
ParticipantColumns
.SUB_ID
339
+
ParticipantColumns
.SIM_SLOT_ID + " = %d, "
340
+
ParticipantColumns
.SUBSCRIPTION_COLOR + " = %d, "
341
+
ParticipantColumns
.SUBSCRIPTION_NAME + " = %s "
390
// For subscriptions already in the database, refresh
ParticipantColumns
.SIM_SLOT_ID.
397
ParticipantColumns
.SUB_ID + " = " + subId));
401
ParticipantColumns
.SUB_ID + " NOT IN (" +
602
values.put(
ParticipantColumns
.NORMALIZED_DESTINATION
[
all
...]
MessagingContentProvider.java
33
import com.android.messaging.datamodel.DatabaseHelper.
ParticipantColumns
;
78
static class ConversationParticipantsQueryColumns extends
ParticipantColumns
{
298
queryBuilder.appendWhere(
ParticipantColumns
._ID + " IN ( " + "SELECT "
300
+
ParticipantColumns
._ID
303
+ " =? UNION SELECT " +
ParticipantColumns
._ID + " FROM "
305
+
ParticipantColumns
.SUB_ID + " != "
BugleDatabaseOperations.java
35
import com.android.messaging.datamodel.DatabaseHelper.
ParticipantColumns
;
320
return isBlockedParticipant(db, destination,
ParticipantColumns
.NORMALIZED_DESTINATION);
324
return isBlockedParticipant(db, participantId,
ParticipantColumns
._ID);
332
new String[] {
ParticipantColumns
.BLOCKED },
333
column + "=? AND " +
ParticipantColumns
.SUB_ID + "=?",
695
final String selection =
ParticipantColumns
._ID + "=? AND " +
696
ParticipantColumns
.SIM_SLOT_ID + "<>?";
700
new String[] {
ParticipantColumns
._ID }, selection,
[
all
...]
/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/
ParticipantRefreshTest.java
30
import com.android.messaging.datamodel.DatabaseHelper.
ParticipantColumns
;
81
values.put(
ParticipantColumns
.NORMALIZED_DESTINATION, normalizedDestination);
82
values.put(
ParticipantColumns
.CONTACT_ID, contactId);
83
values.put(
ParticipantColumns
.FULL_NAME, name);
84
values.put(
ParticipantColumns
.PROFILE_PHOTO_URI, photoUrl);
103
final String selection =
ParticipantColumns
.NORMALIZED_DESTINATION + "=?";
Completed in 990 milliseconds