HomeSort by relevance Sort by last modified time
    Searched defs:selectionArgs (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/bytecode/
TestProvider.class.data 
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerDataHelper.java 110 String[] selectionArgs = (tag == null ? null : new String[] {tag});
113 selection, selectionArgs, null);
  /packages/apps/Contacts/src/com/android/contacts/
GroupMemberLoader.java 119 List<String> selectionArgs = new ArrayList<String>();
120 selectionArgs.add(GroupMembership.CONTENT_ITEM_TYPE);
121 selectionArgs.add(String.valueOf(mGroupId));
122 return selectionArgs.toArray(new String[0]);
  /packages/apps/Contacts/src/com/android/contacts/list/
DefaultContactListAdapter.java 148 List<String> selectionArgs = new ArrayList<String>();
182 loader.setSelectionArgs(selectionArgs.toArray(new String[0]));
PhoneNumberListAdapter.java 161 final List<String> selectionArgs = new ArrayList<String>();
186 loader.setSelectionArgs(selectionArgs.toArray(new String[0]));
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStoreTest.java 64 String[] selectionArgs = new String[] { TEST_VOLUME_NAME };
68 selection, selectionArgs, null));
77 selection, selectionArgs, null);
MediaStore_Audio_AlbumsTest.java 84 String[] selectionArgs = new String[] { Audio1.ALBUM };
87 Cursor c = mContentResolver.query(audioAlbumsUri, null, selection, selectionArgs,
122 mContentResolver.update(audioAlbumsUri, albumValues, selection, selectionArgs);
130 mContentResolver.delete(audioAlbumsUri, selection, selectionArgs);
154 Cursor c = mContentResolver.query(audioAlbumsUri, null, selection, selectionArgs, null);
MediaStore_Audio_ArtistsTest.java 74 String[] selectionArgs = new String[] { Audio1.ARTIST };
77 Cursor c = mContentResolver.query(artistsUri, null, selection, selectionArgs, null);
93 mContentResolver.update(artistsUri, artistValues, selection, selectionArgs);
101 mContentResolver.delete(artistsUri, selection, selectionArgs);
125 Cursor c = mContentResolver.query(artistsUri, null, selection, selectionArgs, null);
ContactsContract_TestDataBuilder.java 169 ArrayList<String> selectionArgs = Lists.newArrayList();
184 selectionArgs.add(value.toString());
189 selectionArgs.toArray(new String[0]), null, null);
  /development/samples/ContactManager/src/com/example/android/contactmanager/
ContactManager.java 111 String[] selectionArgs = null;
114 return managedQuery(uri, projection, selection, selectionArgs, sortOrder);
  /packages/apps/Mms/src/com/android/mms/transaction/
TransactionSettings.java 68 String[] selectionArgs = null;
71 selectionArgs = new String[]{ apnName.trim() };
76 APN_PROJECTION, selection, selectionArgs, null);
PushReceiver.java 211 String[] selectionArgs = new String[] { location };
215 selection, selectionArgs, null);
RetrieveTransaction.java 204 String[] selectionArgs = new String[] { messageId,
210 selection, selectionArgs, null);
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
DictionaryDatabase.java 91 String[] selectionArgs = new String[] {rowId};
93 return query(selection, selectionArgs, columns);
109 String[] selectionArgs = new String[] {query+"*"};
111 return query(selection, selectionArgs, columns);
131 * @param selectionArgs Selection arguments for "?" components in the selection
135 private Cursor query(String selection, String[] selectionArgs, String[] columns) {
145 columns, selection, selectionArgs, null, null, null);
  /frameworks/base/core/java/android/content/
