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