/packages/apps/TV/tests/unit/src/com/android/tv/util/ |
D | TvInputManagerHelperTest.java | 93 TvInputManagerHelper manager = createMockTvInputManager(); in testComparatorInternal() 96 new ComparatorTester(new TvInputManagerHelper.InputComparatorInternal(manager)) in testComparatorInternal() 149 TvInputManagerHelper manager = createMockTvInputManager(); in testHardwareInputComparatorHdmi() 153 new TvInputManagerHelper.HardwareInputComparator( in testHardwareInputComparatorHdmi() 210 TvInputManagerHelper manager = createMockTvInputManager(); in testHardwareInputComparatorCec() 214 new TvInputManagerHelper.HardwareInputComparator( in testHardwareInputComparatorCec() 220 private TvInputManagerHelper createMockTvInputManager() { in createMockTvInputManager() 221 TvInputManagerHelper manager = Mockito.mock(TvInputManagerHelper.class); in createMockTvInputManager()
|
/packages/apps/TV/src/com/android/tv/data/ |
D | TvInputNewComparator.java | 21 import com.android.tv.util.TvInputManagerHelper; 27 private final TvInputManagerHelper mInputManager; 29 public TvInputNewComparator(SetupUtils setupUtils, TvInputManagerHelper inputManager) { in TvInputNewComparator()
|
/packages/apps/TV/tests/unit/src/com/android/tv/data/ |
D | ChannelImplTest.java | 34 import com.android.tv.util.TvInputManagerHelper; 259 TvInputManagerHelper manager = Mockito.mock(TvInputManagerHelper.class); in testComparator() 313 TvInputManagerHelper manager = Mockito.mock(TvInputManagerHelper.class); in testComparatorLabel() 366 public TestChannelComparator(TvInputManagerHelper manager) { in TestChannelComparator() 378 public ChannelComparatorWithDescriptionAsLabel(TvInputManagerHelper manager) { in ChannelComparatorWithDescriptionAsLabel()
|
/packages/apps/TV/src/com/android/tv/util/ |
D | Partner.java | 73 INPUT_TYPE_MAP.put(INPUT_TYPE_BUNDLED_TUNER, TvInputManagerHelper.TYPE_BUNDLED_TUNER); in INPUT_TYPE_MAP.put() 75 INPUT_TYPE_MAP.put(INPUT_TYPE_CEC_LOGICAL, TvInputManagerHelper.TYPE_CEC_DEVICE); in INPUT_TYPE_MAP.put() 76 INPUT_TYPE_MAP.put(INPUT_TYPE_CEC_RECORDER, TvInputManagerHelper.TYPE_CEC_DEVICE_RECORDER); in INPUT_TYPE_MAP.put() 77 INPUT_TYPE_MAP.put(INPUT_TYPE_CEC_PLAYBACK, TvInputManagerHelper.TYPE_CEC_DEVICE_PLAYBACK); in INPUT_TYPE_MAP.put() 78 INPUT_TYPE_MAP.put(INPUT_TYPE_MHL_MOBILE, TvInputManagerHelper.TYPE_MHL_MOBILE); in INPUT_TYPE_MAP.put()
|
D | TvInputManagerHelper.java | 65 public class TvInputManagerHelper { class 302 public TvInputManagerHelper(@ApplicationContext Context context, LegacyFlags legacyFlags) { in TvInputManagerHelper() method in TvInputManagerHelper 314 protected TvInputManagerHelper( in TvInputManagerHelper() method in TvInputManagerHelper 715 private final TvInputManagerHelper mInputManager; 719 public InputComparatorInternal(TvInputManagerHelper inputManager) { in InputComparatorInternal() 739 private final TvInputManagerHelper mTvInputManagerHelper; 742 public HardwareInputComparator(Context context, TvInputManagerHelper tvInputManagerHelper) { in HardwareInputComparator()
|
D | SetupUtils.java | 170 TvInputManagerHelper tvInputManagerHelper = singletons.getTvInputManagerHelper(); in markNewChannelsBrowsableIfEnabled() 232 public boolean hasNewInput(TvInputManagerHelper inputManager) { in hasNewInput() 250 public void markAllInputsRecognized(TvInputManagerHelper inputManager) { in markAllInputsRecognized() 261 public boolean hasUnrecognizedInput(TvInputManagerHelper inputManager) { in hasUnrecognizedInput()
|
/packages/apps/TV/src/com/android/tv/modules/ |
D | TvApplicationModule.java | 51 import com.android.tv.util.TvInputManagerHelper; 91 static TvInputManagerHelper providesTvInputManagerHelper( in providesTvInputManagerHelper() 93 TvInputManagerHelper tvInputManagerHelper = new TvInputManagerHelper(context, legacyFlags); in providesTvInputManagerHelper()
|
/packages/apps/TV/tests/common/src/com/android/tv/testing/ |
D | FakeTvInputManagerHelper.java | 21 import com.android.tv.util.TvInputManagerHelper; 24 public class FakeTvInputManagerHelper extends TvInputManagerHelper {
|
D | FakeTvInputManager.java | 23 import com.android.tv.util.TvInputManagerHelper; 30 public class FakeTvInputManager implements TvInputManagerHelper.TvInputManagerInterface {
|
D | TestSingletonApp.java | 54 import com.android.tv.util.TvInputManagerHelper; 163 public TvInputManagerHelper getTvInputManagerHelper() { in getTvInputManagerHelper()
|
/packages/apps/TV/tests/robotests/src/com/android/tv/data/ |
D | TvInputNewComparatorTest.java | 27 import com.android.tv.util.TvInputManagerHelper; 74 TvInputManagerHelper inputManager = Mockito.mock(TvInputManagerHelper.class); in testComparator()
|
/packages/apps/TV/src/com/android/tv/parental/ |
D | ContentRatingsManager.java | 28 import com.android.tv.util.TvInputManagerHelper; 36 private final TvInputManagerHelper.TvInputManagerInterface mTvInputManager; 39 Context context, TvInputManagerHelper.TvInputManagerInterface tvInputManager) { in ContentRatingsManager()
|
/packages/apps/TV/tests/robotests/src/com/android/tv/util/ |
D | TvInputManagerHelperRoboTest.java | 46 TvInputManagerHelper tvInputManagerHelper = in getInputState_null() 47 new TvInputManagerHelper( in getInputState_null()
|
/packages/apps/TV/tests/robotests/src/com/android/tv/ui/ |
D | ChannelBannerViewTest.java | 37 import com.android.tv.util.TvInputManagerHelper; 143 public TvInputManagerHelper getTvInputManagerHelperSingleton() { in getTvInputManagerHelperSingleton() 144 return new TvInputManagerHelper(mContext, DefaultLegacyFlags.DEFAULT); in getTvInputManagerHelperSingleton()
|
/packages/apps/TV/src/com/android/tv/menu/ |
D | ChannelsRowAdapter.java | 34 import com.android.tv.util.TvInputManagerHelper; 246 TvInputManagerHelper inputManager = singletons.getTvInputManagerHelper(); 251 TvInputManagerHelper inputManager = 264 TvInputManagerHelper inputManager =
|
/packages/apps/TV/src/com/android/tv/ |
D | TvSingletons.java | 38 import com.android.tv.util.TvInputManagerHelper; 111 TvInputManagerHelper getTvInputManagerHelper(); in getTvInputManagerHelper()
|
D | ChannelTuner.java | 30 import com.android.tv.util.TvInputManagerHelper; 59 private final TvInputManagerHelper mInputManager; 87 public ChannelTuner(ChannelDataManager channelDataManager, TvInputManagerHelper inputManager) { in ChannelTuner()
|
D | SetupPassthroughActivity.java | 39 import com.android.tv.util.TvInputManagerHelper; 68 @Inject TvInputManagerHelper mInputManager;
|
D | TvApplication.java | 67 import com.android.tv.util.TvInputManagerHelper; 121 @Inject Lazy<TvInputManagerHelper> mLazyTvInputManagerHelper; 356 public TvInputManagerHelper getTvInputManagerHelper() { in getTvInputManagerHelper()
|
/packages/apps/TV/src/com/android/tv/ui/ |
D | SelectInputView.java | 40 import com.android.tv.util.TvInputManagerHelper; 54 private final TvInputManagerHelper mTvInputManagerHelper; 56 private final TvInputManagerHelper.HardwareInputComparator mComparator; 150 new TvInputManagerHelper.HardwareInputComparator(context, mTvInputManagerHelper); in SelectInputView()
|
/packages/apps/TV/src/com/android/tv/setup/ |
D | SystemSetupActivity.java | 38 import com.android.tv.util.TvInputManagerHelper; 55 @Inject TvInputManagerHelper mInputManager;
|
/packages/apps/TV/tests/robotests/src/com/android/tv/dvr/recorder/ |
D | SchedulerTest.java | 40 import com.android.tv.util.TvInputManagerHelper; 67 @Mock TvInputManagerHelper mInputManager;
|
/packages/apps/TV/src/com/android/tv/dvr/recorder/ |
D | RecordingScheduler.java | 46 import com.android.tv.util.TvInputManagerHelper; 80 private final TvInputManagerHelper mInputManager; 145 TvInputManagerHelper inputManager, in RecordingScheduler()
|
/packages/apps/TV/src/com/android/tv/dvr/ |
D | DvrStorageStatusManager.java | 33 import com.android.tv.util.TvInputManagerHelper; 109 TvInputManagerHelper tvInputManagerHelper = in onPostExecute()
|
/packages/apps/TV/src/com/android/tv/onboarding/ |
D | OnboardingActivity.java | 41 import com.android.tv.util.TvInputManagerHelper; 61 private TvInputManagerHelper mInputManager;
|