OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:withText
(Results
1 - 25
of
27
) sorted by null
1
2
/developers/samples/android/ui/window/MultiWindowPlayground/Application/src/androidTest/java/
LaunchTests.java
33
import static android.support.test.espresso.matcher.ViewMatchers.
withText
;
51
.check(matches(
withText
(R.string.activity_description_basic)));
61
.check(matches(
withText
(R.string.activity_description_unresizable)));
72
.check(matches(
withText
(R.string.activity_adjacent_description)));
82
.check(matches(
withText
(R.string.activity_custom_description)));
93
.check(matches(
withText
(R.string.activity_minimum_description)));
103
.check(matches(
withText
(R.string.activity_bounds_description)));
/frameworks/support/core-ui/tests/java/android/support/v4/view/
ViewPagerWithTabStripTest.java
24
import static android.support.test.espresso.matcher.ViewMatchers.
withText
;
50
onView(allOf(isDescendantOfA(withId(R.id.titles)),
withText
("Red"))).perform(click());
54
onView(allOf(isDescendantOfA(withId(R.id.titles)),
withText
("Green"))).perform(click());
58
onView(allOf(isDescendantOfA(withId(R.id.titles)),
withText
("Red"))).perform(click());
65
onView(allOf(isDescendantOfA(withId(R.id.titles)),
withText
("Green"))).perform(click());
69
onView(allOf(isDescendantOfA(withId(R.id.titles)),
withText
("Blue"))).perform(click());
ViewPagerWithTitleStripTest.java
24
import static android.support.test.espresso.matcher.ViewMatchers.
withText
;
51
onView(allOf(isDescendantOfA(withId(R.id.titles)),
withText
("Red"))).perform(click());
55
onView(allOf(isDescendantOfA(withId(R.id.titles)),
withText
("Green"))).perform(click());
61
onView(allOf(isDescendantOfA(withId(R.id.titles)),
withText
("Red"))).perform(click());
65
onView(allOf(isDescendantOfA(withId(R.id.titles)),
withText
("Green"))).perform(click());
69
onView(allOf(isDescendantOfA(withId(R.id.titles)),
withText
("Blue"))).perform(click());
BaseViewPagerTest.java
31
import static android.support.test.espresso.matcher.ViewMatchers.
withText
;
461
withText
("Body 0"))));
475
withText
("Body 1"))));
489
withText
("Body 2"))));
503
withText
("Body 3"))));
544
allOf(
withText
(expectedStartTitle), isDisplayed(), startAlignedToParent()))));
549
allOf(
withText
(expectedSelectedTitle), isDisplayed(), centerAlignedInParent()))));
554
allOf(
withText
(expectedEndTitle), isDisplayed(), endAlignedToParent()))));
[
all
...]
/frameworks/support/v7/appcompat/tests/src/android/support/v7/app/
NightModeTestCase.java
22
import static android.support.test.espresso.matcher.ViewMatchers.
withText
;
59
onView(withId(R.id.text_night_mode)).check(matches(
withText
(STRING_DAY)));
72
onView(withId(R.id.text_night_mode)).check(matches(
withText
(STRING_NIGHT)));
85
onView(withId(R.id.text_night_mode)).check(matches(
withText
(STRING_DAY)));
114
onView(withId(R.id.text_night_mode)).check(matches(
withText
(STRING_NIGHT)));
AlertDialogTest.java
133
onView(
withText
(expectedTitle)).inRoot(isDialog()).check(matches(isDisplayed()));
134
onView(
withText
(expectedMessage)).inRoot(isDialog()).check(matches(isDisplayed()));
135
onView(
withText
(expectedMessage)).inRoot(isDialog()).check(
136
isBelow(
withText
(expectedTitle)));
160
onView(
withText
(dialogMessage)).inRoot(isDialog()).check(matches(isDisplayed()));
175
onView(
withText
(dialogInitialMessage)).inRoot(isDialog()).check(matches(isDisplayed()));
185
onView(
withText
(dialogInitialMessage)).inRoot(isDialog()).check(doesNotExist());
187
onView(
withText
(dialogUpdatedMessage)).inRoot(isDialog()).check(matches(isDisplayed()));
205
onView(
withText
(title)).inRoot(isDialog()).check(doesNotExist());
208
onView(
withText
(expectedCustomTitle)).inRoot(isDialog()).check
[
all
...]
AlertDialogCursorTest.java
163
onView(
withText
("Dialog title")).inRoot(isDialog()).check(matches(isDisplayed()));
251
onView(
withText
("Dialog title")).inRoot(isDialog()).check(matches(isDisplayed()));
362
onView(
withText
("Dialog title")).inRoot(isDialog()).check(matches(isDisplayed()));
/frameworks/base/core/tests/coretests/src/android/widget/espresso/
FloatingToolbarEspressoUtils.java
28
import static android.support.test.espresso.matcher.ViewMatchers.
withText
;
109
onFloatingToolBar().check(matches(hasDescendant(
withText
(itemLabel))));
118
onFloatingToolBar().check(matches(hasDescendant(
withText
(itemLabel))));
147
onFloatingToolBarItem(
withText
(itemLabel)).check(matches(isDisplayed()));
152
onFloatingToolBarItem(
withText
(itemLabel)).perform(click());
SuggestionsPopupwindowUtils.java
25
import static android.support.test.espresso.matcher.ViewMatchers.
withText
;
82
onSuggestionsPopupItem(
withText
(itemLabel)).check(matches(isDisplayed()));
91
onSuggestionsPopupItem(
withText
(itemLabel)).perform(new SuggestionItemClickAction());
ContextMenuUtils.java
27
import static android.support.test.espresso.matcher.ViewMatchers.
withText
;
88
hasDescendant(
withText
(itemLabel))))));
/frameworks/support/design/tests/src/android/support/design/widget/
NavigationViewTest.java
46
import static android.support.test.espresso.matcher.ViewMatchers.
withText
;
131
onView(allOf(
withText
(mMenuStringContent.get(MENU_CONTENT_ITEM_IDS[i])),
147
onView(allOf(
withText
(mMenuStringContent.get(MENU_CONTENT_ITEM_IDS[i])),
158
onView(allOf(
withText
(mMenuStringContent.get(MENU_CONTENT_ITEM_IDS[i])),
176
onView(allOf(
withText
(mMenuStringContent.get(MENU_CONTENT_ITEM_IDS[i])),
189
onView(allOf(
withText
(mMenuStringContent.get(MENU_CONTENT_ITEM_IDS[i])),
213
hasDescendant(
withText
(mMenuStringContent.get(MENU_CONTENT_ITEM_IDS[i]))),
229
hasDescendant(
withText
(mMenuStringContent.get(MENU_CONTENT_ITEM_IDS[i]))),
245
hasDescendant(
withText
(mMenuStringContent.get(MENU_CONTENT_ITEM_IDS[i]))),
288
onView(allOf(
withText
(mMenuStringContent.get(R.id.destination_home))
[
all
...]
TextInputLayoutTest.java
32
import static android.support.test.espresso.matcher.ViewMatchers.
withText
;
72
onView(
withText
(ERROR_MESSAGE_1)).check(matches(isDisplayed()));
83
onView(
withText
(ERROR_MESSAGE_1)).check(doesNotExist());
96
onView(
withText
(ERROR_MESSAGE_2)).check(matches(isDisplayed()));
BottomNavigationViewTest.java
25
import static android.support.test.espresso.matcher.ViewMatchers.
withText
;
98
onView(allOf(
withText
(mMenuStringContent.get(R.id.destination_profile)),
109
onView(allOf(
withText
(mMenuStringContent.get(R.id.destination_people)),
SnackbarTest.java
72
withText
(expectedMessage).matches(allOf(
78
withText
(expectedAction).matches(allOf(
TabLayoutWithViewPagerTest.java
437
onView(allOf(isDescendantOfA(withId(R.id.tabs)),
withText
("Title " + j))).
510
hasDescendant(
withText
(tabTitle)));
/frameworks/support/v7/appcompat/tests/src/android/support/v7/widget/
PopupMenuTest.java
28
import static android.support.test.espresso.matcher.ViewMatchers.
withText
;
119
onView(
withText
(mResources.getString(R.string.popup_menu_highlight)))
123
onView(
withText
(mResources.getString(R.string.popup_menu_edit)))
127
onView(
withText
(mResources.getString(R.string.popup_menu_delete)))
131
onView(
withText
(mResources.getString(R.string.popup_menu_ignore)))
135
onView(
withText
(mResources.getString(R.string.popup_menu_share)))
139
onView(
withText
(mResources.getString(R.string.popup_menu_print)))
144
onView(
withText
(mResources.getString(R.string.popup_menu_share_email)))
147
onView(
withText
(mResources.getString(R.string.popup_menu_share_circles)))
377
onView(
withText
(mResources.getString(R.string.popup_menu_delete))
[
all
...]
AppCompatSpinnerTest.java
34
import static android.support.test.espresso.matcher.ViewMatchers.
withText
;
79
Matcher popupContentMatcher = hasChild(
withText
(itemText));
87
onView(
withText
(itemText)).perform(click());
ListPopupWindowTest.java
103
onView(
withText
("Alice"))
106
onView(
withText
("Bob"))
109
onView(
withText
("Charlie"))
112
onView(
withText
("Deirdre"))
115
onView(
withText
("El"))
258
onView(
withText
("Charlie"))
/frameworks/base/core/tests/coretests/src/android/widget/
SuggestionsPopupWindowTest.java
27
import static android.support.test.espresso.matcher.ViewMatchers.
withText
;
175
onView(withId(R.id.textview)).check(matches(
withText
("abc DEF ghi")));
188
onView(withId(R.id.textview)).check(matches(
withText
("abc ghi")));
241
onView(withId(R.id.textview)).check(matches(
withText
("abc DEF ghi")));
TextViewActivityMouseTest.java
44
import static android.support.test.espresso.matcher.ViewMatchers.
withText
;
164
onView(withId(R.id.textview)).check(matches(
withText
("abc ghi.def")));
181
onView(withId(R.id.textview)).check(matches(
withText
("abc ghi.def")));
TextViewActivityTest.java
45
import static android.support.test.espresso.matcher.ViewMatchers.
withText
;
81
onView(withId(R.id.textview)).check(matches(
withText
(helloWorld)));
93
onView(withId(R.id.textview)).check(matches(
withText
("Hello orld!")));
178
onView(withId(R.id.textview)).check(matches(
withText
("abc ghi.def")));
187
onView(withId(R.id.textview)).check(matches(
withText
(text)));
[
all
...]
/frameworks/base/packages/Keyguard/scripts/
new_merge.py
130
def prepareFileForCompare(inFile, outFile, skip="", replace="",
withText
=""):
144
fout.write(line.replace(replace,
withText
))
/external/opencv3/samples/winrt/JavaScript/sample-utils/
sample-utils.css
162
.imageHolder.
withText
/prebuilts/maven_repo/android/com/android/databinding/adapters/1.0-rc0/
adapters-1.0-rc0.jar
/prebuilts/maven_repo/android/com/android/databinding/adapters/1.0-rc1/
adapters-1.0-rc1.jar
Completed in 1233 milliseconds
1
2