OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:rawContactId1
(Results
1 - 8
of
8
) sorted by null
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
EntitySet.java
210
Long
rawContactId1
= get(index1).getValues().getAsLong(RawContacts._ID);
211
if (
rawContactId1
!= null &&
rawContactId1
>= 0) {
212
builder.withValue(AggregationExceptions.RAW_CONTACT_ID1,
rawContactId1
);
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactLookupKeyTest.java
44
long
rawContactId1
= RawContactUtil.createRawContactWithName(mResolver, "John", "Doe");
47
AggregationExceptions.TYPE_KEEP_TOGETHER,
rawContactId1
, rawContactId2);
51
String expectedLookupKey = "0r" +
rawContactId1
+ "-" + normalizedName + ".0r"
54
long contactId = queryContactId(
rawContactId1
);
72
long
rawContactId1
= RawContactUtil.createRawContactWithName(mResolver, "John", "Doe");
73
storeValue(RawContacts.CONTENT_URI,
rawContactId1
, RawContacts.SOURCE_ID, "123");
82
AggregationExceptions.TYPE_KEEP_TOGETHER,
rawContactId1
, rawContactId2);
84
AggregationExceptions.TYPE_KEEP_TOGETHER,
rawContactId1
, rawContactId3);
89
long contactId = queryContactId(
rawContactId1
);
98
long
rawContactId1
= RawContactUtil.createRawContactWithName(mResolver, "Dear", "Doe")
[
all
...]
GroupsTest.java
290
final long
rawContactId1
= RawContactUtil.createRawContact(this.mResolver);
297
assertNotAggregated(
rawContactId1
, rawContactId2);
298
assertRawContactVisible(
rawContactId1
, true);
304
values.put(AggregationExceptions.RAW_CONTACT_ID1,
rawContactId1
);
308
assertRawContactVisible(
rawContactId1
, true);
334
final long
rawContactId1
= RawContactUtil.createRawContact(this.mResolver, sTestAccount);
338
this.insertGroupMembership(
rawContactId1
, groupId);
341
assertRawContactVisible(
rawContactId1
, false);
349
assertRawContactVisible(
rawContactId1
, true);
355
values.put(AggregationExceptions.RAW_CONTACT_ID1,
rawContactId1
);
[
all
...]
ContactsProvider2Test.java
[
all
...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
RawContactDeltaList.java
258
Long
rawContactId1
= get(index1).getValues().getAsLong(RawContacts._ID);
260
if (
rawContactId1
!= null &&
rawContactId1
>= 0) {
261
builder.withValue(AggregationExceptions.RAW_CONTACT_ID1,
rawContactId1
);
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/
ContactAggregatorTest.java
70
long
rawContactId1
= RawContactUtil.createRawContactWithName(mResolver, "zz", "top");
74
rawContactId1
, rawContactId2);
76
String selection = "(" + AggregationExceptions.RAW_CONTACT_ID1 + "=" +
rawContactId1
79
+ " AND " + AggregationExceptions.RAW_CONTACT_ID2 + "=" +
rawContactId1
+ ")";
87
assertTrue((
rawContactId1
== c.getLong(1) && rawContactId2 == c.getLong(2))
88
|| (rawContactId2 == c.getLong(1) &&
rawContactId1
== c.getLong(2)));
94
rawContactId1
, rawContactId2);
101
assertTrue((
rawContactId1
== c.getLong(1) && rawContactId2 == c.getLong(2))
102
|| (rawContactId2 == c.getLong(1) &&
rawContactId1
== c.getLong(2)));
108
rawContactId1
, rawContactId2)
[
all
...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java
[
all
...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsProvider2.java
[
all
...]
Completed in 716 milliseconds