AsyncQueryHandler.java 53 public String[] selectionArgs;
80 args.selection, args.selectionArgs,
101 args.selectionArgs);
105 args.result = resolver.delete(args.uri, args.selection, args.selectionArgs);
157 * @param selectionArgs You may include ?s in selection, which will be
158 * replaced by the values from selectionArgs, in the order that they
165 String[] projection, String selection, String[] selectionArgs,
176 args.selectionArgs = selectionArgs;
234 ContentValues values, String selection, String[] selectionArgs) {
    [all...]
DefaultDataHandler.java 183 String[] selectionArgs = new String[attrLen];
185 selectionArgs[i] = atts.getValue(i+2);
187 mContentResolver.delete(u, atts.getValue(1), selectionArgs);
  /frameworks/base/telephony/java/com/android/internal/telephony/
CallerInfoAsyncQuery.java 351 String[] selectionArgs;
377 selectionArgs = new String[] { number.toUpperCase() };
383 selectionArgs = null;
389 if (selectionArgs != null) {
390 for (int i = 0; i < selectionArgs.length; i++) {
391 Log.d(LOG_TAG, "==> selectionArgs[" + i + "]: " + selectionArgs[i]);
419 selectionArgs, // selectionArgs
  /packages/apps/Browser/tests/src/com/android/browser/
BrowserProviderTests.java 139 String[] selectionArgs = { query };
141 selectionArgs, null);
  /packages/apps/Contacts/src/com/android/contacts/calllog/
CallLogQueryHandler.java 191 List<String> selectionArgs = Lists.newArrayList(
200 selectionArgs.add(Integer.toString(Calls.VOICEMAIL_TYPE));
203 CallLogQuery._PROJECTION, selection, selectionArgs.toArray(EMPTY_STRING_ARRAY),
DefaultVoicemailNotifier.java 255 final String[] selectionArgs = new String[]{ Integer.toString(Calls.VOICEMAIL_TYPE) };
259 selection, selectionArgs, Calls.DEFAULT_SORT_ORDER);
  /packages/apps/Exchange/exchange2/src/com/android/exchange/provider/
MailboxUtilities.java 46 String[] selectionArgs = new String[1];
67 selectionArgs[0] = parentServerId;
70 accountSelector, selectionArgs, null);
  /packages/apps/Mms/src/com/android/mms/ui/
ClassZeroActivity.java 215 String[] selectionArgs = new String[] { originatingAddress,
219 REPLACE_PROJECTION, selection, selectionArgs, null);
  /frameworks/base/core/tests/coretests/src/android/content/
ContentProviderOperationTest.java 145 String[] selectionArgs, String sortOrder) {
164 String[] selectionArgs, String sortOrder) {
180 String[] selectionArgs, String sortOrder) {
196 String[] selectionArgs, String sortOrder) {
264 String[] selectionArgs = new String[]{"a", null, null, "b", null};
273 .withSelection("unused", selectionArgs)
529 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
542 public int delete(Uri uri, String selection, String[] selectionArgs) {
546 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
  /frameworks/opt/vcard/java/com/android/vcard/
VCardComposer.java 292 * String[] selectionArgs = new String[] {contactId};
294 * contentUriForRawContactsEntity, null, selection, selectionArgs, null)
313 public boolean init(final String selection, final String[] selectionArgs) {
314 return init(Contacts.CONTENT_URI, sContactsProjection, selection, selectionArgs,
322 final String[] selectionArgs, final String sortOrder) {
323 return init(contentUri, sContactsProjection, selection, selectionArgs, sortOrder, null);
331 * @param selectionArgs selectionArgs used with
340 final String[] selectionArgs, final String sortOrder,
342 return init(contentUri, sContactsProjection, selection, selectionArgs, sortOrder
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
AsyncQueryServiceHelper.java 60 public String[] selectionArgs;
125 builder.append(",\n\t selectionArgs= ");
126 builder.append(Arrays.toString(selectionArgs));
288 args.selectionArgs, args.orderBy);
311 args.selectionArgs);
315 args.result = resolver.delete(args.uri, args.selection, args.selectionArgs);

Completed in 313 milliseconds

1 2 3 4