Searched refs:originalValues (Results 1 – 2 of 2) sorted by relevance
/frameworks/support/v4/java/android/support/v4/database/ |
D | DatabaseUtilsCompat.java | 49 public static String[] appendSelectionArgs(String[] originalValues, String[] newValues) { in appendSelectionArgs() argument 50 if (originalValues == null || originalValues.length == 0) { in appendSelectionArgs() 53 String[] result = new String[originalValues.length + newValues.length ]; in appendSelectionArgs() 54 System.arraycopy(originalValues, 0, result, 0, originalValues.length); in appendSelectionArgs() 55 System.arraycopy(newValues, 0, result, originalValues.length, newValues.length); in appendSelectionArgs()
|
/frameworks/base/core/java/android/database/ |
D | DatabaseUtils.java | 1432 public static String[] appendSelectionArgs(String[] originalValues, String[] newValues) { in appendSelectionArgs() argument 1433 if (originalValues == null || originalValues.length == 0) { in appendSelectionArgs() 1436 String[] result = new String[originalValues.length + newValues.length ]; in appendSelectionArgs() 1437 System.arraycopy(originalValues, 0, result, 0, originalValues.length); in appendSelectionArgs() 1438 System.arraycopy(newValues, 0, result, originalValues.length, newValues.length); in appendSelectionArgs()
|