OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:currentContactId
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Contacts/src/com/android/contacts/list/
PhoneNumberListAdapter.java
239
final long
currentContactId
= cursor.getLong(PHONE_CONTACT_ID_COLUMN_INDEX);
242
if (
currentContactId
== previousContactId) {
249
if (
currentContactId
== nextContactId) {
/packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionEngine.java
377
long
currentContactId
= -1;
381
if (contactId !=
currentContactId
) {
388
currentContactId
= contactId;
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
SearchIndexManager.java
289
long
currentContactId
= -1;
292
if (contactId !=
currentContactId
) {
293
if (
currentContactId
!= -1) {
294
saveContactIndex(db,
currentContactId
, mIndexBuilder, replace);
297
currentContactId
= contactId;
307
if (
currentContactId
!= -1) {
308
saveContactIndex(db,
currentContactId
, mIndexBuilder, replace);
Completed in 265 milliseconds