Searched refs:firstLen (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/tests/coretests/src/android/provider/ |
D | SettingsValidatorsTest.java | 294 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/ |
D | SettingsBackupAgent.java | 698 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()
|
D | SettingsProvider.java | 384 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()
|