Home
last modified time | relevance | path

Searched refs:otherDesc (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
DListTestCaseNames.java86 TestDescriptor otherDesc = (TestDescriptor)otherObj; in equals() local
87 return otherDesc.getClassName().equals(this.getClassName()) && in equals()
88 otherDesc.getTestName().equals(this.getTestName()); in equals()
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
DAudioOutputDescriptor.cpp900 const sp<SwAudioOutputDescriptor> otherDesc = valueAt(i); in isStrategyActiveOnSameModule() local
901 if (desc->sharesHwModuleWith(otherDesc) && in isStrategyActiveOnSameModule()
902 otherDesc->isStrategyActive(ps, inPastMs, sysTime)) { in isStrategyActiveOnSameModule()
903 if (desc == otherDesc in isStrategyActiveOnSameModule()
904 || !otherDesc->devices() in isStrategyActiveOnSameModule()
/frameworks/base/core/java/android/hardware/radio/
DRadioManager.java1130 BandDescriptor otherDesc = other.getDescriptor(); in equals() local
1131 if ((mDescriptor == null) != (otherDesc == null)) return false; in equals()
1132 if (mDescriptor != null && !mDescriptor.equals(otherDesc)) return false; in equals()