Home | History | Annotate | Download | only in contacts

Lines Matching refs:contactId

232         final long contactId = this.queryContactId(rawContactId);
233 assertContactVisible(contactId, expected);
236 public void assertContactVisible(long contactId, boolean expected) {
239 }, Contacts._ID + "=" + contactId, null, null);
246 public ContentProviderOperation buildVisibleAssert(long contactId, boolean visible) {
248 Contacts._ID + "=" + contactId + " AND " + Contacts.IN_VISIBLE_GROUP + "="
260 final long contactId = this.queryContactId(rawContactId);
261 final Uri contactUri = ContentUris.withAppendedId(Contacts.CONTENT_URI, contactId);
269 oper.add(buildVisibleAssert(contactId, true));
272 oper.add(buildVisibleAssert(contactId, true));
277 oper.add(buildVisibleAssert(contactId, false));