Searched refs:charArray (Results 1 – 4 of 4) sorted by relevance
/cts/tests/tests/content/src/android/content/pm/cts/ |
D | SignatureTest.java | 84 char[] charArray = signature.toChars(); in testSignatureToChars() local 85 String actualString = new String(charArray); in testSignatureToChars() 95 char[] charArray = signature.toChars(existingCharArray, intArray); in testSignatureToCharsExistingArrayCorrectlySized() local 98 existingCharArray == charArray); in testSignatureToCharsExistingArrayCorrectlySized() 100 String actualString = new String(charArray); in testSignatureToCharsExistingArrayCorrectlySized() 113 char[] charArray = signature.toChars(existingCharArray, intArray); in testSignatureToCharsExistingArrayTooSmall() local 116 existingCharArray == charArray); in testSignatureToCharsExistingArrayTooSmall() 118 String actualString = new String(charArray); in testSignatureToCharsExistingArrayTooSmall() 131 char[] charArray = signature.toChars(existingCharArray, intArray); in testSignatureToCharsNullArrays() local 134 existingCharArray == charArray); in testSignatureToCharsNullArrays() [all …]
|
/cts/tests/tests/graphics/src/android/graphics/text/cts/ |
D | TextRunShaperTest.java | 145 char[] charArray = text.toCharArray(); in shapeText_twoAPISameResult() local 147 charArray, 0, charArray.length, 0, charArray.length, 0f, 0f, false, paint); in shapeText_twoAPISameResult()
|
/cts/tests/tests/os/src/android/os/cts/ |
D | BundleTest.java | 243 char[] charArray = mBundle.getCharArray(KEY); in testGetCharArray() local 244 assertEquals('h', charArray[0]); in testGetCharArray() 245 assertEquals('i', charArray[1]); in testGetCharArray() 247 charArray = mBundle.getCharArray(KEY); in testGetCharArray() 248 assertEquals('h', charArray[0]); in testGetCharArray() 249 assertEquals('i', charArray[1]); in testGetCharArray()
|
/cts/tests/tests/text/src/android/text/cts/ |
D | SpannableStringBuilderTest.java | 847 final char[] charArray = new char[75000]; in testReplace_shouldNotThrowIndexOutOfBoundsExceptionForLongText() local 848 Arrays.fill(charArray, 'a'); in testReplace_shouldNotThrowIndexOutOfBoundsExceptionForLongText() 849 final String text = new String(charArray, 0, 50000); in testReplace_shouldNotThrowIndexOutOfBoundsExceptionForLongText() 850 final String copiedText = new String(charArray); in testReplace_shouldNotThrowIndexOutOfBoundsExceptionForLongText()
|