OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isPartnerInput
(Results
1 - 4
of
4
) sorted by null
/packages/apps/TV/src/com/android/tv/util/
TvInputManagerHelper.java
78
mInputIdToPartnerInputMap.put(inputId,
isPartnerInput
(info));
140
mInputIdToPartnerInputMap.put(inputId,
isPartnerInput
(input));
190
public boolean
isPartnerInput
(TvInputInfo inputInfo) {
216
public boolean
isPartnerInput
(String inputId) {
217
Boolean
isPartnerInput
= mInputIdToPartnerInputMap.get(inputId);
218
return (
isPartnerInput
!= null) ?
isPartnerInput
: false;
313
* To test comparator, we need to mock API in parent class such as {@link #
isPartnerInput
},
327
if (mInputManager.
isPartnerInput
(lhs) != mInputManager.
isPartnerInput
(rhs))
[
all
...]
/packages/apps/TV/tests/unit/src/com/android/tv/util/
TvInputManagerHelperTest.java
53
}).when(manager).
isPartnerInput
(Mockito.<TvInputInfo>any());
/packages/apps/TV/tests/unit/src/com/android/tv/data/
ChannelTest.java
186
Mockito.when(manager.
isPartnerInput
(Matchers.anyString())).thenAnswer(
232
Mockito.when(manager.
isPartnerInput
(Matchers.anyString())).thenAnswer(
/packages/apps/TV/src/com/android/tv/data/
Channel.java
631
boolean lhsIsPartner = mInputManager.
isPartnerInput
(lhs.getInputId());
632
boolean rhsIsPartner = mInputManager.
isPartnerInput
(rhs.getInputId());
Completed in 69 milliseconds