Searched refs:shortString (Results 1 – 3 of 3) sorted by relevance
221 final String shortString = getComponentName().toShortString(); in testToShortString() local222 assertEquals("{android.content.cts/android.content.cts.ComponentNameTest}", shortString); in testToShortString()
1597 String shortString = "short"; in testSetTextKeepState1() local1602 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 …]
1282 String shortString = "\u0644"; in testMeasureTextContext() local1286 float width = p.measureText(shortString); in testMeasureTextContext()