OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RAW_CONTACTS
(Results
1 - 7
of
7
) sorted by null
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java
113
public static final String
RAW_CONTACTS
= "
raw_contacts
";
141
RAW_CONTACTS
,
161
+ "JOIN
raw_contacts
ON (data.raw_contact_id =
raw_contacts
._id)";
165
+ "JOIN
raw_contacts
ON (data.raw_contact_id =
raw_contacts
._id)";
168
public static final String RAW_CONTACTS_JOIN_SETTINGS_DATA_GROUPS = "
raw_contacts
"
170
+ "
raw_contacts
.account_name = settings.account_name AND "
171
+ "
raw_contacts
.account_type = settings.account_type AND
[
all
...]
ContactAggregator.java
93
" JOIN " + Tables.
RAW_CONTACTS
+
286
" FROM " + Tables.
RAW_CONTACTS
+
299
"UPDATE " + Tables.
RAW_CONTACTS
+
321
+ ")=0 THEN 0 ELSE 1 END) FROM " + Tables.
RAW_CONTACTS
+ " WHERE "
326
"UPDATE " + Tables.
RAW_CONTACTS
+
332
"UPDATE " + Tables.
RAW_CONTACTS
+
337
"UPDATE " + Tables.
RAW_CONTACTS
+
377
" FROM " + Tables.
RAW_CONTACTS
+
514
public static final String TABLE = Tables.
RAW_CONTACTS
;
565
public static final String TABLE = Tables.
RAW_CONTACTS
;
[
all
...]
LegacyApiSupport.java
121
" LEFT OUTER JOIN data name ON (
raw_contacts
._id = name.raw_contact_id"
124
+ " LEFT OUTER JOIN data organization ON (
raw_contacts
._id = organization.raw_contact_id"
127
+ " LEFT OUTER JOIN data email ON (
raw_contacts
._id = email.raw_contact_id"
130
+ " LEFT OUTER JOIN data note ON (
raw_contacts
._id = note.raw_contact_id"
133
+ " LEFT OUTER JOIN data phone ON (
raw_contacts
._id = phone.raw_contact_id"
139
+ " JOIN
raw_contacts
ON (
raw_contacts
._id = data.raw_contact_id)"
199
"UPDATE " + Tables.
RAW_CONTACTS
+ " SET "
266
" LEFT OUTER JOIN data legacy_photo ON (
raw_contacts
._id = legacy_photo.raw_contact_id"
560
Tables.
RAW_CONTACTS
+ "." + RawContactsColumns.DISPLAY_NAM
[
all
...]
DataRowHandlerForGroupMembership.java
44
String TABLE = Tables.
RAW_CONTACTS
;
110
if (db.update(Tables.
RAW_CONTACTS
, rawContactValues, SELECTION_RAW_CONTACT_ID,
SocialProvider.java
94
columns.put(RawContacts._ID, Tables.
RAW_CONTACTS
+ "." + RawContacts._ID + " AS _id");
363
+ " FROM " + Tables.
RAW_CONTACTS
+ " WHERE " + RawContacts.CONTACT_ID + "="
ContactsProvider2.java
247
"UPDATE " + Tables.
RAW_CONTACTS
+ " SET " + RawContacts.TIMES_CONTACTED + "=" +
284
private static final int
RAW_CONTACTS
= 2002;
426
+ " FROM " + Tables.
RAW_CONTACTS
+ " WHERE " + RawContacts._ID + "=?";
430
+ "JOIN
raw_contacts
ON (data.raw_contact_id =
raw_contacts
._id) "
431
+ "JOIN contacts ON (
raw_contacts
.contact_id = contacts._id)";
451
String TABLE = Tables.
RAW_CONTACTS
;
472
+ " FROM " + Tables.
RAW_CONTACTS
484
"UPDATE " + Tables.
RAW_CONTACTS
+
490
"UPDATE " + Tables.
RAW_CONTACTS
[
all
...]
LegacyContactImporter.java
391
String INSERT_SQL = "INSERT INTO " + Tables.
RAW_CONTACTS
+ "(" +
[
all
...]
Completed in 1161 milliseconds