Home
last modified time | relevance | path

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

/platform_testing/libraries/flicker/src/com/android/server/wm/traces/common/windowmanager/windows/
DWindowContainer.kt31 val title: String, in <lambda>() constant in com.android.server.wm.traces.common.windowmanager.windows.WindowContainer
44 titleOverride ?: windowContainer.title, in <lambda>()
54 open val name: String = title in <lambda>()
55 open val stableId: String get() = "${this::class.simpleName} $token $title" in <lambda>()
87 if (this.title.isEmpty() || listOf("WindowContainer", "Task") in <lambda>()
88 .any { it.contains(this.title) }) { in <lambda>()
117 if (title != other.title) return false in <lambda>()
129 var result = title.hashCode() in <lambda>()
142 title.isEmpty() && in <lambda>()
DDisplayArea.kt41 activities.any { it.title == activityName } in containsActivity()
46 return "${this::class.simpleName} {$token $title} isTaskArea=$isTaskDisplayArea" in toString()
56 if (title != other.title) return false in equals()
DActivity.kt41 return collectDescendants<WindowState> { it.title.contains(partialWindowTitle) } in hasWindow()
46 return "${this::class.simpleName}: {$token $title} state=$state visible=$isVisible" in toString()
58 if (title != other.title) return false in equals()
DRootWindowContainer.kt30 return "${this::class.simpleName}: {$token $title}" in toString()
DTask.kt99 return getActivity { activity -> activity.title.contains(activityName) } in <lambda>()
105 return "${this::class.simpleName}: {$token $title} id=$taskId bounds=$bounds" in <lambda>()
124 if (title != other.title) return false in <lambda>()
DWindowToken.kt29 return "${this::class.simpleName}: {$token $title}" in toString()
DTaskFragment.kt41 return "${this::class.simpleName}: {$token $title} bounds=$bounds" in toString()
DDisplayContent.kt89 return "${this::class.simpleName} #$id: name=$title mDisplayRect=$displayRect " + in <lambda>()
/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.java81 void search(String title); in search() argument
/platform_testing/libraries/automotive-helpers/notifications-app-helper/src/android/platform/helpers/
DAutoNotificationHelperImpl.java83 public boolean checkNotificationExists(String title) { in checkNotificationExists() argument
94 UiObject2 postedNotification = findUiObject(By.text(title)); in checkNotificationExists()
102 postedNotification = findUiObject(By.text(title)); in checkNotificationExists()
109 public void removeNotification(String title) { in removeNotification() argument
110 waitForGone(By.text(title)); in removeNotification()
112 UiObject2 postedNotification = findUiObject(By.text(title)); in removeNotification()
DAutoNotificationMockingHelperImpl.java125 private boolean checkNotificationRequiredFieldsExist(String title) { in checkNotificationRequiredFieldsExist() argument
126 if (!checkNotificationExists(title)) { in checkNotificationRequiredFieldsExist()
128 String.format("Unable to find notification with title %s", title)); in checkNotificationRequiredFieldsExist()
139 private boolean checkNotificationExists(String title) { in checkNotificationExists() argument
141 UiObject2 postedNotification = findUiObject(By.text(title)); in checkNotificationExists()
/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
138 .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.java219 default void openNotificationByTitle(String title, String expectedPkg) { in openNotificationByTitle() argument
/platform_testing/libraries/automotive-helpers/settings-app-helper/src/android/platform/helpers/
DSettingsSecurityHelperImpl.java50 UiObject2 title = titles.get(titles.size() - 1); in openChooseLockTypeMenu() local
51 if (title != null in openChooseLockTypeMenu()
52 && title.getText() in openChooseLockTypeMenu()
/platform_testing/libraries/flicker/src/com/android/server/wm/traces/parser/windowmanager/
DWindowManagerTraceParser.kt178 focusedWindow = proto.focusedWindow?.title ?: "", in <lambda>()
187 .map { it.title }.toTypedArray(), in <lambda>()
260 resumedActivity = proto.resumedActivity?.title ?: "", in <lambda>()
322 _resumedActivity = proto.resumedActivity?.title ?: "", in <lambda>()
400 val identifierName = proto.windowContainer.identifier?.title ?: "" in <lambda>()
528 title = nameOverride ?: proto.identifier?.title ?: "", in <lambda>()
/platform_testing/libraries/system-helpers/sysui-helper/src/android/system/helpers/
DNotificationHelper.java183 int notificationId, String title, String inLineReply, PendingIntent pendingIntent, in sendNotificationsWithInLineReply() argument
193 .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.java271 for (String title : actionTitles) { in createSmartActions()
272 actions.add(createSmartAction(title)); in createSmartActions()