Home
last modified time | relevance | path

Searched refs:isBrowsable (Results 1 – 18 of 18) sorted by relevance

/packages/apps/TV/src/com/android/tv/
DChannelTuner.java206 if (channel.isBrowsable()) { in getAdjacentBrowsableChannel()
219 if (channel.isBrowsable()) { in getAdjacentBrowsableChannel()
238 } else if (channel.isBrowsable()) { in findNearestBrowsableChannel()
245 if (upChannel.isBrowsable()) { in findNearestBrowsableChannel()
249 if (downChannel.isBrowsable()) { in findNearestBrowsableChannel()
355 if (channel.isBrowsable()) { in updateBrowsableChannels()
DMainActivity.java1317 if (curChannel != null && curChannel.isBrowsable()) { in getBrowsableChannel()
1383 || (!returnChannel.isPassthrough() && !returnChannel.isBrowsable())) { in endShrunkenTvView()
/packages/apps/TV/src/com/android/tv/ui/sidepanel/parentalcontrols/
DChannelsBlockedFragment.java135 if (lhs.isBrowsable() != rhs.isBrowsable()) { in getItemList()
136 return lhs.isBrowsable() ? -1 : 1; in getItemList()
144 if (!channel.isBrowsable() && !hasHiddenChannels) { in getItemList()
DParentalControlsFragment.java108 if (channel.isLocked() && channel.isBrowsable()) { in getItemList()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/avrcpcontroller/
DAvrcpItemTest.java96 Assert.assertEquals(false, item.isBrowsable()); in buildAvrcpItem()
143 Assert.assertEquals(false, item.isBrowsable()); in buildAvrcpItemFromAvrcpAttributes()
205 Assert.assertEquals(false, item.isBrowsable()); in buildAvrcpItemFromAvrcpAttributesWithBadIds_badIdsIgnored()
252 Assert.assertEquals(false, item.isBrowsable()); in buildAvrcpItemFromAvrcpAttributes_imageHandleTooShort()
299 Assert.assertEquals(false, item.isBrowsable()); in buildAvrcpItemFromAvrcpAttributes_imageHandleEmpty()
346 Assert.assertEquals(false, item.isBrowsable()); in buildAvrcpItemFromAvrcpAttributes_imageHandleNull()
393 Assert.assertEquals(false, item.isBrowsable()); in buildAvrcpItemFromAvrcpAttributes_imageHandleNotDigits()
551 Assert.assertFalse(mediaItem.isBrowsable()); in avrcpItemNoDisplayName_toMediaItem()
580 Assert.assertFalse(mediaItem.isBrowsable()); in avrcpItemWithDisplayName_toMediaItem()
607 Assert.assertTrue(mediaItem.isBrowsable()); in avrcpItemBrowsable_toMediaItem()
DBrowseNodeTest.java71 assertThat(browseNode.isBrowsable()).isTrue(); in constructor_withAvrcpPlayer()
/packages/apps/TV/src/com/android/tv/data/
DChannelDataManager.java286 if (channel.isBrowsable()) { in getBrowsableChannelList()
311 if (channel.getInputId().equals(inputId) && channel.isBrowsable()) { in getBrowsableChannelCountForInput()
334 if (channel.isBrowsable()) { in areAllChannelsHidden()
369 if (channelWrapper.mChannel.isBrowsable() != browsable) { in updateBrowsable()
443 if (channelWrapper.mChannel.isBrowsable()) { in applyUpdatedValuesToDb()
448 channelWrapper.mBrowsableInDb = channelWrapper.mChannel.isBrowsable(); in applyUpdatedValuesToDb()
573 mBrowsableInDb = channel.isBrowsable(); in ChannelWrapper()
684 channel.setBrowsable(oldChannel.isBrowsable()); in onPostExecute()
DChannelImpl.java291 public boolean isBrowsable() { in isBrowsable() method in ChannelImpl
398 mBrowsable = channel.isBrowsable(); in copyFrom()
/packages/apps/TV/src/com/android/tv/ui/sidepanel/
DCustomizeChannelListFragment.java280 if (!channelItem.getChannel().isBrowsable()) { in onUpdate()
296 if (channel.isBrowsable() == mAllChecked) { in onSelected()
322 setChecked(getChannel().isBrowsable()); in onUpdate()
/packages/apps/TV/src/com/android/tv/data/api/
DChannel.java96 boolean isBrowsable(); in isBrowsable() method
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/avrcpcontroller/
DAvrcpItem.java155 public boolean isBrowsable() { in isBrowsable() method in AvrcpItem
292 && Objects.equals(mBrowsable, other.isBrowsable()) in equals()
DBrowseTree.java302 synchronized boolean isBrowsable() { in isBrowsable() method in BrowseTree.BrowseNode
303 return mItem.isBrowsable(); in isBrowsable()
DAvrcpControllerStateMachine.java1115 if (mNextStep.isBrowsable()) { in navigateToFolderOrRetrieve()
/packages/apps/TV/src/com/android/tv/util/
DSetupUtils.java137 if (!channel.isBrowsable() && MARK_NEW_CHANNELS_BROWSABLE) { in updateChannelsAfterSetup()
141 if (firstChannelForInput == null && channel.isBrowsable()) { in updateChannelsAfterSetup()
/packages/apps/TV/src/com/android/tv/menu/
DChannelsRowAdapter.java307 || !channel.isBrowsable()) { in addChannelToList()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/audio_util/
DBrowsedPlayerWrapper.java462 if (item.isBrowsable()) {
/packages/apps/TV/src/com/android/tv/recommendation/
DRecommendationDataManager.java452 if (!channel.isBrowsable()) { in updateChannelRecordMapFromChannel()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/audio_util/
DBrowserPlayerWrapperTest.java393 Assert.assertEquals(expected.isBrowsable(), item.isFolder); in testGetFolderItems()