Home
last modified time | relevance | path

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

/cts/tests/tests/content/src/android/content/cts/
DComponentNameTest.java170 final String shortString = getComponentName().toShortString(); in testToShortString() local
171 assertEquals("{android.content.cts/android.content.cts.ComponentNameTest}", shortString); in testToShortString()
/cts/tests/tests/widget/src/android/widget/cts/
DTextViewTest.java1383 String shortString = "short"; in testSetTextKeepState1() local
1388 mTextView.setTextKeepState(shortString); in testSetTextKeepState1()
1389 assertEquals(shortString, mTextView.getText().toString()); in testSetTextKeepState1()
1395 Selection.setSelection((Spannable) mTextView.getText(), shortString.length() + 1); in testSetTextKeepState1()
1396 mTextView.setTextKeepState(shortString); in testSetTextKeepState1()
1397 assertEquals(shortString, mTextView.getText().toString()); in testSetTextKeepState1()
1398 assertEquals(shortString.length(), mTextView.getSelectionStart()); in testSetTextKeepState1()
1399 assertEquals(shortString.length(), mTextView.getSelectionEnd()); in testSetTextKeepState1()
1404 mTextView.setTextKeepState(shortString); in testSetTextKeepState1()
1405 assertEquals(shortString, mTextView.getText().toString()); in testSetTextKeepState1()
[all …]
/cts/tests/tests/graphics/src/android/graphics/cts/
DPaintTest.java1125 String shortString = "\u0644"; in testMeasureTextContext() local
1129 float width = p.measureText(shortString); in testMeasureTextContext()