OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:RAW_CONTACTS
(Results
1 - 2
of
2
) sorted by null
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java
95
public static final String
RAW_CONTACTS
= "
raw_contacts
";
118
+ "JOIN
raw_contacts
ON (data.raw_contact_id =
raw_contacts
._id)";
122
+ "JOIN
raw_contacts
ON (data.raw_contact_id =
raw_contacts
._id)";
125
public static final String RAW_CONTACTS_JOIN_SETTINGS_DATA_GROUPS = "
raw_contacts
"
127
+ "
raw_contacts
.account_name = settings.account_name AND "
128
+ "
raw_contacts
.account_type = settings.account_type) "
130
+ "data.raw_contact_id =
raw_contacts
._id)
[
all
...]
ContactsProvider2.java
182
"UPDATE " + Tables.
RAW_CONTACTS
+ " SET " + RawContacts.TIMES_CONTACTED + "=" +
201
private static final int
RAW_CONTACTS
= 2002;
251
+ "JOIN
raw_contacts
ON (data.raw_contact_id =
raw_contacts
._id) "
252
+ "JOIN contacts ON (
raw_contacts
.contact_id = contacts._id)";
301
String TABLE = Tables.
RAW_CONTACTS
;
321
+ " FROM " + Tables.
RAW_CONTACTS
333
"UPDATE " + Tables.
RAW_CONTACTS
+
339
"UPDATE " + Tables.
RAW_CONTACTS
+
453
matcher.addURI(ContactsContract.AUTHORITY, "
raw_contacts
", RAW_CONTACTS)
[
all
...]
Completed in 436 milliseconds