Searched refs:newSelectionArgs (Results 1 – 2 of 2) sorted by relevance
/aosp12/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
H A D | CalendarProvider2.java | 1287 String[] newSelectionArgs = new String[] {String.valueOf(rangeEnd), in handleInstanceQuery() local 1290 selectionArgs = newSelectionArgs; in handleInstanceQuery() 1292 selectionArgs = combine(newSelectionArgs, selectionArgs); in handleInstanceQuery() 5358 String[] newSelectionArgs = new String[newLength]; in insertSelectionArg() local 5359 newSelectionArgs[0] = arg; in insertSelectionArg() 5360 System.arraycopy(selectionArgs, 0, newSelectionArgs, 1, selectionArgs.length); in insertSelectionArg() 5361 return newSelectionArgs; in insertSelectionArg()
|
/aosp12/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
H A D | ContactsProvider2.java | 9449 String[] newSelectionArgs = new String[newLength]; in insertSelectionArg() local 9450 newSelectionArgs[0] = arg; in insertSelectionArg() 9451 System.arraycopy(selectionArgs, 0, newSelectionArgs, 1, selectionArgs.length); in insertSelectionArg() 9452 return newSelectionArgs; in insertSelectionArg() 9461 String[] newSelectionArgs = new String[newLength]; in appendSelectionArg() local 9462 newSelectionArgs[newLength] = arg; in appendSelectionArg() 9463 System.arraycopy(selectionArgs, 0, newSelectionArgs, 0, selectionArgs.length - 1); in appendSelectionArg() 9464 return newSelectionArgs; in appendSelectionArg()
|