OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:rawContactId1
(Results
1 - 12
of
12
) 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
...]
ContactMetadataProviderTest.java
526
long
rawContactId1
= RawContactUtil.createRawContactWithAccountDataSet(
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
379
Long
rawContactId1
= get(index1).getValues().getAsLong(RawContacts._ID);
381
if (
rawContactId1
!= null &&
rawContactId1
>= 0) {
382
builder.withValue(AggregationExceptions.RAW_CONTACT_ID1,
rawContactId1
);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java
571
long
rawContactId1
= c.getLong(AggregateExceptionQuery.RAW_CONTACT_ID1);
573
if (rawContactId ==
rawContactId1
) {
[
all
...]
ContactAggregator2.java
522
long
rawContactId1
= c.getLong(AggregateExceptionQuery.RAW_CONTACT_ID1);
526
if (rawContactId ==
rawContactId1
) {
[
all
...]
AbstractContactAggregator.java
[
all
...]
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/
ContactAggregator2Test.java
79
long
rawContactId1
= RawContactUtil.createRawContactWithName(mResolver, "zz", "top");
83
rawContactId1
, rawContactId2);
85
String selection = "(" + AggregationExceptions.RAW_CONTACT_ID1 + "=" +
rawContactId1
88
+ " AND " + AggregationExceptions.RAW_CONTACT_ID2 + "=" +
rawContactId1
+ ")";
96
assertTrue((
rawContactId1
== c.getLong(1) && rawContactId2 == c.getLong(2))
97
|| (rawContactId2 == c.getLong(1) &&
rawContactId1
== c.getLong(2)));
103
rawContactId1
, rawContactId2);
110
assertTrue((
rawContactId1
== c.getLong(1) && rawContactId2 == c.getLong(2))
111
|| (rawContactId2 == c.getLong(1) &&
rawContactId1
== c.getLong(2)));
117
rawContactId1
, rawContactId2)
[
all
...]
ContactAggregatorTest.java
79
long
rawContactId1
= RawContactUtil.createRawContactWithName(mResolver, "zz", "top");
83
rawContactId1
, rawContactId2);
85
String selection = "(" + AggregationExceptions.RAW_CONTACT_ID1 + "=" +
rawContactId1
88
+ " AND " + AggregationExceptions.RAW_CONTACT_ID2 + "=" +
rawContactId1
+ ")";
96
assertTrue((
rawContactId1
== c.getLong(1) && rawContactId2 == c.getLong(2))
97
|| (rawContactId2 == c.getLong(1) &&
rawContactId1
== c.getLong(2)));
103
rawContactId1
, rawContactId2);
110
assertTrue((
rawContactId1
== c.getLong(1) && rawContactId2 == c.getLong(2))
111
|| (rawContactId2 == c.getLong(1) &&
rawContactId1
== c.getLong(2)));
117
rawContactId1
, rawContactId2)
[
all
...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsProvider2.java
[
all
...]
Completed in 78 milliseconds