Searched refs:newSelectionArgs (Results 1 – 2 of 2) sorted by relevance
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
D | CalendarProvider2.java | 1286 String[] newSelectionArgs = new String[] {String.valueOf(rangeEnd), in handleInstanceQuery() local 1289 selectionArgs = newSelectionArgs; in handleInstanceQuery() 1291 selectionArgs = combine(newSelectionArgs, selectionArgs); in handleInstanceQuery() 5357 String[] newSelectionArgs = new String[newLength]; in insertSelectionArg() local 5358 newSelectionArgs[0] = arg; in insertSelectionArg() 5359 System.arraycopy(selectionArgs, 0, newSelectionArgs, 1, selectionArgs.length); in insertSelectionArg() 5360 return newSelectionArgs; in insertSelectionArg()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | ContactsProvider2.java | 9959 String[] newSelectionArgs = new String[newLength]; in insertSelectionArg() local 9960 newSelectionArgs[0] = arg; in insertSelectionArg() 9961 System.arraycopy(selectionArgs, 0, newSelectionArgs, 1, selectionArgs.length); in insertSelectionArg() 9962 return newSelectionArgs; in insertSelectionArg() 9971 String[] newSelectionArgs = new String[newLength]; in appendSelectionArg() local 9972 newSelectionArgs[newLength] = arg; in appendSelectionArg() 9973 System.arraycopy(selectionArgs, 0, newSelectionArgs, 0, selectionArgs.length - 1); in appendSelectionArg() 9974 return newSelectionArgs; in appendSelectionArg()
|