Searched refs:newSelectionArgs (Results 1 – 2 of 2) sorted by relevance
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
D | CalendarProvider2.java | 1267 String[] newSelectionArgs = new String[] {String.valueOf(rangeEnd), in handleInstanceQuery() local 1270 selectionArgs = newSelectionArgs; in handleInstanceQuery() 1272 selectionArgs = combine(newSelectionArgs, selectionArgs); in handleInstanceQuery() 5334 String[] newSelectionArgs = new String[newLength]; in insertSelectionArg() local 5335 newSelectionArgs[0] = arg; in insertSelectionArg() 5336 System.arraycopy(selectionArgs, 0, newSelectionArgs, 1, selectionArgs.length); in insertSelectionArg() 5337 return newSelectionArgs; in insertSelectionArg()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | ContactsProvider2.java | 9437 String[] newSelectionArgs = new String[newLength]; in insertSelectionArg() local 9438 newSelectionArgs[0] = arg; in insertSelectionArg() 9439 System.arraycopy(selectionArgs, 0, newSelectionArgs, 1, selectionArgs.length); in insertSelectionArg() 9440 return newSelectionArgs; in insertSelectionArg() 9449 String[] newSelectionArgs = new String[newLength]; in appendSelectionArg() local 9450 newSelectionArgs[newLength] = arg; in appendSelectionArg() 9451 System.arraycopy(selectionArgs, 0, newSelectionArgs, 0, selectionArgs.length - 1); in appendSelectionArg() 9452 return newSelectionArgs; in appendSelectionArg()
|