Home
last modified time | relevance | path

Searched refs:textToSet (Results 1 – 2 of 2) sorted by relevance

/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
DAccessibilityTextActionTest.java166 String textToSet = mActivity.getString(R.string.text_input_blah); in testEditableTextView_shouldExposeAndRespondToSetTextAction() local
168 AccessibilityNodeInfo.ACTION_ARGUMENT_SET_TEXT_CHARSEQUENCE, textToSet); in testEditableTextView_shouldExposeAndRespondToSetTextAction()
174 TextUtils.equals(textToSet, textView.getText())); in testEditableTextView_shouldExposeAndRespondToSetTextAction()
192 String textToSet = mActivity.getString(R.string.text_input_blah); in testEditText_shouldExposeAndRespondToSetTextAction() local
194 AccessibilityNodeInfo.ACTION_ARGUMENT_SET_TEXT_CHARSEQUENCE, textToSet); in testEditText_shouldExposeAndRespondToSetTextAction()
200 TextUtils.equals(textToSet, editText.getText())); in testEditText_shouldExposeAndRespondToSetTextAction()
/cts/tests/tests/widget/src/android/widget/cts/
DTextViewTest.java7446 final StringBuilder textToSet = new StringBuilder().append(initialText); in testAutoSizeCallers_setText() local
7452 autoSizeTextView.setText(textToSet.toString())); in testAutoSizeCallers_setText()
7459 textToSet.append(initialText); in testAutoSizeCallers_setText()
7461 autoSizeTextView.setText(textToSet.toString())); in testAutoSizeCallers_setText()
7472 autoSizeTextView.setText(textToSet.toString())); in testAutoSizeCallers_setText()
7479 textToSet.replace((textToSet.length() - initialText.length()), textToSet.length(), ""); in testAutoSizeCallers_setText()
7481 autoSizeTextView.setText(textToSet.toString())); in testAutoSizeCallers_setText()