Home
last modified time | relevance | path

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

/packages/apps/TV/src/com/android/tv/data/
DTvInputNewComparator.java44 boolean lhsSetupDone = mSetupUtils.isSetupDone(lhs.getId()); in compare()
45 boolean rhsSetupDone = mSetupUtils.isSetupDone(rhs.getId()); in compare()
/packages/apps/TV/src/com/android/tv/util/
DSetupUtils.java163 if (!isSetupDone(inputId) && channelDataManager.getChannelCountForInput(inputId) > 0) { in markNewChannelsBrowsable()
211 public boolean isSetupDone(String inputId) { in isSetupDone() method in SetupUtils
/packages/apps/TV/src/com/android/tv/onboarding/
DSetupSourcesFragment.java275 if (!mSetupUtils.isSetupDone(input.getId())) { in buildInputs()
317 if (mSetupUtils.isSetupDone(inputId) || channelCount > 0) { in createActionsInternal()
/packages/apps/TV/tests/robotests/src/com/android/tv/data/
DTvInputNewComparatorTest.java65 Mockito.when(setupUtils.isSetupDone(ArgumentMatchers.anyString())) in testComparator()