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.cpp716 const sp<SwAudioOutputDescriptor> otherDesc = valueAt(i); in isStrategyActiveOnSameModule() local
717 if (desc->sharesHwModuleWith(otherDesc) && in isStrategyActiveOnSameModule()
718 otherDesc->isStrategyActive(ps, inPastMs, sysTime)) { in isStrategyActiveOnSameModule()
/frameworks/base/core/java/android/hardware/radio/
DRadioManager.java1025 BandDescriptor otherDesc = other.getDescriptor(); in equals() local
1026 if ((mDescriptor == null) != (otherDesc == null)) return false; in equals()
1027 if (mDescriptor != null && !mDescriptor.equals(otherDesc)) return false; in equals()