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

1 2 3 4 5 6 7 8

  /cts/tests/appsecurity-tests/test-apps/PermissionDeclareApp/src/com/android/cts/permissiondeclareapp/
PermissionContentProvider.java 30 public int delete(Uri uri, String selection, String[] selectionArgs) {
52 String[] selectionArgs, String sortOrder) {
58 String[] selectionArgs) {
PermissionContentProviderGranting.java 30 public int delete(Uri uri, String selection, String[] selectionArgs) {
52 String[] selectionArgs, String sortOrder) {
58 String[] selectionArgs) {
PermissionContentProviderPath.java 14 public int delete(Uri uri, String selection, String[] selectionArgs) {
36 String[] selectionArgs, String sortOrder) {
42 String[] selectionArgs) {
PrivateContentProvider.java 30 public int delete(Uri uri, String selection, String[] selectionArgs) {
52 String[] selectionArgs, String sortOrder) {
58 String[] selectionArgs) {
PrivateContentProviderGranting.java 30 public int delete(Uri uri, String selection, String[] selectionArgs) {
52 String[] selectionArgs, String sortOrder) {
58 String[] selectionArgs) {
  /frameworks/base/core/tests/coretests/EnabledTestApp/src/com/android/frameworks/coretests/enabled_app/
DisabledProvider.java 34 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
47 public int delete(Uri uri, String selection, String[] selectionArgs) {
51 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
EnabledProvider.java 34 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
47 public int delete(Uri uri, String selection, String[] selectionArgs) {
51 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
  /packages/experimental/RpcPerformance/src/com/android/rpc_performance/
Provider.java 32 String selection, String[] selectionArgs,
43 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
47 public int delete(Uri uri, String selection, String[] selectionArgs) {
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/tests/
CrashingIconProvider.java 48 public int delete(Uri uri, String selection, String[] selectionArgs) {
49 if (DBG) Log.d(TAG, "delete(" + uri + ", " + selection + ", " + selectionArgs + ")");
66 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
73 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
  /frameworks/base/core/java/com/android/internal/content/
SelectionBuilder.java 50 public SelectionBuilder append(String selection, Object... selectionArgs) {
52 if (selectionArgs != null && selectionArgs.length > 0) {
66 if (selectionArgs != null) {
67 for (Object arg : selectionArgs) {
  /frameworks/base/core/java/android/content/
ContentProviderClient.java 49 String[] selectionArgs, String sortOrder) throws RemoteException {
50 return mContentProvider.query(url, projection, selection, selectionArgs, sortOrder);
75 public int delete(Uri url, String selection, String[] selectionArgs)
77 return mContentProvider.delete(url, selection, selectionArgs);
82 String[] selectionArgs) throws RemoteException {
83 return mContentProvider.update(url, values, selection, selectionArgs);
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...]
  /frameworks/base/core/java/android/database/sqlite/
SqliteWrapper.java 57 String[] projection, String selection, String[] selectionArgs, String sortOrder) {
59 return resolver.query(uri, projection, selection, selectionArgs, sortOrder);
77 ContentValues values, String where, String[] selectionArgs) {
79 return resolver.update(uri, values, where, selectionArgs);
88 String where, String[] selectionArgs) {
90 return resolver.delete(uri, where, selectionArgs);
  /frameworks/base/core/java/com/google/android/mms/util/
SqliteWrapper.java 69 String[] projection, String selection, String[] selectionArgs, String sortOrder) {
71 return resolver.query(uri, projection, selection, selectionArgs, sortOrder);
89 ContentValues values, String where, String[] selectionArgs) {
91 return resolver.update(uri, values, where, selectionArgs);
100 String where, String[] selectionArgs) {
102 return resolver.delete(uri, where, selectionArgs);
  /packages/apps/QuickSearchBox/tests/naughty/src/com/android/quicksearchbox/tests/naughty/
NaughtySuggestionProvider.java 49 String[] selectionArgs) {
54 public int delete(Uri uri, String selection, String[] selectionArgs) {
  /frameworks/base/test-runner/src/android/test/mock/
MockIContentProvider.java 48 public int delete(Uri url, String selection, String[] selectionArgs)
74 public Cursor query(Uri url, String[] projection, String selection, String[] selectionArgs,
79 public EntityIterator queryEntities(Uri url, String selection, String[] selectionArgs,
84 public int update(Uri url, ContentValues values, String selection, String[] selectionArgs)
  /packages/apps/Email/src/com/android/email/data/
ThrottlingCursorLoader.java 38 String[] selectionArgs, String sortOrder) {
39 this(context, uri, projection, selection, selectionArgs, sortOrder,
45 String[] selectionArgs, String sortOrder, int minTimeout, int maxTimeout) {
46 super(context, uri, projection, selection, selectionArgs, sortOrder);
  /cts/tests/src/android/content/cts/
MockContentProvider.java 83 public int delete(Uri uri, String selection, String[] selectionArgs) {
94 count = db.delete("TestTable1", selection, selectionArgs);
100 selectionArgs);
103 count = db.delete("TestTable2", selection, selectionArgs);
109 selectionArgs);
178 String[] selectionArgs, String sortOrder) {
215 Cursor c = qb.query(db, projection, selection, selectionArgs, null, null, orderBy);
223 String[] selectionArgs) {
230 count = db.update("TestTable1", values, selection, selectionArgs);
237 selectionArgs);
    [all...]
  /external/svox/pico/src/com/svox/pico/providers/
SettingsProvider.java 61 public int delete(Uri uri, String selection, String[] selectionArgs) {
81 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
90 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
  /packages/apps/HTMLViewer/src/com/android/htmlviewer/
FileContentProvider.java 66 public int delete(Uri uri, String selection, String[] selectionArgs) {
82 String[] selectionArgs, String sortOrder) {
88 String[] selectionArgs) {
  /packages/apps/QuickSearchBox/tests/slow/src/com/android/quicksearchbox/tests/slow/
SlowSuggestionProvider.java 47 String[] selectionArgs, String sortOrder) {
81 String[] selectionArgs) {
86 public int delete(Uri uri, String selection, String[] selectionArgs) {
  /packages/apps/QuickSearchBox/tests/spammy/src/com/android/quicksearchbox/tests/spammy/
SpammySuggestionProvider.java 47 String[] selectionArgs, String sortOrder) {
75 String[] selectionArgs) {
80 public int delete(Uri uri, String selection, String[] selectionArgs) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
VoicemailTable.java 39 public int delete(UriData uriData, String selection, String[] selectionArgs);
41 String[] selectionArgs, String sortOrder);
43 String[] selectionArgs);
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerProvider.java 86 public int delete(Uri uri, String selection, String[] selectionArgs) {
88 int result = db.delete(TABLE_NAME, selection, selectionArgs);
112 String[] selectionArgs, String sortOrder) {
116 selectionArgs, null, null, sortOrder);
123 String[] selectionArgs) {
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
DictionaryProvider.java 84 * When searching all of the dictionary for matches, the selectionArgs argument must carry
89 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
95 if (selectionArgs == null) {
97 "selectionArgs must be provided for the Uri: " + uri);
99 return getSuggestions(selectionArgs[0]);
101 if (selectionArgs == null) {
103 "selectionArgs must be provided for the Uri: " + uri);
105 return search(selectionArgs[0]);
194 public int delete(Uri uri, String selection, String[] selectionArgs) {
199 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
    [all...]

Completed in 1366 milliseconds

1 2 3 4 5 6 7 8