Home
last modified time | relevance | path

Searched refs:newSelectionArgs (Results 1 – 2 of 2) sorted by relevance

/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DCalendarProvider2.java1108 String[] newSelectionArgs = new String[] {String.valueOf(rangeEnd), in handleInstanceQuery() local
1111 selectionArgs = newSelectionArgs; in handleInstanceQuery()
1113 selectionArgs = combine(newSelectionArgs, selectionArgs); in handleInstanceQuery()
5076 String[] newSelectionArgs = new String[newLength]; in insertSelectionArg() local
5077 newSelectionArgs[0] = arg; in insertSelectionArg()
5078 System.arraycopy(selectionArgs, 0, newSelectionArgs, 1, selectionArgs.length); in insertSelectionArg()
5079 return newSelectionArgs; in insertSelectionArg()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DContactsProvider2.java9479 String[] newSelectionArgs = new String[newLength]; in insertSelectionArg() local
9480 newSelectionArgs[0] = arg; in insertSelectionArg()
9481 System.arraycopy(selectionArgs, 0, newSelectionArgs, 1, selectionArgs.length); in insertSelectionArg()
9482 return newSelectionArgs; in insertSelectionArg()
9491 String[] newSelectionArgs = new String[newLength]; in appendSelectionArg() local
9492 newSelectionArgs[newLength] = arg; in appendSelectionArg()
9493 System.arraycopy(selectionArgs, 0, newSelectionArgs, 0, selectionArgs.length - 1); in appendSelectionArg()
9494 return newSelectionArgs; in appendSelectionArg()