Home
last modified time | relevance | path

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

/frameworks/base/core/tests/coretests/src/android/widget/
DTextViewActivityMouseTest.java85 final String helloWorld = "Hello world!"; in testSelectTextByDrag() local
87 onView(withId(R.id.textview)).perform(replaceText(helloWorld)); in testSelectTextByDrag()
92 mouseDragOnText(helloWorld.indexOf("llo"), helloWorld.indexOf("ld!"))); in testSelectTextByDrag()
101 onView(withId(R.id.textview)).perform(mouseClickOnTextAtIndex(helloWorld.indexOf("w"))); in testSelectTextByDrag()
109 final String helloWorld = "Hello world!"; in testSelectTextByDrag_reverse() local
111 onView(withId(R.id.textview)).perform(replaceText(helloWorld)); in testSelectTextByDrag_reverse()
113 mouseDragOnText( helloWorld.indexOf("ld!"), helloWorld.indexOf("llo"))); in testSelectTextByDrag_reverse()
222 final String helloWorld = "Hello world!"; in testSelectTextByLongClick() local
224 onView(withId(R.id.textview)).perform(replaceText(helloWorld)); in testSelectTextByLongClick()
230 helloWorld.indexOf("world"))); in testSelectTextByLongClick()
[all …]
DTextViewActivityTest.java122 final String helloWorld = "Hello world!"; in testTypedTextIsOnScreen() local
125 onView(withId(R.id.textview)).perform(replaceText(helloWorld)); in testTypedTextIsOnScreen()
127 onView(withId(R.id.textview)).check(matches(withText(helloWorld))); in testTypedTextIsOnScreen()
131 final String helloWorld = "Hello world!"; in testPositionCursorAtTextAtIndex() local
132 onView(withId(R.id.textview)).perform(replaceText(helloWorld)); in testPositionCursorAtTextAtIndex()
133 onView(withId(R.id.textview)).perform(clickOnTextAtIndex(helloWorld.indexOf("world"))); in testPositionCursorAtTextAtIndex()
177 final String helloWorld = "Hello Kirk!"; in testLongPressToSelect() local
179 onView(withId(R.id.textview)).perform(replaceText(helloWorld)); in testLongPressToSelect()
181 longPressOnTextAtIndex(helloWorld.indexOf("Kirk"))); in testLongPressToSelect()
188 final String helloWorld = "Hello big round sun!"; in testLongPressEmptySpace() local
[all …]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
DCameraMetadataTest.java944 String helloWorld = new String("HelloWorld"); in testReadWriteString() local
948 mMetadata.set(gpsProcessingMethodKey, helloWorld); in testReadWriteString()
951 assertEquals(helloWorld, actual); in testReadWriteString()