Home
last modified time | relevance | path

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

12

/platform_testing/libraries/flicker/utils/src/android/tools/traces/wm/
DWindowContainerImpl.kt30 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()
DDisplayArea.kt51 return "${this::class.simpleName} {$token $title} isTaskArea=$isTaskDisplayArea" in <lambda>()
61 if (title != other.title) return false in <lambda>()
DActivity.kt59 return "${this::class.simpleName}: {$token $title} state=$state visible=$isVisible" in <lambda>()
71 if (title != other.title) return false in <lambda>()
DRootWindowContainer.kt28 return "${this::class.simpleName}: {$token $title}" in <lambda>()
DTask.kt53 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>()
DWindowToken.kt30 return "${this::class.simpleName}: {$token $title}" in <lambda>()
DWindowContainer.kt22 val title: String constant
DTaskFragment.kt62 return "${this::class.simpleName}: {$token $title} bounds=$bounds" in <lambda>()
DDisplayContent.kt111 return "${this::class.simpleName} #$displayId: 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/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/libraries/automotive-helpers/notifications-app-helper/src/android/platform/helpers/
DAutoNotificationMockingHelperImpl.java163 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()
DAutoNotificationHelperImpl.java163 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/
DIGoogleDocsHelper.java36 public void openDoc(String title); in openDoc() argument
DINotificationHelper.java334 default void openNotificationByTitle(String title, String expectedPkg) { in openNotificationByTitle() argument
/platform_testing/libraries/flicker/utils/src/android/tools/traces/parsers/wm/
DWindowManagerStateBuilder.kt93 .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/
DWindowStateSubject.kt55 override val selfFacts = listOf(Fact("Window title", windowState.title))
/platform_testing/libraries/flicker/utils/src/android/tools/traces/parsers/view/
DViewTraceParser.kt45 WindowDataParser(entry.title, entry).parse(ByteArray(0))
/platform_testing/libraries/automotive-helpers/settings-app-helper/src/android/platform/helpers/
DSettingsSecurityHelperImpl.java101 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/
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.java207 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/
DComponentNameMatcher.kt49 windows.any { windowNameFilter.invoke(it.title) } in windowMatchesAnyOf()
/platform_testing/libraries/systemui-helper/src/android/platform/helpers/media/
DMediaController.java134 public String title() { in title() method in MediaController
/platform_testing/tests/bettertogether/quickstart/performance_test/
Dnc_constants.py206 title: str = '' variable in FailTargetSummary

12