Home
last modified time | relevance | path

Searched refs:isPartnerInput (Results 1 – 4 of 4) sorted by relevance

/packages/apps/TV/src/com/android/tv/util/
DTvInputManagerHelper.java221 mInputIdToPartnerInputMap.put(inputId, isPartnerInput(info));
420 public boolean isPartnerInput(TvInputInfo inputInfo) { in isPartnerInput() method in TvInputManagerHelper
442 public boolean isPartnerInput(String inputId) { in isPartnerInput() method in TvInputManagerHelper
443 Boolean isPartnerInput = mInputIdToPartnerInputMap.get(inputId); in isPartnerInput() local
444 return (isPartnerInput != null) ? isPartnerInput : false; in isPartnerInput()
671 mInputIdToPartnerInputMap.put(inputId, isPartnerInput(input)); in initInputMaps()
725 if (mInputManager.isPartnerInput(lhs) != mInputManager.isPartnerInput(rhs)) { in compare()
726 return mInputManager.isPartnerInput(lhs) ? -1 : 1; in compare()
/packages/apps/TV/tests/unit/src/com/android/tv/util/
DTvInputManagerHelperTest.java231 .isPartnerInput(ArgumentMatchers.<TvInputInfo>any()); in createMockTvInputManager()
275 boolean isPartnerInput) { in createTvInputInfo() argument
283 inputWrapper.mIsPartnerInput = isPartnerInput; in createTvInputInfo()
/packages/apps/TV/tests/unit/src/com/android/tv/data/
DChannelImplTest.java260 Mockito.when(manager.isPartnerInput(ArgumentMatchers.anyString())) in testComparator()
314 Mockito.when(manager.isPartnerInput(ArgumentMatchers.anyString())) in testComparatorLabel()
/packages/apps/TV/src/com/android/tv/data/
DChannelImpl.java746 boolean lhsIsPartner = mInputManager.isPartnerInput(lhs.getInputId()); in compare()
747 boolean rhsIsPartner = mInputManager.isPartnerInput(rhs.getInputId()); in compare()