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

1 2 3 4 5 67 8 91011>>

  /external/mesa3d/src/gallium/auxiliary/util/
u_format_pack.py 54 for channel in format.channels:
55 if channel.size % 8 or not is_pot(channel.size):
59 for channel in format.channels:
61 if channel.type == VOID:
62 if channel.size:
63 print ' unsigned %s:%u;' % (channel.name, channel.size)
64 elif channel.type == UNSIGNED:
65 print ' unsigned %s:%u;' % (channel.name, channel.size
    [all...]
  /packages/apps/TV/src/com/android/tv/util/
Utils.java 49 import com.android.tv.data.Channel;
83 private static final String PATH_CHANNEL = "channel";
142 if (channelId == Channel.INVALID_ID) {
156 public static void setLastWatchedChannel(Context context, Channel channel) {
157 if (channel == null) {
158 Log.e(TAG, "setLastWatchedChannel: channel cannot be null");
162 .putString(PREF_KEY_LAST_WATCHED_CHANNEL_URI, channel.getUri().toString()).apply();
163 if (!channel.isPassthrough()) {
164 long channelId = channel.getId()
    [all...]
SetupUtils.java 37 import com.android.tv.data.Channel;
104 // which one is the last callback. To reduce error prune, we update channel
135 for (Channel channel : manager.getChannelList()) {
136 if (channel.getInputId().equals(inputId)) {
137 if (!channel.isBrowsable()) {
138 manager.updateBrowsable(channel.getId(), true, true);
176 for (Channel channel : channelDataManager.getChannelList()) {
177 if (newInputsWithChannels.contains(channel.getInputId()))
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
NPCAnimationComponent.java 19 import com.replica.replicaisland.ChannelSystem.Channel;
44 private ChannelSystem.Channel mChannel;
372 public void setChannel(Channel channel) {
373 mChannel = channel;
  /packages/apps/TV/src/com/android/tv/dvr/
RecordingTask.java 30 import com.android.tv.data.Channel;
80 private final Channel mChannel;
84 RecordingTask(ScheduledRecording scheduledRecording, Channel channel,
88 mChannel = channel;
184 Log.w(TAG, "Null channel for " + mScheduledRecording);
189 Log.w(TAG, "Channel" + mChannel + " does not match scheduled recording "
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/handlers/
SensorChannel.java 32 import com.android.tools.sdkcontroller.lib.Channel;
39 public class SensorChannel extends Channel {
83 super(service, Channel.SENSOR_CHANNEL);
141 * Channel abstract implementation.
145 * This method is invoked when this channel is fully connected with its
156 * This method is invoked when this channel loses connection with its
  /external/llvm/lib/Target/AMDGPU/
R600ISelLowering.h 75 unsigned &Channel, unsigned &PtrIncr) const;
  /external/webrtc/webrtc/voice_engine/
voe_audio_processing_impl.cc 17 #include "webrtc/voice_engine/channel.h"
317 int VoEAudioProcessingImpl::SetRxNsStatus(int channel,
326 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
327 voe::Channel* channelPtr = ch.channel();
330 "SetRxNsStatus() failed to locate channel");
341 int VoEAudioProcessingImpl::GetRxNsStatus(int channel,
350 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
351 voe::Channel* channelPtr = ch.channel();
    [all...]
  /packages/apps/TV/src/com/android/tv/ui/
TunableTvView.java 62 import com.android.tv.data.Channel;
117 private Channel mCurrentChannel;
188 Channel channel = mCurrentChannel;
199 listener.onTuneFailed(channel);
207 Channel channel = mCurrentChannel;
214 listener.onUnexpectedStop(channel);
557 * Tunes to a channel with the {@code channelId}.
560 * @return false, if the TV input is not a proper state to tune to a channel. For example
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/
RequesterTestActivity.java 28 import android.net.wifi.p2p.WifiP2pManager.Channel;
93 private Channel mChannel;
  /developers/samples/android/connectivity/wifidirect/DirectP2P/Application/src/main/java/com/example/android/wifidirectp2p/
MainActivity.java 28 import android.net.wifi.p2p.WifiP2pManager.Channel;
56 private Channel channel; field in class:MainActivity
79 channel = manager.initialize(this, getMainLooper(), null);
88 receiver = new WiFiDirectBroadcastReceiver(manager, channel, this);
116 if (manager != null && channel != null) {
124 Log.e(TAG, "channel or manager is null");
137 manager.discoverPeers(channel, new ActionListener() {
165 manager.connect(channel, config, new ActionListener() {
185 manager.removeGroup(channel, new ActionListener()
    [all...]
  /development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/
WiFiDirectActivity.java 28 import android.net.wifi.p2p.WifiP2pManager.Channel;
56 private Channel channel; field in class:WiFiDirectActivity
79 channel = manager.initialize(this, getMainLooper(), null);
86 receiver = new WiFiDirectBroadcastReceiver(manager, channel, this);
128 if (manager != null && channel != null) {
136 Log.e(TAG, "channel or manager is null");
149 manager.discoverPeers(channel, new WifiP2pManager.ActionListener() {
179 manager.connect(channel, config, new ActionListener() {
199 manager.removeGroup(channel, new ActionListener()
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimTokenStream.cs 59 /** <summary>Skip tokens on any channel but this one; this is how we skip whitespace...</summary> */
60 protected int channel = TokenChannels.Default; field in class:Antlr.Runtime.FastTokenStream
83 public FastTokenStream( ITokenSource<SlimToken> tokenSource, int channel )
86 this.channel = channel;
103 channel = TokenChannels.Default;
109 * set some token type / channel overrides before filling buffer.
128 // leave p pointing at first token on channel
141 * Walk past any token not on the channel the parser is listening to.
153 /** <summary>Given a starting index, return the index of the first on-channel token.</summary> *
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTokenRewriteStream.h 119 + (ANTLRTokenRewriteStream *)newANTLRTokenRewriteStream:(id<ANTLRTokenSource>) aTokenSource Channel:(NSInteger)aChannel;
123 - (id)initWithTokenSource:(id<ANTLRTokenSource>)aTokenSource Channel:(NSInteger)aChannel;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTokenRewriteStream.h 119 + (ANTLRTokenRewriteStream *)newANTLRTokenRewriteStream:(id<ANTLRTokenSource>) aTokenSource Channel:(NSInteger)aChannel;
123 - (id)initWithTokenSource:(id<ANTLRTokenSource>)aTokenSource Channel:(NSInteger)aChannel;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTokenRewriteStream.h 119 + (ANTLRTokenRewriteStream *)newANTLRTokenRewriteStream:(id<ANTLRTokenSource>) aTokenSource Channel:(NSInteger)aChannel;
123 - (id)initWithTokenSource:(id<ANTLRTokenSource>)aTokenSource Channel:(NSInteger)aChannel;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTokenRewriteStream.h 119 + (ANTLRTokenRewriteStream *)newANTLRTokenRewriteStream:(id<ANTLRTokenSource>) aTokenSource Channel:(NSInteger)aChannel;
123 - (id)initWithTokenSource:(id<ANTLRTokenSource>)aTokenSource Channel:(NSInteger)aChannel;
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
NettyHttpClient.java 23 import io.netty.channel.Channel;
24 import io.netty.channel.ChannelHandlerContext;
25 import io.netty.channel.ChannelInitializer;
26 import io.netty.channel.ChannelOption;
27 import io.netty.channel.ChannelPipeline;
28 import io.netty.channel.SimpleChannelInboundHandler;
29 import io.netty.channel.nio.NioEventLoopGroup;
30 import io.netty.channel.socket.SocketChannel;
31 import io.netty.channel.socket.nio.NioSocketChannel
104 Channel channel = bootstrap.connect(url.host(), url.port()) local
136 private final SocketChannel channel; field in class:NettyHttpClient.HttpChannel
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/test/
delay_test.cc 25 #include "webrtc/modules/audio_coding/test/Channel.h"
37 DEFINE_bool(packet_loss, false, "Apply packet loss, c.f. Channel{.cc, .h}.");
68 channel_a2b_(new Channel),
115 // Create and connect the channel
133 "Codec: %s, %d kHz, %d channel(s)\n"
135 "Channel: %s\n",
229 Channel* channel_a2b_;
insert_packet_with_timing.cc 18 #include "webrtc/modules/audio_coding/test/Channel.h"
61 channel_(new Channel),
246 Channel* channel_;
  /libcore/luni/src/test/java/libcore/java/lang/
OldSystemTest.java 23 import java.nio.channels.Channel;
231 Channel iChannel = System.inheritedChannel();
232 assertNull("Incorrect value of channel", iChannel);
234 assertEquals("Incorrect value of channel",
  /packages/apps/TV/src/com/android/tv/dvr/ui/
ScheduledRecordingPresenter.java 32 import com.android.tv.data.Channel;
117 Channel channel = mChannelDataManager.getChannel(recording.getChannelId()); local
118 if (channel != null) {
119 cardView.setImageUri(TvContract.buildChannelLogoUri(channel.getId()).toString());
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/
UsbTunerDataSource.java 23 import com.android.usbtuner.data.Channel;
70 * Starts the streaming of a configured program. Throws a runtime exception if no channel and
76 throw new RuntimeException("Channel and program not configured!");
96 * Sets the channel required to start streaming from this device. Afterwards, prepares the tuner
100 * @param channel a {@link TunerChannel} instance tune to
104 public boolean tuneToChannel(TunerChannel channel) {
105 if (mTunerHal.tune(channel.getFrequency(), channel.getModulation())) {
106 if (channel.hasVideo()) {
107 mTunerHal.addPidFilter(channel.getVideoPid()
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ide.h 177 ULONG Channel;
205 IN ULONG Channel);
parallel.h 229 IN UCHAR Channel);
237 IN UCHAR Channel);

Completed in 824 milliseconds

1 2 3 4 5 67 8 91011>>