/platform_testing/libraries/flicker/utils/src/android/tools/traces/wm/ |
D | WindowContainerImpl.kt | 30 override val title: String, constant in android.tools.traces.wm.WindowContainerImpl 51 get() = title 53 get() = "${this::class.simpleName} $token $title" 59 this.title.isEmpty() || in toString() 60 listOf("WindowContainer", "Task").any { it.contains(this.title) } in toString() 90 if (title != other.title) return false in equals() 102 var result = title.hashCode() in hashCode() 114 get() = configurationContainer.isEmpty && title.isEmpty() && token.isEmpty()
|
D | DisplayArea.kt | 51 return "${this::class.simpleName} {$token $title} isTaskArea=$isTaskDisplayArea" in <lambda>() 61 if (title != other.title) return false in <lambda>()
|
D | Activity.kt | 59 return "${this::class.simpleName}: {$token $title} state=$state visible=$isVisible" in <lambda>() 71 if (title != other.title) return false in <lambda>()
|
D | RootWindowContainer.kt | 28 return "${this::class.simpleName}: {$token $title}" in <lambda>()
|
D | Task.kt | 53 get() = "${this::class.simpleName} $token $title $taskId" in <lambda>() 122 return "${this::class.simpleName}: {$token $title} id=$taskId bounds=$bounds" in <lambda>() 141 if (title != other.title) return false in <lambda>()
|
D | WindowToken.kt | 30 return "${this::class.simpleName}: {$token $title}" in <lambda>()
|
D | WindowContainer.kt | 22 val title: String constant
|
D | TaskFragment.kt | 62 return "${this::class.simpleName}: {$token $title} bounds=$bounds" in <lambda>()
|
D | DisplayContent.kt | 111 return "${this::class.simpleName} #$displayId: 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/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/libraries/automotive-helpers/notifications-app-helper/src/android/platform/helpers/ |
D | AutoNotificationMockingHelperImpl.java | 163 private boolean checkNotificationRequiredFieldsExist(String title) { in checkNotificationRequiredFieldsExist() argument 164 if (!checkNotificationExists(title)) { in checkNotificationRequiredFieldsExist() 166 String.format("Unable to find notification with title %s", title)); in checkNotificationRequiredFieldsExist() 180 private boolean checkNotificationExists(String title) { in checkNotificationExists() argument 185 BySelector selector = By.text(title); in checkNotificationExists()
|
D | AutoNotificationHelperImpl.java | 163 public boolean checkNotificationExists(String title) { in checkNotificationExists() argument 165 BySelector selector = By.text(title); in checkNotificationExists() 172 public void removeNotification(String title) { in removeNotification() argument 175 UiObject2 postedNotification = getSpectatioUiUtil().findUiObject(By.text(title)); in removeNotification()
|
/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 | 334 default void openNotificationByTitle(String title, String expectedPkg) { in openNotificationByTitle() argument
|
/platform_testing/libraries/flicker/utils/src/android/tools/traces/parsers/wm/ |
D | WindowManagerStateBuilder.kt | 93 .setFocusedWindow(proto.focusedWindow?.title ?: "") in <lambda>() 103 .setPendingActivities(proto.rootWindowContainer.pendingActivities.map { it.title }) in <lambda>() 179 resumedActivity = proto.resumedActivity?.title ?: "", in <lambda>() 255 _resumedActivity = proto.resumedActivity?.title ?: "", in <lambda>() 352 val identifierName = proto.windowContainer.identifier?.title ?: "" in <lambda>() 497 title = nameOverride ?: proto.identifier?.title ?: "", in <lambda>() 584 private fun getWindowTitle(title: String): String { in <lambda>() 587 title.startsWith(PlatformConsts.STARTING_WINDOW_PREFIX) -> in <lambda>() 588 title.substring(PlatformConsts.STARTING_WINDOW_PREFIX.length) in <lambda>() 589 title.startsWith(PlatformConsts.DEBUGGER_WINDOW_PREFIX) -> in <lambda>() [all …]
|
/platform_testing/libraries/flicker/src/android/tools/flicker/subject/wm/ |
D | WindowStateSubject.kt | 55 override val selfFacts = listOf(Fact("Window title", windowState.title))
|
/platform_testing/libraries/flicker/utils/src/android/tools/traces/parsers/view/ |
D | ViewTraceParser.kt | 45 WindowDataParser(entry.title, entry).parse(ByteArray(0))
|
/platform_testing/libraries/automotive-helpers/settings-app-helper/src/android/platform/helpers/ |
D | SettingsSecurityHelperImpl.java | 101 UiObject2 title = titles.get(titles.size() - 1); in openChooseLockTypeMenu() local 102 if (title != null && title.getText().equalsIgnoreCase(CHOOSE_LOCK_TYPE)) { in openChooseLockTypeMenu()
|
/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 | 207 public long addToDownloadContentDB(String title, String description, in addToDownloadContentDB() argument 222 values.put("title", title); in addToDownloadContentDB()
|
/platform_testing/libraries/flicker/utils/src/android/tools/traces/component/ |
D | ComponentNameMatcher.kt | 49 windows.any { windowNameFilter.invoke(it.title) } in windowMatchesAnyOf()
|
/platform_testing/libraries/systemui-helper/src/android/platform/helpers/media/ |
D | MediaController.java | 134 public String title() { in title() method in MediaController
|
/platform_testing/tests/bettertogether/quickstart/performance_test/ |
D | nc_constants.py | 206 title: str = '' variable in FailTargetSummary
|