Home
last modified time | relevance | path

Searched defs:text (Results 1 – 20 of 20) sorted by relevance

/platform_testing/libraries/app-helpers/interfaces/auto/src/android/platform/helpers/
DIAutoGeneralUIHelper.java32 void clickElementWithText(String text); in clickElementWithText()
44 boolean hasElementWithText(String text); in hasElementWithText()
DIAutoCarSmsMessengerHelper.java41 boolean isSmsPreviewDisplayed(String text); in isSmsPreviewDisplayed()
/platform_testing/tests/automotive/snippets/phone/src/com/google/android/mobly/snippet/bundled/
DUISnippet.java38 public void clickUIElementWithText(String text) { in clickUIElementWithText()
48 public boolean hasUIElementWithText(String text) { in hasUIElementWithText()
DCarSmsMessengerSnippet.java52 public boolean isSmsPreviewTextDisplayed(String text) { in isSmsPreviewTextDisplayed()
/platform_testing/libraries/automotive-helpers/general-ui-helper/src/android.platform.helpers/
DUIHelperImpl.java57 public void clickElementWithText(String text) { in clickElementWithText()
72 public boolean hasElementWithText(String text) { in hasElementWithText()
/platform_testing/libraries/app-helpers/interfaces/common/src/android/platform/helpers/
DIGoogleKeyboardHelper.java33 public void typeText(String text, long delayBetweenKeyPresses); in typeText()
DIYouTubeHelper.java37 private final String text; field in IYouTubeHelper.VideoQuality
39 VideoQuality(String text) { in VideoQuality()
/platform_testing/libraries/app-helpers/spectatio/spectatio-util/src/android/platform/spectatio/configs/
DWorkflowTaskConfig.java31 public WorkflowTaskConfig(String text, UiElement uiElement) { in WorkflowTaskConfig()
/platform_testing/libraries/app-helpers/interfaces/handheld/src/android/platform/helpers/
DINotificationHelper.java179 String senderName, int id, String text, String shortcutId, String messageToActivity) { in postBubbleNotification()
191 default void postBubbleNotification(String senderName, int id, String text) { in postBubbleNotification()
202 default void updateBubbleNotification(String senderName, int id, String text) { in updateBubbleNotification()
211 default UiObject2 getNotificationByText(String text) { in getNotificationByText()
DIGoogleHelper.java31 private final String text; field in IGoogleHelper.NavigationTab
33 NavigationTab(String text) { in NavigationTab()
/platform_testing/libraries/app-helpers/spectatio/spectatio-util/src/android/platform/spectatio/utils/
DSpectatioUiUtil.java319 public UiObject2 findUiObject(String text) { in findUiObject()
347 public boolean hasUiElement(String text) { in hasUiElement()
365 BySelector forward, BySelector backward, String text) throws MissingUiElementException { in scrollAndCheckIfUiElementExist()
384 public boolean scrollAndCheckIfUiElementExist(BySelector scrollableSelector, String text) in scrollAndCheckIfUiElementExist()
403 BySelector scrollableSelector, String text, boolean isVertical) in scrollAndCheckIfUiElementExist()
649 public void setTextForUiElement(UiObject2 uiObject, String text) { in setTextForUiElement()
703 public UiObject2 scrollAndFindUiObject(BySelector forward, BySelector backward, String text) in scrollAndFindUiObject()
821 public UiObject2 scrollAndFindUiObject(BySelector scrollableSelector, String text) in scrollAndFindUiObject()
842 BySelector scrollableSelector, String text, boolean isVertical) in scrollAndFindUiObject()
1061 private void validateText(String text, String type) { in validateText()
/platform_testing/tests/microbenchmarks/accessibility/src/android/accessibility/microbenchmark/
DAccessibilityNodeMicrobenchmark.java68 TextView text = new TextView(mActivity); in setup() local
/platform_testing/libraries/app-helpers/core/src/android/platform/helpers/
DIAppHelper.java98 abstract boolean sendTextEvents(String text, long delay); in sendTextEvents()
DAbstractStandardAppHelper2.java481 public boolean sendTextEvents(String text, long delay) { in sendTextEvents()
505 protected UiObject2 findElementByText(String text) { in findElementByText()
544 protected void waitAndClickByText(String text, long timeout) { in waitAndClickByText()
559 protected void checkElementWithTextExists(String text, long timeout) { in checkElementWithTextExists()
DAbstractStandardAppHelper.java522 public boolean sendTextEvents(String text, long delay) { in sendTextEvents()
546 protected UiObject2 findElementByText(String text) { in findElementByText()
585 protected void waitAndClickByText(String text, long timeout) { in waitAndClickByText()
600 protected void checkElementWithTextExists(String text, long timeout) { in checkElementWithTextExists()
/platform_testing/libraries/automotive-helpers/car-sms-messenger-helper/src/android/platform/helpers/
DCarSmsMessengerHelperImpl.java75 public boolean isSmsPreviewDisplayed(String text) { in isSmsPreviewDisplayed()
/platform_testing/tests/functional/devicehealthchecks/src/com/android/devicehealthchecks/
DCrashCheckBase.java144 private static String truncate(String text, int maxLines) { in truncate()
/platform_testing/libraries/system-helpers/sysui-helper/src/android/system/helpers/
DNotificationHelper.java252 public static PendingIntent getPendingIntent(Context context, String text) { in getPendingIntent()
/platform_testing/libraries/sts-common-util/host-side/src/com/android/sts/common/tradefed/testtype/
DSecurityTestCase.java495 String text[] = line.split("\\s+"); in assumeIsSupportedNfcDevice() local
/platform_testing/tests/automotive/mobly_tests/utilities/
Dspectatio_utils.py518 def verify_sms_preview_text(self, expected, text): argument