Lines Matching defs:selectionArgs

269     private Cursor getBookmarkHistorySuggestions(String selection, String[] selectionArgs,
273 String like = selectionArgs[0] + "%";
274 if (selectionArgs[0].startsWith("http") || selectionArgs[0].startsWith("file")) {
299 selectionArgs = args.toArray(selectionArgs);
301 selectionArgs, sortOrder);
306 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
324 cursor = getBookmarkHistorySuggestions(selection, selectionArgs, sortOrder, true);
327 cursor = getBookmarkHistorySuggestions(selection, selectionArgs, sortOrder, false);
330 cursor = queryBookmarkFromAPI(projection, selection, selectionArgs, sortOrder);
334 selectionArgs, sortOrder);
337 cursor = querySearchTermFromAPI(projection, selection, selectionArgs, sortOrder);
341 selectionArgs, sortOrder);
345 selectionArgs, sortOrder);
349 buildHistoryWhereClause(bookmarkId, selection), selectionArgs, sortOrder);
353 selectionArgs, sortOrder);
357 buildBookmarkWhereClause(bookmarkId, selection), selectionArgs, sortOrder);
403 public int delete(Uri uri, String selection, String[] selectionArgs) {
424 buildWhereClause(bookmarkId, selection), selectionArgs);
427 result = removeBookmarkFromAPI(selection, selectionArgs);
431 selectionArgs);
434 result = removeSearchFromAPI(selection, selectionArgs);
437 result = removeHistoryFromAPI(selection, selectionArgs);
441 selectionArgs);
444 result = removeBookmarkFromAPI(buildBookmarkWhereClause(selection), selectionArgs);
448 selectionArgs);
460 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
492 selectionArgs);
495 result = updateBookmarkFromAPI(values, selection, selectionArgs);
499 selectionArgs);
502 result = updateSearchTermFromAPI(values, selection, selectionArgs);
506 selectionArgs);
510 buildHistoryWhereClause(bookmarkId, selection), selectionArgs);
514 selectionArgs);
518 buildBookmarkWhereClause(bookmarkId, selection), selectionArgs);
1019 String[] selectionArgs, String sortOrder) {
1028 selectionArgs, sortOrder);
1032 String[] selectionArgs) {
1036 row.favicon, row.title, row.visits, row.parentId, selection, selectionArgs);
1039 private int removeBookmarkFromAPI(String selection, String[] selectionArgs) {
1040 return nativeRemoveBookmarkFromAPI(mNativeChromeBrowserProvider, selection, selectionArgs);
1043 private int removeHistoryFromAPI(String selection, String[] selectionArgs) {
1044 return nativeRemoveHistoryFromAPI(mNativeChromeBrowserProvider, selection, selectionArgs);
1068 String[] selectionArgs) {
1071 row.term, row.date, selection, selectionArgs);
1075 String[] selectionArgs, String sortOrder) {
1083 selectionArgs, sortOrder);
1086 private int removeSearchFromAPI(String selection, String[] selectionArgs) {
1088 selection, selectionArgs);
1305 String[] projection, String selection, String[] selectionArgs, String sortOrder);
1309 String title, Integer visits, long parentId, String selection, String[] selectionArgs);
1312 String selection, String[] selectionArgs);
1315 String selection, String[] selectionArgs);
1321 String[] projection, String selection, String[] selectionArgs, String sortOrder);
1324 String search, Long date, String selection, String[] selectionArgs);
1327 String selection, String[] selectionArgs);