Searched refs:selection (Results 1 - 25 of 102) sorted by relevance

12345

/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/install_multi_package/src/com/android/frameworks/coretests/
H A DFirstChildTestProvider.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 DFirstChildTestReceiver.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 DSecondChildTestProvider.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 DSecondChildTestReceiver.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 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/core/tests/coretests/apks/version_nosys/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/core/java/android/database/sqlite/
H A DSQLiteQueryBuilder.java87 * by parenthesis and ANDed with the selection passed to {@link #query}. The final
90 * WHERE (<append chunk 1><append chunk2>) AND (<query() selection parameter>)
106 * by parenthesis and ANDed with the selection passed to {@link #query}. The final
109 * WHERE (<append chunk 1><append chunk2>) AND (<query() selection parameter>)
151 * When set, the selection is verified against malicious arguments.
160 * additionally also parenthesis escaping selection are caught.
269 * @param selection A filter declaring which rows to return,
272 * @param selectionArgs You may include ?s in selection, which
274 * that they appear in the selection. The values will be bound
292 String selection, Strin
291 query(SQLiteDatabase db, String[] projectionIn, String selection, String[] selectionArgs, String groupBy, String having, String sortOrder) argument
330 query(SQLiteDatabase db, String[] projectionIn, String selection, String[] selectionArgs, String groupBy, String having, String sortOrder, String limit) argument
372 query(SQLiteDatabase db, String[] projectionIn, String selection, String[] selectionArgs, String groupBy, String having, String sortOrder, String limit, CancellationSignal cancellationSignal) argument
433 buildQuery( String[] projectionIn, String selection, String groupBy, String having, String sortOrder, String limit) argument
469 buildQuery( String[] projectionIn, String selection, String[] selectionArgs, String groupBy, String having, String sortOrder, String limit) argument
514 buildUnionSubQuery( String typeDiscriminatorColumn, String[] unionColumns, Set<String> columnsPresentInTable, int computedColumnsOffset, String typeDiscriminatorValue, String selection, String groupBy, String having) argument
553 buildUnionSubQuery( String typeDiscriminatorColumn, String[] unionColumns, Set<String> columnsPresentInTable, int computedColumnsOffset, String typeDiscriminatorValue, String selection, String[] selectionArgs, String groupBy, String having) argument
[all...]
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
H A DMapper.java190 final String selection;
193 selection = COLUMN_PARENT_DOCUMENT_ID + " = ?";
196 selection = COLUMN_PARENT_DOCUMENT_ID + " IS NULL";
212 selection + " AND " + COLUMN_ROW_STATE + " = ?",
233 * @param selection SQL where closure to select rows that shares the same parent.
234 * @param args Argument for selection SQL.
242 String selection,
262 queryCandidate(selection, args, mappingKeys, values)) {
319 final String selection;
322 selection
238 putDocuments( String parentId, ContentValues[] valuesList, @Nullable ContentValues[] rootExtraValuesList, String selection, String[] args, String[] mappingKeys) argument
410 queryCandidate( String selection, String[] args, String[] mappingKeys, ContentValues values) argument
432 queryCandidate( String selection, String[] args, String mappingKey, ContentValues values) argument
[all...]
/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...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatResponseMessage.java39 public void setMenuSelection(int selection) { argument
40 mUsersMenuSelection = selection;
/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/common/java/com/android/common/
H A DSearch.java103 // get the query selection, may be null
104 String selection = searchable.getSuggestSelection();
105 // inject query, either as selection args or inline
107 if (selection != null) {
109 } else { // no selection, use REST pattern
121 return context.getContentResolver().query(uri, null, selection, selArgs, null);
/frameworks/support/compat/java/android/support/v4/content/
H A DContentResolverCompat.java45 * explicit values in the {@code selection} parameter, so that queries
55 * @param selection A filter declaring which rows to return, formatted as an
58 * @param selectionArgs You may include ?s in selection, which will be
60 * appear in the selection. The values will be bound as Strings.
71 Uri uri, String[] projection, String selection, String[] selectionArgs,
80 return resolver.query(uri, projection, selection, selectionArgs, sortOrder,
98 return resolver.query(uri, projection, selection, selectionArgs, sortOrder);
70 query(ContentResolver resolver, Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder, CancellationSignal cancellationSignal) argument
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/content/
H A DSharingSupportProvider.java45 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
65 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
70 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
/frameworks/support/frameworks/support/samples/SupportContentDemos/src/main/java/com/example/android/support/content/demos/
H A DUnpagedDemoDataProvider.java46 public Cursor query(Uri uri, String[] projection, String selection, argument
62 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
77 public int update(Uri uri, ContentValues values, String selection, argument
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/content/
H A DSharingSupportProvider.java45 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, argument
65 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
70 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { argument
/frameworks/support/samples/SupportContentDemos/src/main/java/com/example/android/support/content/demos/
H A DUnpagedDemoDataProvider.java46 public Cursor query(Uri uri, String[] projection, String selection, argument
62 public int delete(Uri uri, String selection, String[] selectionArgs) { argument
77 public int update(Uri uri, ContentValues values, String selection, 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/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DFakeSmsContentProvider.java76 @Nullable String selection, @Nullable String[] selectionArgs,
79 return db.query(RAW_TABLE_NAME, projection, selection, selectionArgs, null, null,
91 public int delete(@NonNull Uri uri, @Nullable String selection, argument
100 count = db.update(RAW_TABLE_NAME, cv, selection, selectionArgs);
104 count = db.delete(RAW_TABLE_NAME, selection, selectionArgs);
75 query(@onNull Uri uri, @Nullable String[] projection, @Nullable String selection, @Nullable String[] selectionArgs, @Nullable String sortOrder) argument

Completed in 3064 milliseconds

12345