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.java1539 String shortString = "short"; in testSetTextKeepState1() local
1544 mTextView.setTextKeepState(shortString); in testSetTextKeepState1()
1545 assertEquals(shortString, mTextView.getText().toString()); in testSetTextKeepState1()
1551 Selection.setSelection((Spannable) mTextView.getText(), shortString.length() + 1); in testSetTextKeepState1()
1552 mTextView.setTextKeepState(shortString); in testSetTextKeepState1()
1553 assertEquals(shortString, mTextView.getText().toString()); in testSetTextKeepState1()
1554 assertEquals(shortString.length(), mTextView.getSelectionStart()); in testSetTextKeepState1()
1555 assertEquals(shortString.length(), mTextView.getSelectionEnd()); in testSetTextKeepState1()
1560 mTextView.setTextKeepState(shortString); in testSetTextKeepState1()
1561 assertEquals(shortString, mTextView.getText().toString()); in testSetTextKeepState1()
[all …]
/cts/tests/tests/graphics/src/android/graphics/cts/
DPaintTest.java1265 String shortString = "\u0644"; in testMeasureTextContext() local
1269 float width = p.measureText(shortString); in testMeasureTextContext()