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.java221 final String shortString = getComponentName().toShortString(); in testToShortString() local
222 assertEquals("{android.content.cts/android.content.cts.ComponentNameTest}", shortString); in testToShortString()
/cts/tests/tests/widget/src/android/widget/cts/
DTextViewTest.java1597 String shortString = "short"; in testSetTextKeepState1() local
1602 mTextView.setTextKeepState(shortString); in testSetTextKeepState1()
1603 assertEquals(shortString, mTextView.getText().toString()); in testSetTextKeepState1()
1609 Selection.setSelection((Spannable) mTextView.getText(), shortString.length() + 1); in testSetTextKeepState1()
1610 mTextView.setTextKeepState(shortString); in testSetTextKeepState1()
1611 assertEquals(shortString, mTextView.getText().toString()); in testSetTextKeepState1()
1612 assertEquals(shortString.length(), mTextView.getSelectionStart()); in testSetTextKeepState1()
1613 assertEquals(shortString.length(), mTextView.getSelectionEnd()); in testSetTextKeepState1()
1618 mTextView.setTextKeepState(shortString); in testSetTextKeepState1()
1619 assertEquals(shortString, mTextView.getText().toString()); in testSetTextKeepState1()
[all …]
/cts/tests/tests/graphics/src/android/graphics/cts/
DPaintTest.java1282 String shortString = "\u0644"; in testMeasureTextContext() local
1286 float width = p.measureText(shortString); in testMeasureTextContext()