HomeSort by relevance Sort by last modified time
    Searched refs:withSelection (Results 1 - 25 of 47) sorted by null

1 2

  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
ContentProviderOperationBuilderTest.java 46 public void withSelection() {
48 .withSelection("first", new String[] { "a", "b" })
49 .withSelection("second", new String[] { "c", "d" });
ContentProviderOperationTest.java 53 builder.withSelection("id_column", new String[] { "5" });
67 builder.withSelection("id_column", new String[] { "5" });
ContentResolverTest.java 221 .withSelection("id_column", new String[] { "99" })
225 .withSelection("id_column", new String[] { "11" })
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
EntityDiff.java 73 builder.withSelection(getSelectIdClause(child.values), null);
78 builder.withSelection(getSelectIdClause(before.getEntityValues()), null);
87 builder.withSelection(getSelectIdClause(values), null);
104 builder.withSelection(getSelectIdClause(beforeChild.values), null);
110 builder.withSelection(getSelectIdClause(values), null);
EntityDelta.java 358 builder.withSelection(RawContacts._ID + "=" + beforeId, null);
427 builder.withSelection(RawContacts._ID + "=?", new String[1]);
440 builder.withSelection(RawContacts._ID + "=" + beforeId, null);
802 builder.withSelection(mIdColumn + "=" + getId(), null);
806 builder.withSelection(mIdColumn + "=" + getId(), null);
GoogleSource.java 226 .withSelection(Groups.TITLE + "=?",
  /packages/apps/Dialer/tests/src/com/android/dialer/database/
FilteredNumberAsyncQueryHandlerTest.java 85 .withSelection(FilteredNumberColumns.TYPE + "="
134 .withSelection(FilteredNumberColumns.NORMALIZED_NUMBER + " = ?", E164_NUMBER)
267 .withSelection(null, null)
293 .withSelection(null, null)
318 .withSelection(BlockedNumbers.COLUMN_E164_NUMBER + " = ?", E164_NUMBER);
324 .withSelection(FilteredNumberColumns.NORMALIZED_NUMBER + " = ?", E164_NUMBER);
337 .withSelection(null, null);
343 .withSelection(FilteredNumberColumns.TYPE + "="
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
ContentProviderTask.java 121 .withSelection(selection, selectionArgs)
134 .withSelection(selection, selectionArgs)
  /packages/apps/Dialer/tests/src/com/android/dialer/filterednumber/
BlockedNumbersMigratorTest.java 119 .withSelection(BlockedNumbers.COLUMN_ORIGINAL_NUMBER + " = ?", NUMBER).returnRow(0);
133 .withSelection(BlockedNumbers.COLUMN_ORIGINAL_NUMBER + " = ?", number).returnEmptyCursor();
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowContentProviderOperationBuilder.java 32 public Builder withSelection(String selection, String[] selectionArgs) {
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
EABDbUtil.java 263 .withSelection(EABContract.EABColumns.CONTACT_ID + " >= ?",
271 .withSelection(EABContract.EABColumns.CONTACT_ID + " = ?",
320 .withSelection(EABContract.EABColumns.RAW_CONTACT_ID + " = ? AND "
370 .withSelection(where, new String[] { phoneNumber, rawContactId, dataId }).build());
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
RawContactDelta.java 443 builder.withSelection(RawContacts._ID + "=" + beforeId, null);
519 builder.withSelection(RawContacts._ID + "=?", new String[1]);
593 builder.withSelection(RawContacts._ID + "=?", new String[1]);
606 builder.withSelection(RawContacts._ID + "=" + beforeId, null);
ValuesDelta.java 443 builder.withSelection(mIdColumn + "=" + getId(), null);
447 builder.withSelection(mIdColumn + "=" + getId(), null);
  /packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/mocks/
MockContentProvider.java 83 public Query withSelection(String selection, String... selectionArgs) {
296 public Delete withSelection(String selection, @Nullable String[] selectionArgs) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
PhonebookPullRequest.java 177 .withSelection(RawContacts._ID + "=?", new String[] { e.id })
  /packages/apps/Dialer/tests/src/com/android/dialer/interactions/
PhoneNumberInteractionTest.java 259 .withSelection("mimetype IN ('vnd.android.cursor.item/phone_v2',"
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/
ContactAggregator2Test.java     [all...]
ContactAggregatorTest.java     [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventHelper.java 535 b.withSelection(deleteWhere.toString(), args);
    [all...]
  /frameworks/base/core/java/android/content/
ContentProviderOperation.java 397 * the key is an index into the selection argument array (see {@link Builder#withSelection})
565 * that was specified by {@link #withSelection} will be overwritten.
650 public Builder withSelection(String selection, String[] selectionArgs) {
  /packages/apps/Dialer/tests/src/com/android/dialer/voicemail/
VoicemailAsyncTaskUtilTest.java 255 .withSelection(VoicemailArchiveContract.VoicemailArchive.SERVER_ID + "="
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
GroupsTest.java 247 return ContentProviderOperation.newAssertQuery(Contacts.CONTENT_URI).withSelection(
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
CustomContactListFilterActivity.java 392 .withSelection(selection.toString(), selectionArgs)
398 .withSelection(Groups._ID + "=" + this.getId(), null)
    [all...]
  /packages/apps/Calendar/tests/src/com/android/calendar/event/
EditEventHelperTest.java 268 b.withSelection(EditEventHelper.ATTENDEES_DELETE_PREFIX + "?)",
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/
ContentProviderOperationTest.java 273 .withSelection("unused", selectionArgs)

Completed in 1870 milliseconds

1 2