/platform_testing/libraries/flicker/src/com/android/server/wm/traces/common/windowmanager/windows/ |
D | WindowContainer.kt | 31 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>()
|
D | DisplayArea.kt | 41 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()
|
D | Activity.kt | 41 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()
|
D | RootWindowContainer.kt | 30 return "${this::class.simpleName}: {$token $title}" in toString()
|
D | Task.kt | 99 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>()
|
D | WindowToken.kt | 29 return "${this::class.simpleName}: {$token $title}" in toString()
|
D | TaskFragment.kt | 41 return "${this::class.simpleName}: {$token $title} bounds=$bounds" in toString()
|
D | DisplayContent.kt | 89 return "${this::class.simpleName} #$id: name=$title mDisplayRect=$displayRect " + in <lambda>()
|
/platform_testing/libraries/app-helpers/interfaces/auto/src/android/platform/helpers/ |
D | IAutoNotificationHelper.java | 34 boolean checkNotificationExists(String title); in checkNotificationExists() argument 43 void removeNotification(String title); in removeNotification() argument
|
D | IAutoMediaCenterHelper.java | 81 void search(String title); in search() argument
|
/platform_testing/libraries/automotive-helpers/notifications-app-helper/src/android/platform/helpers/ |
D | AutoNotificationHelperImpl.java | 83 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()
|
D | AutoNotificationMockingHelperImpl.java | 125 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/ |
D | AbstractLeanbackAppHelper.java | 370 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/ |
D | NotificationSecurityTests.java | 60 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()
|
D | NotificationSecurityLargeTests.java | 68 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()
|
D | NotificationHelper.java | 121 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/ |
D | IGoogleDocsHelper.java | 36 public void openDoc(String title); in openDoc() argument
|
D | INotificationHelper.java | 219 default void openNotificationByTitle(String title, String expectedPkg) { in openNotificationByTitle() argument
|
/platform_testing/libraries/automotive-helpers/settings-app-helper/src/android/platform/helpers/ |
D | SettingsSecurityHelperImpl.java | 50 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/ |
D | WindowManagerTraceParser.kt | 178 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/ |
D | NotificationHelper.java | 183 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/ |
D | DownloadAppTestHelper.java | 206 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/ |
D | SystemUiJankTests.java | 271 for (String title : actionTitles) { in createSmartActions() 272 actions.add(createSmartAction(title)); in createSmartActions()
|