Home
last modified time | relevance | path

Searched refs:getClassName (Results 1 – 14 of 14) sorted by relevance

/test/uiautomator/uiautomator/api/
Dapi_lint.ignore18 MissingNullability: androidx.test.uiautomator.UiObject2#getClassName():
19 Missing nullability on method `getClassName` return
D2.2.0.txt222 method public String! getClassName() throws androidx.test.uiautomator.UiObjectNotFoundException;
274 method public String! getClassName();
Drestricted_2.2.0.txt222 method public String! getClassName() throws androidx.test.uiautomator.UiObjectNotFoundException;
274 method public String! getClassName();
Drestricted_2.3.0-beta01.txt262 method public String getClassName() throws androidx.test.uiautomator.UiObjectNotFoundException;
317 method public String! getClassName();
D2.3.0-beta01.txt262 method public String getClassName() throws androidx.test.uiautomator.UiObjectNotFoundException;
317 method public String! getClassName();
Dcurrent.txt396 method public String getClassName() throws androidx.test.uiautomator.UiObjectNotFoundException;
452 method public String! getClassName();
Drestricted_current.txt396 method public String getClassName() throws androidx.test.uiautomator.UiObjectNotFoundException;
452 method public String! getClassName();
/test/uiautomator/uiautomator/src/main/java/androidx/test/uiautomator/
DAccessibilityNodeInfoDumper.java73 serializer.attribute("", "class", safeCharSeqToString(node.getClassName())); in dumpNodeRec()
126 String className = safeCharSeqToString(node.getClassName()); in nafExcludedClass()
DUiSelector.java656 s = node.getClassName(); in isMatchFor()
662 s = node.getClassName(); in isMatchFor()
DUiObject2.java371 public String getClassName() { in getClassName() method in UiObject2
372 CharSequence chars = getAccessibilityNodeInfo().getClassName(); in getClassName()
1052 return this.getClassName().contains("RecyclerView"); in isRecyclerView()
DUiObject.java529 public @NonNull String getClassName() throws UiObjectNotFoundException { in getClassName() method in UiObject
534 return safeStringReturn(node.getClassName()); in getClassName()
DByMatcher.java267 && matchesCriteria(selector.mClazz, node.getClassName()) in matchesSelector()
/test/uiautomator/integration-tests/testapp/src/androidTest/java/androidx/test/uiautomator/testapp/
DUiObjectTest.java345 assertEquals("android.widget.Button", button.getClassName()); in testGetClassName()
346 assertEquals("android.widget.TextView", textView.getClassName()); in testGetClassName()
389 assertUiObjectNotFound(noNode::getClassName); in testTextFamily_throwsUiObjectNotFoundException()
DUiObject2Test.java277 childrenClassNames.add(children.get(0).getClassName()); in testGetChildren()
278 childrenClassNames.add(children.get(1).getClassName()); in testGetChildren()
291 assertEquals("android.widget.Button", button.getClassName()); in testGetClassName()
294 assertEquals("android.widget.TextView", textView.getClassName()); in testGetClassName()