Searched defs:selectionArgs (Results 1 - 25 of 93) sorted by relevance

1234

/packages/apps/QuickSearchBox/tests/naughty/src/com/android/quicksearchbox/tests/naughty/
H A DHangingSuggestionProvider.java44 String[] selectionArgs, String sortOrder) {
43 query(Uri uri, String[] projectionIn, String selection, String[] selectionArgs, String sortOrder) argument
H A DCrashingSuggestionProvider.java49 String[] selectionArgs, String sortOrder) {
48 query(Uri uri, String[] projectionIn, String selection, String[] selectionArgs, String sortOrder) argument
H A DNaughtySuggestionProvider.java49 String[] selectionArgs) {
54 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
48 update(Uri uri, ContentValues values, String selection, String[] selectionArgs) argument
/packages/experimental/RpcPerformance/src/com/android/rpc_performance/
H A DProvider.java32 String selection, String[] selectionArgs,
43 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
47 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
31 query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) argument
/packages/apps/ContactsCommon/src/com/android/contacts/common/database/
H A DNoNullCursorAsyncQueryHandler.java37 String[] selectionArgs, String orderBy) {
39 super.startQuery(token, projectionCookie, uri, projection, selection, selectionArgs,
36 startQuery(int token, Object cookie, Uri uri, String[] projection, String selection, String[] selectionArgs, String orderBy) argument
/packages/apps/QuickSearchBox/tests/slow/src/com/android/quicksearchbox/tests/slow/
H A DSlowSuggestionProvider.java47 String[] selectionArgs, String sortOrder) {
81 String[] selectionArgs) {
86 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
46 query(Uri uri, String[] projectionIn, String selection, String[] selectionArgs, String sortOrder) argument
80 update(Uri uri, ContentValues values, String selection, String[] selectionArgs) argument
/packages/apps/QuickSearchBox/tests/spammy/src/com/android/quicksearchbox/tests/spammy/
H A DSpammySuggestionProvider.java47 String[] selectionArgs, String sortOrder) {
75 String[] selectionArgs) {
80 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
46 query(Uri uri, String[] projectionIn, String selection, String[] selectionArgs, String sortOrder) argument
74 update(Uri uri, ContentValues values, String selection, String[] selectionArgs) argument
/packages/providers/TvProvider/src/com/android/providers/tv/util/
H A DSqlParams.java26 public SqlParams(String tables, String selection, String... selectionArgs) { argument
28 setWhere(selection, selectionArgs);
47 public void setWhere(String selection, String... selectionArgs) { argument
49 mSelectionArgs = selectionArgs;
52 public void appendWhere(String selection, String... selectionArgs) { argument
54 if (selectionArgs != null) {
55 mSelectionArgs = DatabaseUtils.appendSelectionArgs(mSelectionArgs, selectionArgs);
/packages/apps/Browser/src/com/android/browser/homepages/
H A DHomeProvider.java44 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
65 String[] selectionArgs, String sortOrder) {
71 String[] selectionArgs) {
64 query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) argument
70 update(Uri uri, ContentValues values, String selection, String[] selectionArgs) argument
/packages/apps/DeskClock/src/com/android/deskclock/provider/
H A DClockProvider.java61 public Cursor query(Uri uri, String[] projectionIn, String selection, String[] selectionArgs, argument
97 Cursor ret = qb.query(db, projectionIn, selection, selectionArgs,
H A DCity.java106 * @param selectionArgs You may include ?s in selection, which will be
107 * replaced by the values from selectionArgs, in the order that they
112 String selection, String... selectionArgs) {
114 selection, selectionArgs, null);
111 getCities(ContentResolver contentResolver, String selection, String... selectionArgs) argument
/packages/apps/Exchange/tests/src/com/android/exchange/provider/
H A DMockProvider.java47 * query() does not allow non-null selection, selectionArgs, or sortOrder arguments; the
52 * delete() and update() do not allow non-null selection or selectionArgs arguments; the
100 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
101 if (selection != null || selectionArgs != null) {
142 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
144 if (selection != null || selectionArgs != null || sortOrder != null || projection == null) {
181 public int update(Uri uri, ContentValues newValues, String selection, String[] selectionArgs) { argument
182 if (selection != null || selectionArgs != null) {
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/tests/
H A DCrashingIconProvider.java48 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
49 if (DBG) Log.d(TAG, "delete(" + uri + ", " + selection + ", " + selectionArgs + ")");
66 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
73 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
/packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/
H A DTestProvider.java50 * query() does not allow non-null selection, selectionArgs, or sortOrder arguments; the
54 * delete() and update() do not allow non-null selection or selectionArgs arguments; the presence
100 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
101 if (selection != null || selectionArgs != null) {
142 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
144 if (selection != null || selectionArgs != null || sortOrder != null || projection == null) {
181 public int update(Uri uri, ContentValues newValues, String selection, String[] selectionArgs) { argument
182 if (selection != null || selectionArgs != null) {
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DVoicemailTable.java39 public int delete(UriData uriData, String selection, String[] selectionArgs); argument
41 String[] selectionArgs, String sortOrder);
43 String[] selectionArgs);
40 query(UriData uriData, String[] projection, String selection, String[] selectionArgs, String sortOrder) argument
42 update(UriData uriData, ContentValues values, String selection, String[] selectionArgs) argument
/packages/providers/ContactsProvider/src/com/android/providers/contacts/debug/
H A DDumpFileProvider.java51 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
57 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
91 public Cursor query(Uri uri, String[] inProjection, String selection, String[] selectionArgs, argument
/packages/apps/Browser/src/com/android/browser/provider/
H A DSQLiteContentProvider.java76 String[] selectionArgs, boolean callerIsSyncAdapter);
81 public abstract int deleteInTransaction(Uri uri, String selection, String[] selectionArgs, argument
149 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
157 count = updateInTransaction(uri, values, selection, selectionArgs,
166 count = updateInTransaction(uri, values, selection, selectionArgs, callerIsSyncAdapter);
173 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
181 count = deleteInTransaction(uri, selection, selectionArgs, callerIsSyncAdapter);
189 count = deleteInTransaction(uri, selection, selectionArgs, callerIsSyncAdapter);
75 updateInTransaction(Uri uri, ContentValues values, String selection, String[] selectionArgs, boolean callerIsSyncAdapter) argument
/packages/apps/Browser/tests/src/com/android/browser/tests/utils/
H A DBP2TestCaseHelper.java134 String[] selectionArgs) {
136 int ret = getMockContentResolver().update(uri, values, where, selectionArgs);
133 mockUpdate(Uri uri, ContentValues values, String where, String[] selectionArgs) argument
/packages/apps/Email/provider_src/com/android/email/provider/
H A DAttachmentProvider.java247 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
307 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
/packages/apps/FMRadio/src/com/android/fmradio/
H A DFmProvider.java120 * @param selectionArgs The select value
125 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
130 rows = mSqlDb.delete(TABLE_NAME, selection, selectionArgs);
141 selectionArgs);
193 * @param selectionArgs The where value
199 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
211 Cursor c = qb.query(db, projection, selection, selectionArgs, null, null, sortOrder);
225 * @param selectionArgs The where value
230 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
235 rows = mSqlDb.update(TABLE_NAME, values, selection, selectionArgs);
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/provider/
H A DSharedImageProvider.java86 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { argument
/packages/apps/Gallery2/src/com/android/gallery3d/provider/
H A DGalleryProvider.java83 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
115 String selection, String[] selectionArgs, String sortOrder) {
126 projection, selection, selectionArgs, sortOrder);
136 String selection, String[] selectionArgs, String sortOrder) {
196 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
114 query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) argument
135 queryPicasaItem(MediaObject image, String[] projection, String selection, String[] selectionArgs, String sortOrder) argument
/packages/apps/Gallery2/src/com/android/photos/data/
H A DSQLiteContentProvider.java84 String[] selectionArgs, boolean callerIsSyncAdapter);
90 public abstract int deleteInTransaction(Uri uri, String selection, String[] selectionArgs, argument
159 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
167 count = updateInTransaction(uri, values, selection, selectionArgs,
176 count = updateInTransaction(uri, values, selection, selectionArgs, callerIsSyncAdapter);
183 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
191 count = deleteInTransaction(uri, selection, selectionArgs, callerIsSyncAdapter);
199 count = deleteInTransaction(uri, selection, selectionArgs, callerIsSyncAdapter);
83 updateInTransaction(Uri uri, ContentValues values, String selection, String[] selectionArgs, boolean callerIsSyncAdapter) argument
/packages/apps/Mms/src/com/android/mms/
H A DTempFileProvider.java43 String selection, String[] selectionArgs, String sortOrder) {
53 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
59 String selection, String[] selectionArgs) {
42 query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) argument
58 update(Uri uri, ContentValues values, String selection, String[] selectionArgs) argument
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
H A DGoogleSuggestionProvider.java72 String[] selectionArgs, String sortOrder) {
109 String[] selectionArgs) {
114 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
71 query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) argument
108 update(Uri uri, ContentValues values, String selection, String[] selectionArgs) argument

Completed in 411 milliseconds

1234