HomeSort by relevance Sort by last modified time
    Searched refs:Channel (Results 76 - 100 of 347) sorted by null

1 2 34 5 6 7 8 91011>>

  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/util/
PsdFile.java 292 final Channel[] mChannelInfo = new Channel[mChannelCount];
321 mChannelInfo[0] = new Channel(Channel.ID_ALPHA, length);
322 mChannelInfo[1] = new Channel(Channel.ID_RED, length);
323 mChannelInfo[2] = new Channel(Channel.ID_GREEN, length);
324 mChannelInfo[3] = new Channel(Channel.ID_BLUE, length)
    [all...]
  /packages/apps/TV/src/com/android/tv/util/
PipInputManager.java 28 import com.android.tv.data.Channel;
109 public void onCurrentChannelUnavailable(Channel channel) { }
121 public void onChannelChanged(Channel previousChannel, Channel currentChannel) {
124 // Channel change between channels for tuner inputs.
252 * Returns an PIP input corresponding to {@code channel}.
254 public PipInput getPipInput(Channel channel) {
255 if (channel == null)
    [all...]
  /packages/apps/TV/tests/unit/src/com/android/tv/data/
ChannelDataManagerTest.java 147 List<Channel> channelList = mChannelDataManager.getChannelList();
148 for (Channel channel : channelList) {
151 if (TextUtils.equals(channelInfo.name, channel.getDisplayName())
152 && TextUtils.equals(channelInfo.name, channel.getDisplayName())) {
158 assertTrue("Cannot find (" + channel + ")", found);
162 for (Channel channel : channelList) {
163 assertEquals(channel, mChannelDataManager.getChannel(channel.getId()))
270 Channel channel = mChannelDataManager.getChannelList().get(0); local
439 ChannelInfoWrapper channel = mChannelInfoList.get((int) channelId); local
490 ChannelInfoWrapper channel = mChannelInfoList.get((int) channelId); local
568 ChannelInfoWrapper channel = mContentProvider.get(mPosition); local
588 ChannelInfoWrapper channel = mContentProvider.get(mPosition); local
    [all...]
WatchedHistoryManagerTest.java 81 Channel channel = new Channel.Builder().setId(fakeId).build(); local
82 mWatchedHistoryManager.logChannelViewStop(channel, time, duration);
102 Channel channel = new Channel.Builder().setId(startChannelId + i).build(); local
103 mWatchedHistoryManager.logChannelViewStop(channel, time + duration * i, duration);
  /packages/apps/TV/src/com/android/tv/menu/
AppLinkCardView.java 39 import com.android.tv.data.Channel;
48 public class AppLinkCardView extends BaseCardView<Channel> {
69 private Channel mChannel;
111 public void onBind(Channel channel, boolean selected) {
113 Log.d(TAG, "onBind(channelName=" + channel.getDisplayName() + ", selected=" + selected
116 mChannel = channel;
122 case Channel.APP_LINK_TYPE_CHANNEL:
130 mChannel.loadBitmap(getContext(), Channel.LOAD_IMAGE_TYPE_APP_LINK_ICON,
132 Channel.LOAD_IMAGE_TYPE_APP_LINK_ICON))
    [all...]
  /packages/apps/TV/src/com/android/tv/data/
ChannelDataManager.java 55 * The class to manage channel data.
56 * Basic features: reading channel list and each channel's current program, and updating
78 private final Channel.DefaultComparator mChannelComparator;
79 private final List<Channel> mChannels = new ArrayList<>();
94 for (ChannelWrapper channel : mChannelWrapperMap.values()) {
95 if (channel.mChannel.getInputId().equals(inputId)) {
96 channel.mInputRemoved = false;
97 addChannel(channel.mChannel);
111 for (ChannelWrapper channel : mChannelWrapperMap.values())
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
TestCase.java 21 import android.net.wifi.p2p.WifiP2pManager.Channel;
30 * 3) initialize the fixture state by overriding setUp if needed. At default, p2p channel
54 protected Channel mChannel;
56 protected Channel mSubChannel;
  /external/webrtc/webrtc/voice_engine/
voe_codec_impl.cc 17 #include "webrtc/voice_engine/channel.h"
63 int VoECodecImpl::SetSendCodec(int channel, const CodecInst& codec) {
65 "SetSendCodec(channel=%d, codec)", channel);
93 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
94 voe::Channel* channelPtr = ch.channel();
97 "GetSendCodec() failed to locate channel");
114 int VoECodecImpl::GetSendCodec(int channel, CodecInst& codec) {
119 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
    [all...]
voe_external_media_impl.cc 15 #include "webrtc/voice_engine/channel.h"
54 int channel,
58 "RegisterExternalMediaProcessing(channel=%d, type=%d, "
60 channel, type, &processObject);
68 voe::ChannelOwner ch = shared_->channel_manager().GetChannel(channel);
69 voe::Channel* channelPtr = ch.channel();
74 "channel");
93 int channel,
96 "DeRegisterExternalMediaProcessing(channel=%d)", channel)
    [all...]
voe_file_impl.cc 17 #include "webrtc/voice_engine/channel.h"
50 int VoEFileImpl::StartPlayingFileLocally(int channel,
58 "StartPlayingFileLocally(channel=%d, fileNameUTF8[]=%s, "
61 channel, fileNameUTF8, loop, format, volumeScaling, startPointMs,
68 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
69 voe::Channel* channelPtr = ch.channel();
72 "StartPlayingFileLocally() failed to locate channel");
81 int VoEFileImpl::StartPlayingFileLocally(int channel,
88 "StartPlayingFileLocally(channel=%d, stream, format=%d,
    [all...]
voe_volume_control_impl.cc 15 #include "webrtc/voice_engine/channel.h"
199 int VoEVolumeControlImpl::SetInputMute(int channel, bool enable) {
201 "SetInputMute(channel=%d, enable=%d)", channel, enable);
207 if (channel == -1) {
211 // Mute after demultiplexing <=> affects one channel only
212 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
213 voe::Channel* channelPtr = ch.channel();
216 "SetInputMute() failed to locate channel");
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimToken.cs 100 public int Channel
  /external/webrtc/webrtc/modules/audio_coding/test/
TestVADDTX.h 20 #include "webrtc/modules/audio_coding/test/Channel.h"
73 rtc::scoped_ptr<Channel> channel_;
APITest.h 17 #include "webrtc/modules/audio_coding/test/Channel.h"
89 Channel* _channel_A2B;
90 Channel* _channel_B2A;
TwoWayCommunication.cc 151 //--- Set A-to-B channel
152 _channel_A2B = new Channel;
156 _channelRef_A2B = new Channel;
160 //--- Set B-to-A channel
161 _channel_B2A = new Channel;
165 _channelRef_B2A = new Channel;
220 //--- Set A-to-B channel
221 _channel_A2B = new Channel;
225 _channelRef_A2B = new Channel;
229 //--- Set B-to-A channel
    [all...]
  /packages/apps/TV/tests/unit/src/com/android/tv/recommendation/
RecommendationUtils.java 21 import com.android.tv.data.Channel;
86 * Add new {@code numberOfChannels} channels by adding channel record to
97 * Add new one channel by adding channel record to {@code channelRecordMap} with no history.
98 * This action corresponds to loading one channel in the RecommendationDataManger.
100 * @return The new channel was made by this method.
102 public Channel addChannel() {
104 Channel channel = new Channel.Builder().setId(channelId).build() local
    [all...]
  /system/core/metricsd/uploader/
system_profile_cache.h 41 metrics::SystemProfileProto::Channel channel; member in struct:SystemProfile
58 // Converts a string representation of the channel to a
61 const std::string& channel);
  /packages/apps/TV/src/com/android/tv/ui/
KeypadChannelSwitchView.java 45 import com.android.tv.data.Channel;
59 public static final String SCREEN_NAME = "Channel switch";
66 private List<Channel> mChannels;
70 private final ArrayList<Channel> mChannelCandidates = new ArrayList<>();
73 private Channel mSelectedChannel;
143 final Channel channel = ((Channel) mAdapter.getItem(position));
148 mMainActivity.tuneToChannel(channel);
161 mSelectedChannel = (Channel) mAdapter.getItem(position)
386 final Channel channel = mChannelCandidates.get(position); local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ClassicToken.cs 49 int channel = TokenChannels.Default; field in class:Antlr.Runtime.ClassicToken
63 channel = oldToken.Channel;
71 public ClassicToken(int type, string text, int channel) {
74 this.channel = channel;
114 public int Channel {
116 return channel;
119 channel = value;
160 if (channel > 0)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ClassicToken.cs 51 int channel = TokenChannels.Default; field in class:Antlr.Runtime.ClassicToken
67 channel = oldToken.Channel;
76 public ClassicToken( int type, string text, int channel )
80 this.channel = channel;
132 public int Channel
136 return channel;
140 channel = value;
194 if ( channel > 0
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRCommonTokenStream.h 38 NSInteger channel; variable
42 @property (assign, getter=getChannel,setter=setChannel) NSInteger channel; variable
47 Channel:(NSInteger)aChannel;
51 - (id) initWithTokenSource:(id<ANTLRTokenSource>)theTokenSource Channel:(NSInteger)aChannel;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRCommonTokenStream.h 38 NSInteger channel; variable
42 @property (assign, getter=getChannel,setter=setChannel) NSInteger channel; variable
47 Channel:(NSInteger)aChannel;
51 - (id) initWithTokenSource:(id<ANTLRTokenSource>)theTokenSource Channel:(NSInteger)aChannel;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCommonTokenStream.h 38 NSInteger channel; variable
42 @property (assign, getter=getChannel,setter=setChannel) NSInteger channel; variable
47 Channel:(NSInteger)aChannel;
51 - (id) initWithTokenSource:(id<ANTLRTokenSource>)theTokenSource Channel:(NSInteger)aChannel;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCommonTokenStream.h 39 NSUInteger channel; variable
43 @property (assign, getter=channel,setter=setChannel:) NSUInteger channel; variable
48 Channel:(NSUInteger)aChannel;
52 - (id) initWithTokenSource:(id<ANTLRTokenSource>)theTokenSource Channel:(NSUInteger)aChannel;
68 - (NSUInteger)channel;
  /packages/apps/TV/src/com/android/tv/
SelectInputActivity.java 27 import com.android.tv.data.Channel;
67 mSelectInputView.setCurrentChannel(Channel.createPassthroughChannel(channelUri));
69 // No need to set the tuner channel because it's the default selection.

Completed in 1010 milliseconds

1 2 34 5 6 7 8 91011>>