Home
last modified time | relevance | path

Searched refs:firstLen (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/provider/
DSettingsValidatorsTest.java294 final int firstLen = first.length; in concat() local
296 String[] both = new String[firstLen + secondLen]; in concat()
297 System.arraycopy(first, 0, both, 0, firstLen); in concat()
298 System.arraycopy(second, 0, both, firstLen, secondLen); in concat()
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DSettingsBackupAgent.java698 final int firstLen = first.length; in concat() local
700 String[] both = new String[firstLen + secondLen]; in concat()
701 System.arraycopy(first, 0, both, 0, firstLen); in concat()
702 System.arraycopy(second, 0, both, firstLen, secondLen); in concat()
DSettingsProvider.java384 final int firstLen = first.length; in concat() local
386 String[] both = new String[firstLen + secondLen]; in concat()
387 System.arraycopy(first, 0, both, 0, firstLen); in concat()
388 System.arraycopy(second, 0, both, firstLen, secondLen); in concat()