OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:gotIt
(Results
1 - 6
of
6
) sorted by null
/packages/apps/Settings/src/com/android/settings/nfc/
HowItWorks.java
15
Button
gotIt
= (Button) findViewById(R.id.nfc_how_it_works_button);
16
gotIt
.setOnClickListener(new View.OnClickListener() {
/frameworks/base/packages/Shell/tests/src/com/android/shell/
UiBot.java
54
boolean
gotIt
= mDevice.wait(Until.hasObject(By.pkg(SYSTEMUI_PACKAGE)), mTimeout);
55
assertTrue("could not get system ui (" + SYSTEMUI_PACKAGE + ")",
gotIt
);
76
boolean
gotIt
= mDevice.wait(Until.hasObject(By.text(text)), mTimeout);
77
assertTrue("object with text '(" + text + "') not visible yet",
gotIt
);
87
boolean
gotIt
= mDevice.wait(Until.hasObject(By.res(id)), mTimeout);
88
assertTrue("object with id '(" + id + "') not visible yet",
gotIt
);
146
boolean
gotIt
= mDevice.wait(Until.hasObject(By.text(shareText)), mTimeout);
149
if (
gotIt
) {
175
boolean
gotIt
= mDevice.wait(Until.hasObject(By.res("android", "button_once")), mTimeout);
176
assertTrue("'Just Once' button not visible yet",
gotIt
);
[
all
...]
/platform_testing/libraries/play-movies-app-helper/src/android/platform/test/helpers/
PlayMoviesHelperImpl.java
99
BySelector
gotIt
= By.textContains("Got It");
101
while (mDevice.hasObject(
gotIt
) && count < 3) {
102
UiObject2 gotItButton = mDevice.findObject(
gotIt
);
105
mDevice.wait(Until.gone(
gotIt
), 1000);
/platform_testing/tests/jank/sysapp/src/com/android/sysapp/janktests/
CalendarJankTests.java
144
UiObject2
gotIt
= mDevice.wait(Until.findObject(
146
if (
gotIt
!= null) {
147
gotIt
.click();
/platform_testing/libraries/maps-app-helper/src/android/platform/test/helpers/
MapsHelperImpl.java
125
BySelector
gotIt
= By.text(Pattern.compile("GOT IT", Pattern.CASE_INSENSITIVE));
126
UiObject2 sideMenuTut = mDevice.wait(Until.findObject(
gotIt
), 5000);
/cts/hostsidetests/appsecurity/test-apps/DocumentClient/src/com/android/cts/documentclient/
ScopedDirectoryAccessClientTest.java
351
boolean
gotIt
= mDevice.wait(Until.hasObject(By.res(id)), TIMEOUT);
353
+ volumeDesc + " and " + path,
gotIt
);
Completed in 767 milliseconds