Home
last modified time | relevance | path

Searched refs:title (Results 1 – 12 of 12) sorted by relevance

/platform_testing/libraries/app-helpers/interfaces/auto/src/android/platform/helpers/
DIAutoNotificationHelper.java34 boolean checkNotificationExists(String title); in checkNotificationExists() argument
43 void removeNotification(String title); in removeNotification() argument
DIAutoMediaCenterHelper.java79 void search(String title); in search() argument
/platform_testing/libraries/app-helpers/interfaces/tv/src/android/platform/helpers/
DAbstractLeanbackAppHelper.java370 private UiObject2 getCardInRowByTitle(String title) {
373 By.focused(true).hasDescendant(By.res(getPackage(), "title_text").text(title))),
382 public String getCardContentText(String title) {
383 UiObject2 card = getCardInRowByTitle(title);
385 throw new IllegalStateException("Failed to find a card in row content " + title);
395 public boolean hasCardInRow(String title) {
396 return (getCardInRowByTitle(title) != null);
406 public void openCardInRow(String title) {
408 UiObject2 card = getCardInRowByTitle(title);
410 throw new IllegalStateException("Failed to find a card in row content " + title);
[all …]
/platform_testing/tests/functional/notificationtests/src/com/android/notification/functional/
DNotificationSecurityTests.java60 String title = "Public Notification"; in testVisibilityPublic() local
62 mHelper.sendNotification(NOTIFICATION_ID_PUBLIC, Notification.VISIBILITY_PUBLIC, title); in testVisibilityPublic()
71 assertEquals(sentTitle, title); in testVisibilityPublic()
DNotificationSecurityLargeTests.java68 String title = "Secret Title"; in testVisibilitySecret() local
70 mHelper.sendNotification(NOTIFICATION_ID_SECRET, Notification.VISIBILITY_SECRET, title); in testVisibilitySecret()
74 assertFalse(mDevice.wait(Until.hasObject(By.res("android:id/title").text(title)), in testVisibilitySecret()
DNotificationHelper.java121 public void sendNotification(int id, int visibility, String title) throws Exception { in sendNotification() argument
122 sendNotification(id, visibility, title, false); in sendNotification()
125 public void sendNotification(int id, int visibility, String title, boolean buzz) in sendNotification() argument
136 .setContentTitle(title) in sendNotification()
/platform_testing/libraries/app-helpers/interfaces/handheld/src/android/platform/helpers/
DIGoogleDocsHelper.java36 public void openDoc(String title); in openDoc() argument
DINotificationHelper.java78 public default void openNotificationByTitle(String title, String expectedPkg) { in openNotificationByTitle() argument
/platform_testing/libraries/flicker/src/com/android/server/wm/flicker/
DWindowManagerTrace.java115 if (windowState.identifier.title.contains(windowTitle)) { in isWindowVisible()
120 windowState.identifier.title + " is visible"); in isWindowVisible()
/platform_testing/libraries/system-helpers/sysui-helper/src/android/system/helpers/
DNotificationHelper.java182 int notificationId, String title, String inLineReply, PendingIntent pendingIntent, in sendNotificationsWithInLineReply() argument
192 .setContentText(title) in sendNotificationsWithInLineReply()
/platform_testing/tests/functional/downloadapp/src/com/android/functional/downloadapp/
DDownloadAppTestHelper.java206 public long addToDownloadContentDB(String title, String description, in addToDownloadContentDB() argument
221 values.put("title", title); in addToDownloadContentDB()
/platform_testing/tests/jank/UbSystemUiJankTests/src/android/platform/systemui/tests/jank/
DSystemUiJankTests.java266 for (String title : actionTitles) { in createSmartActions()
267 actions.add(createSmartAction(title)); in createSmartActions()