OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:rawContacts
(Results
1 - 4
of
4
) sorted by null
/packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionEngine.java
38
import android.provider.ContactsContract.
RawContacts
;
82
public List<RawContact>
rawContacts
;
86
return "ID: " + contactId + "
rawContacts
: " +
rawContacts
+ " name: " + name
303
RawContacts
.ACCOUNT_TYPE,
304
RawContacts
.ACCOUNT_NAME,
305
RawContacts
.DATA_SET
437
suggestion.
rawContacts
= Lists.newArrayList();
449
suggestion.
rawContacts
.add(rawContact);
486
if (suggestion.
rawContacts
!= null)
[
all
...]
ContactEditorBaseFragment.java
73
import android.provider.ContactsContract.
RawContacts
;
125
private static final String KEY_RAW_CONTACTS = "
rawContacts
";
[
all
...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator2.java
32
import android.provider.ContactsContract.
RawContacts
;
106
int aggregationMode =
RawContacts
.AGGREGATION_MODE_DEFAULT;
115
if (aggregationMode ==
RawContacts
.AGGREGATION_MODE_DEFAULT) {
124
} else if (aggregationMode ==
RawContacts
.AGGREGATION_MODE_DISABLED) {
157
|| aggregationMode ==
RawContacts
.AGGREGATION_MODE_SUSPENDED)) {
192
final String sql = "SELECT " +
RawContacts
._ID + " FROM " + Tables.RAW_CONTACTS +
194
" AND " +
RawContacts
._ID + "=?";
402
Tables.RAW_CONTACTS + " WHERE " +
RawContacts
.CONTACT_ID + "=? AND " +
403
RawContacts
.DELETED + "=0";
427
final String
rawContacts
= TextUtils.join(",", component)
[
all
...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
ContactLoader.java
37
import android.provider.ContactsContract.
RawContacts
;
76
* Loads a single Contact and all it constituent
RawContacts
.
135
RawContacts
.ACCOUNT_NAME,
136
RawContacts
.ACCOUNT_TYPE,
137
RawContacts
.DATA_SET,
138
RawContacts
.DIRTY,
139
RawContacts
.VERSION,
140
RawContacts
.SOURCE_ID,
141
RawContacts
.SYNC1,
142
RawContacts
.SYNC2
[
all
...]
Completed in 138 milliseconds