OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RAW_CONTACTS
(Results
1 - 12
of
12
) sorted by null
/packages/providers/ContactsProvider/src/com/android/providers/contacts/database/
ContactsTableUtil.java
98
+ " FROM " + Tables.
RAW_CONTACTS
125
+ " from " + Tables.
RAW_CONTACTS
128
+ " from " + Tables.
RAW_CONTACTS
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsDatabaseHelperTest.java
266
final long rawContactId = mDb.insert(Tables.
RAW_CONTACTS
,null, rawContactValues);
304
final long rawContactId = mDb.insert(Tables.
RAW_CONTACTS
,null, rawContactValues);
335
mDb.insert(Tables.
RAW_CONTACTS
, null, contentValues);
352
mDb.insert(Tables.
RAW_CONTACTS
, null, contentValues);
370
mDb.insert(Tables.
RAW_CONTACTS
, null, contentValues);
383
mDb.insert(Tables.
RAW_CONTACTS
, null, contentValues);
397
mDb.insert(Tables.
RAW_CONTACTS
, null, contentValues);
410
mDb.insert(Tables.
RAW_CONTACTS
, null, contentValues);
421
final Cursor cursor = mDb.query(Tables.
RAW_CONTACTS
,
ContactsDatabaseHelperUpgradeTest.java
486
new TableListEntry(Tables.
RAW_CONTACTS
, RAW_CONTACTS_COLUMNS),
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java
133
public static final String
RAW_CONTACTS
= "
raw_contacts
";
161
RAW_CONTACTS
,
179
+ "JOIN
raw_contacts
ON (data.raw_contact_id =
raw_contacts
._id)";
182
// MUST be used, as upgraded
raw_contacts
may have the account info columns too.
185
+ "JOIN
raw_contacts
ON (data.raw_contact_id =
raw_contacts
._id)"
192
public static final String RAW_CONTACTS_JOIN_SETTINGS_DATA_GROUPS = Tables.
RAW_CONTACTS
206
+ "data.raw_contact_id =
raw_contacts
._id)
[
all
...]
AbstractContactsProvider.java
379
"SELECT _id, count(*) as c FROM " + Tables.
RAW_CONTACTS
392
+ " FROM " + Tables.
RAW_CONTACTS
404
+ " FROM " + Tables.DATA + " AS d JOIN " + Tables.
RAW_CONTACTS
+ " AS r"
DataRowHandlerForGroupMembership.java
44
String TABLE = Tables.
RAW_CONTACTS
;
106
if (db.update(Tables.
RAW_CONTACTS
, rawContactValues, SELECTION_RAW_CONTACT_ID,
183
* the
raw_contacts
table.
LegacyApiSupport.java
124
+ " LEFT OUTER JOIN data name ON (
raw_contacts
._id = name.raw_contact_id"
127
+ " LEFT OUTER JOIN data organization ON (
raw_contacts
._id = organization.raw_contact_id"
130
+ " LEFT OUTER JOIN data email ON (
raw_contacts
._id = email.raw_contact_id"
133
+ " LEFT OUTER JOIN data note ON (
raw_contacts
._id = note.raw_contact_id"
136
+ " LEFT OUTER JOIN data phone ON (
raw_contacts
._id = phone.raw_contact_id"
142
+ " JOIN
raw_contacts
ON (
raw_contacts
._id = data.raw_contact_id)"
202
"UPDATE " + Tables.
RAW_CONTACTS
+ " SET "
269
" LEFT OUTER JOIN data legacy_photo ON (
raw_contacts
._id = legacy_photo.raw_contact_id"
563
Tables.
RAW_CONTACTS
+ "." + RawContactsColumns.DISPLAY_NAM
[
all
...]
ContactsProvider2.java
236
"UPDATE " + Tables.
RAW_CONTACTS
+ " SET " + RawContacts.TIMES_CONTACTED + "=" +
358
public static final int
RAW_CONTACTS
= 2002;
505
+ " FROM " + Tables.
RAW_CONTACTS
+ " WHERE " + RawContacts._ID + "=?";
509
+ "JOIN
raw_contacts
ON (data.raw_contact_id =
raw_contacts
._id) "
513
+ "JOIN contacts ON (
raw_contacts
.contact_id = contacts._id)";
556
+ " FROM " + Tables.
RAW_CONTACTS
568
"UPDATE " + Tables.
RAW_CONTACTS
+
574
"UPDATE " + Tables.
RAW_CONTACTS
+
591
"UPDATE " + Tables.
RAW_CONTACTS
[
all
...]
SearchIndexManager.java
312
"(SELECT " + RawContacts.CONTACT_ID + " FROM " + Tables.
RAW_CONTACTS
+
320
// The selection to select
raw_contacts
.
328
" FROM " + Tables.
RAW_CONTACTS
+
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
AbstractContactAggregator.java
111
" JOIN " + Tables.
RAW_CONTACTS
+
311
" FROM " + Tables.
RAW_CONTACTS
+
320
"UPDATE " + Tables.
RAW_CONTACTS
+
342
+ ")=0 THEN 0 ELSE 1 END) FROM " + Tables.
RAW_CONTACTS
+ " WHERE "
348
+ RawContacts.SEND_TO_VOICEMAIL + ") FROM " + Tables.
RAW_CONTACTS
351
+ RawContacts.SEND_TO_VOICEMAIL + ") FROM " + Tables.
RAW_CONTACTS
+ " WHERE "
357
+ Tables.
RAW_CONTACTS
+ " WHERE " + RawContacts.CONTACT_ID + "="
363
"UPDATE " + Tables.
RAW_CONTACTS
+
369
"UPDATE " + Tables.
RAW_CONTACTS
+
382
"UPDATE " + Tables.
RAW_CONTACTS
[
all
...]
ContactAggregator2.java
128
// # of
raw_contacts
in the [currentContactId] contact excluding the [rawContactId]
139
// on the number of matching candidates and the number of
raw_contacts
in the
192
final String sql = "SELECT " + RawContacts._ID + " FROM " + Tables.
RAW_CONTACTS
+
402
Tables.
RAW_CONTACTS
+ " WHERE " + RawContacts.CONTACT_ID + "=? AND " +
420
* Separate all the
raw_contacts
which has "SEPARATE" aggregation exception to another
421
*
raw_contacts
in the same component.
[
all
...]
ContactAggregator.java
127
" FROM " + Tables.
RAW_CONTACTS
+
169
// # of
raw_contacts
in the [currentContactId] contact excluding the [rawContactId]
262
Tables.
RAW_CONTACTS
+ " WHERE " + RawContacts.CONTACT_ID + "=?1)) AS a" +
290
" IN (SELECT " + RawContacts._ID + " FROM " + Tables.
RAW_CONTACTS
+
524
+ " JOIN
raw_contacts
raw_contacts1 "
526
+ " JOIN
raw_contacts
raw_contacts2 "
[
all
...]
Completed in 205 milliseconds