Searched refs:newSelectionArgs (Results 1 – 2 of 2) sorted by relevance
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
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()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | ContactsProvider2.java | 9483 String[] newSelectionArgs = new String[newLength]; in insertSelectionArg() local 9484 newSelectionArgs[0] = arg; in insertSelectionArg() 9485 System.arraycopy(selectionArgs, 0, newSelectionArgs, 1, selectionArgs.length); in insertSelectionArg() 9486 return newSelectionArgs; in insertSelectionArg() 9495 String[] newSelectionArgs = new String[newLength]; in appendSelectionArg() local 9496 newSelectionArgs[newLength] = arg; in appendSelectionArg() 9497 System.arraycopy(selectionArgs, 0, newSelectionArgs, 0, selectionArgs.length - 1); in appendSelectionArg() 9498 return newSelectionArgs; in appendSelectionArg()
|