Home
last modified time | relevance | path

Searched refs:getContentDescription (Results 1 – 16 of 16) sorted by relevance

/test/uiautomator/uiautomator/src/main/java/androidx/test/uiautomator/
DAccessibilityNodeInfoDumper.java75 serializer.attribute("", "content-desc", safeCharSeqToString(node.getContentDescription())); in dumpNodeRec()
146 && safeCharSeqToString(node.getContentDescription()).isEmpty() in nafCheck()
177 if (!safeCharSeqToString(childNode.getContentDescription()).isEmpty() in childNafCheck()
DUiCollection.java56 String nodeDesc = row.getContentDescription(); in getChildByDescription()
DUiSelector.java683 s = node.getContentDescription(); in isMatchFor()
690 s = node.getContentDescription(); in isMatchFor()
697 s = node.getContentDescription(); in isMatchFor()
703 s = node.getContentDescription(); in isMatchFor()
DUiObject.java543 public @NonNull String getContentDescription() throws UiObjectNotFoundException { in getContentDescription() method in UiObject
548 return safeStringReturn(node.getContentDescription()); in getContentDescription()
DUntil.java296 String desc = object.getContentDescription();
DByMatcher.java268 && matchesCriteria(selector.mDesc, node.getContentDescription()) in matchesSelector()
DUiObject2.java382 public String getContentDescription() { in getContentDescription() method in UiObject2
383 CharSequence chars = getAccessibilityNodeInfo().getContentDescription(); in getContentDescription()
/test/uiautomator/uiautomator/api/
Dapi_lint.ignore20 MissingNullability: androidx.test.uiautomator.UiObject2#getContentDescription():
21 Missing nullability on method `getContentDescription` return
D2.2.0.txt223 …method public String! getContentDescription() throws androidx.test.uiautomator.UiObjectNotFoundExc…
275 method public String! getContentDescription();
Drestricted_2.2.0.txt223 …method public String! getContentDescription() throws androidx.test.uiautomator.UiObjectNotFoundExc…
275 method public String! getContentDescription();
Drestricted_2.3.0-beta01.txt263 …method public String getContentDescription() throws androidx.test.uiautomator.UiObjectNotFoundExce…
318 method public String! getContentDescription();
D2.3.0-beta01.txt263 …method public String getContentDescription() throws androidx.test.uiautomator.UiObjectNotFoundExce…
318 method public String! getContentDescription();
Dcurrent.txt397 …method public String getContentDescription() throws androidx.test.uiautomator.UiObjectNotFoundExce…
453 method public String! getContentDescription();
Drestricted_current.txt397 …method public String getContentDescription() throws androidx.test.uiautomator.UiObjectNotFoundExce…
453 method public String! getContentDescription();
/test/uiautomator/integration-tests/testapp/src/androidTest/java/androidx/test/uiautomator/testapp/
DUiObjectTest.java356 assertEquals("I'm accessible!", button.getContentDescription()); in testGetContentDescription()
357 assertEquals("", textView.getContentDescription()); in testGetContentDescription()
390 assertUiObjectNotFound(noNode::getContentDescription); in testTextFamily_throwsUiObjectNotFoundException()
DUiObject2Test.java302 assertEquals("I'm accessible!", buttonObject.getContentDescription()); in testGetContentDescription()
305 assertNull(textViewObject.getContentDescription()); in testGetContentDescription()