Searched defs:selection (Results 1 - 25 of 45) sorted by relevance

12

/frameworks/base/core/tests/coretests/EnabledTestApp/src/com/android/frameworks/coretests/enabled_app/
H A DDisabledProvider.java34 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
47 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
51 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
H A DEnabledProvider.java34 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
47 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
51 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
/frameworks/base/core/tests/coretests/apks/install_complete_package_info/src/com/android/frameworks/coretests/
H A DTestProvider.java33 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
49 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
54 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
H A DTestReceiver.java33 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
49 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
54 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
/frameworks/base/core/tests/coretests/apks/version/src/com/android/frameworks/coretests/version_test/
H A DNullProvider.java15 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
26 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
31 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DMenu.java51 void processFile(String filename, boolean selection) { argument
62 void processDirectory(String path, boolean selection) { argument
H A DFileList.java158 abstract void processDirectory(String path, boolean selection); argument
162 * The flag indicates if this was from a selection or not.
164 abstract void processFile(String filename, boolean selection); argument
/frameworks/base/core/java/android/database/sqlite/
H A DSqliteWrapper.java57 String[] projection, String selection, String[] selectionArgs, String sortOrder) {
59 return resolver.query(uri, projection, selection, selectionArgs, sortOrder);
56 query(Context context, ContentResolver resolver, Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) argument
/frameworks/base/core/java/com/android/internal/content/
H A DSelectionBuilder.java27 * Helper for building selection clauses for {@link SQLiteDatabase}. Each
47 * Append the given selection clause to the internal state. Each clause is
50 public SelectionBuilder append(String selection, Object... selectionArgs) { argument
51 if (TextUtils.isEmpty(selection)) {
54 "Valid selection required when including arguments");
65 mSelection.append("(").append(selection).append(")");
78 * Return selection string for current internal state.
87 * Return selection arguments for current internal state.
/frameworks/base/core/tests/coretests/src/android/app/
H A DSuggestionProvider.java63 public Cursor query(Uri url, String[] projectionIn, String selection, argument
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DSingleUserProvider.java35 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
51 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
56 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
/frameworks/ex/photoviewer/sample/src/com/example/photoviewersample/
H A DSampleProvider.java37 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
61 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
145 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
/frameworks/opt/mms/src/java/com/google/android/mms/util/
H A DSqliteWrapper.java69 String[] projection, String selection, String[] selectionArgs, String sortOrder) {
71 return resolver.query(uri, projection, selection, selectionArgs, sortOrder);
68 query(Context context, ContentResolver resolver, Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) argument
/frameworks/opt/photoviewer/sample/src/com/example/photoviewersample/
H A DSampleProvider.java37 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
61 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
145 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatResponseMessage.java35 public void setMenuSelection(int selection) { argument
36 this.usersMenuSelection = selection;
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DExportTestProvider.java99 String selection, String[] selectionArgs, String sortOrder) {
104 TestCase.assertTrue((Data.CONTACT_ID + "=?").equals(selection));
115 String selection, String[] selectionArgs, String sortOrder) {
118 TestCase.assertNull(selection);
98 queryEntities(Uri uri, String selection, String[] selectionArgs, String sortOrder) argument
114 query(Uri uri,String[] projection, String selection, String[] selectionArgs, String sortOrder) argument
/frameworks/base/core/java/android/content/
H A DAsyncQueryHandler.java52 public String selection; field in class:AsyncQueryHandler.WorkerArgs
80 args.selection, args.selectionArgs,
100 args.result = resolver.update(args.uri, args.values, args.selection,
105 args.result = resolver.delete(args.uri, args.selection, args.selectionArgs);
154 * @param selection A filter declaring which rows to return, formatted as an
157 * @param selectionArgs You may include ?s in selection, which will be
159 * appear in the selection. The values will be bound as Strings.
165 String[] projection, String selection, String[] selectionArgs,
175 args.selection = selection;
164 startQuery(int token, Object cookie, Uri uri, String[] projection, String selection, String[] selectionArgs, String orderBy) argument
233 startUpdate(int token, Object cookie, Uri uri, ContentValues values, String selection, String[] selectionArgs) argument
261 startDelete(int token, Object cookie, Uri uri, String selection, String[] selectionArgs) argument
[all...]
H A DContentProviderClient.java62 public Cursor query(Uri url, String[] projection, String selection, argument
65 return query(url, projection, selection, selectionArgs, sortOrder, null);
75 public Cursor query(Uri url, String[] projection, String selection, argument
84 return mContentProvider.query(url, projection, selection, selectionArgs, sortOrder,
144 public int delete(Uri url, String selection, String[] selectionArgs) argument
147 return mContentProvider.delete(url, selection, selectionArgs);
157 public int update(Uri url, ContentValues values, String selection, argument
160 return mContentProvider.update(url, values, selection, selectionArgs);
H A DContentProviderNative.java96 // String selection, String[] selectionArgs...
97 String selection = data.readString();
113 Cursor cursor = query(url, projection, selection, selectionArgs, sortOrder,
185 String selection = data.readString();
188 int count = delete(url, selection, selectionArgs);
200 String selection = data.readString();
203 int count = update(url, values, selection, selectionArgs);
332 public Cursor query(Uri url, String[] projection, String selection, argument
350 data.writeString(selection);
471 public int delete(Uri url, String selection, Strin argument
493 update(Uri url, ContentValues values, String selection, String[] selectionArgs) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DLocalProvider.java84 public Cursor query(Uri url, String[] projectionIn, String selection, argument
104 Cursor ret = qb.query(db, projectionIn, selection, selectionArgs,
/frameworks/base/core/tests/coretests/src/android/content/
H A DMemoryFileProvider.java113 public Cursor query(Uri url, String[] projectionIn, String selection, argument
/frameworks/base/test-runner/src/android/test/mock/
H A DMockIContentProvider.java49 public int delete(Uri url, String selection, String[] selectionArgs) argument
75 public Cursor query(Uri url, String[] projection, String selection, String[] selectionArgs, argument
80 public EntityIterator queryEntities(Uri url, String selection, String[] selectionArgs, argument
85 public int update(Uri url, ContentValues values, String selection, String[] selectionArgs) argument
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DTrackerProvider.java86 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
88 int result = db.delete(TABLE_NAME, selection, selectionArgs);
111 public Cursor query(Uri uri, String[] projection, String selection, argument
115 Cursor cursor = db.query(TABLE_NAME, projection, selection,
122 public int update(Uri uri, ContentValues values, String selection, argument
/frameworks/ex/common/java/com/android/common/content/
H A DSQLiteContentProvider.java76 protected abstract int updateInTransaction(Uri uri, ContentValues values, String selection, argument
82 protected abstract int deleteInTransaction(Uri uri, String selection, String[] selectionArgs); argument
148 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
155 count = updateInTransaction(uri, values, selection, selectionArgs);
166 count = updateInTransaction(uri, values, selection, selectionArgs);
176 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
183 count = deleteInTransaction(uri, selection, selectionArgs);
194 count = deleteInTransaction(uri, selection, selectionArgs);
H A DSyncStateContentProviderHelper.java82 String selection, String[] selectionArgs, String sortOrder) {
83 return db.query(SYNC_STATE_TABLE, projection, selection, selectionArgs,
96 String selection, String[] selectionArgs) {
97 return db.update(SYNC_STATE_TABLE, values, selection, selectionArgs);
81 query(SQLiteDatabase db, String[] projection, String selection, String[] selectionArgs, String sortOrder) argument
95 update(SQLiteDatabase db, ContentValues values, String selection, String[] selectionArgs) argument

Completed in 2983 milliseconds

12