Home
last modified time | relevance | path

Searched refs:s (Results 1 – 2 of 2) sorted by relevance

/test/uiautomator/uiautomator/src/main/java/androidx/test/uiautomator/
DUiSelector.java643 CharSequence s = null; in isMatchFor() local
656 s = node.getClassName(); in isMatchFor()
657 if (s == null || !s.toString().contentEquals(getString(criterion))) { in isMatchFor()
662 s = node.getClassName(); in isMatchFor()
663 if (s == null || !getPattern(criterion).matcher(s).matches()) { in isMatchFor()
683 s = node.getContentDescription(); in isMatchFor()
684 if (s == null || !s.toString().toLowerCase() in isMatchFor()
690 s = node.getContentDescription(); in isMatchFor()
691 if (s == null || !s.toString().toLowerCase() in isMatchFor()
697 s = node.getContentDescription(); in isMatchFor()
[all …]
/test/ext/junit-gtest/src/main/cpp/nativehelper/
Dscoped_local_ref.h53 ScopedLocalRef(ScopedLocalRef&& s) : mEnv(s.mEnv), mLocalRef(s.release()) {} in ScopedLocalRef() argument
63 ScopedLocalRef& operator=(ScopedLocalRef&& s) {
64 reset(s.release());
65 mEnv = s.mEnv;