OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rawContacts
(Results
1 - 9
of
9
) 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
...]
AggregationSuggestionView.java
86
mRawContacts = suggestion.
rawContacts
;
ContactEditorBaseFragment.java
73
import android.provider.ContactsContract.
RawContacts
;
125
private static final String KEY_RAW_CONTACTS = "
rawContacts
";
[
all
...]
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java
38
import android.provider.ContactsContract.
RawContacts
;
100
* @param
rawContacts
The list of contacts to update
106
List<RawContact>
rawContacts
, long groupId, long lastSyncMarker) {
114
for (final RawContact rawContact :
rawContacts
) {
128
// row for this contact so that the
RawContacts
.SOURCE_ID value
226
* @param
rawContacts
The list of users we want to update
228
public static void updateStatusMessages(Context context, List<RawContact>
rawContacts
) {
231
for (RawContact rawContact :
rawContacts
) {
415
Uri uri = ContentUris.withAppendedId(
RawContacts
.CONTENT_URI, rawContactId);
442
values.put(
RawContacts
.ACCOUNT_NAME, account.name)
[
all
...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
Contact.java
481
/* package */ void setRawContacts(ImmutableList<RawContact>
rawContacts
) {
482
mRawContacts =
rawContacts
;
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
...]
/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
...]
/cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_DataTest.java
39
import android.provider.ContactsContract.
RawContacts
;
61
RawContacts
.RAW_CONTACT_IS_USER_PROFILE,
95
RawContacts
.ACCOUNT_NAME,
96
RawContacts
.ACCOUNT_TYPE,
97
RawContacts
.DATA_SET,
98
RawContacts
.ACCOUNT_TYPE_AND_DATA_SET,
99
RawContacts
.DIRTY,
100
RawContacts
.SOURCE_ID,
101
RawContacts
.VERSION,
211
.with(
RawContacts
.ACCOUNT_TYPE, "test_type"
[
all
...]
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
QuickContactActivity.java
70
import android.provider.ContactsContract.
RawContacts
;
590
final String accountName = suggestion.
rawContacts
.get(0).accountName;
[
all
...]
Completed in 1203 milliseconds