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

1 2 3 4 5 6 7 891011>>

  /external/webrtc/webrtc/modules/audio_coding/test/
APITest.cc 230 //--- Set A-to-B channel
231 _channel_A2B = new Channel(2);
235 //--- Set B-to-A channel
236 _channel_B2A = new Channel(1);
664 Channel* myChannel;
921 Channel* myChannel;
1020 Channel* myChannel;
TestVADDTX.cc 66 channel_(new Channel),
  /external/webrtc/webrtc/voice_engine/
transmit_mixer.cc 19 #include "webrtc/voice_engine/channel.h"
309 Channel* channel = it.GetChannel(); local
310 if (channel->Sending()) {
312 channel->GetSendCodec(codec);
424 Channel* channelPtr = it.GetChannel();
439 voe::Channel* channel_ptr = ch.channel();
459 Channel* channelPtr = it.GetChannel();
472 voe::Channel* channel_ptr = ch.channel()
    [all...]
  /packages/apps/TV/src/com/android/tv/
TimeShiftManager.java 34 import com.android.tv.data.Channel;
59 * {@link ProgramManager} loads programs of the current channel in the background.
197 * Checks if the trick play is available for the current channel.
459 Channel channel = mPlayController.getCurrentChannel(); local
460 if (channel != null) {
461 mOnCurrentProgramUpdatedListener.onCurrentProgramUpdated(channel.getId(),
    [all...]
  /external/deqp/framework/common/
tcuFuzzyImageCompare.cpp 42 template<int Channel>
45 return (deUint8)((color >> (Channel*8)) & 0xff);
48 static inline deUint8 getChannel (deUint32 color, int channel)
50 return (deUint8)((color >> (channel*8)) & 0xff);
53 static inline deUint32 setChannel (deUint32 color, int channel, deUint8 val)
55 return (color & ~(0xffu << (8*channel))) | (val << (8*channel));
tcuTextureUtil.cpp 156 //! Get texture channel class for format
203 DE_FATAL("Unknown channel type");
399 * given TextureFormat. Parameters include value ranges per channel and
438 const TextureSwizzle::Channel* map = getChannelReadSwizzle(format.order).components;
463 DE_FATAL("Invalid channel type");
479 DE_FATAL("Invalid channel type");
499 DE_FATAL("Invalid channel type");
558 const TextureSwizzle::Channel* map = getChannelReadSwizzle(format.order).components;
627 const TextureSwizzle::Channel* map = getChannelReadSwizzle(format.order).components;
642 const TextureSwizzle::Channel* const map = getChannelReadSwizzle(format.order).components
    [all...]
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/
MultiTouchActivity.java 34 import com.android.tools.sdkcontroller.lib.Channel;
105 mHandler = (MultiTouchChannel) getServiceBinder().getChannel(Channel.MULTITOUCH_CHANNEL);
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
Channel.java 38 * Essentially, Channel is an implementation of a particular emulated functionality,
40 * SDK controller. For instance, "sensors" is a channel that emulates sensors,
42 * is a channel that supports multi-touch emulation, and transfers multi-touch
45 * Besides connection with the emulator, each channel may contain one or more UI
49 * - Providing a way to register / unregister a UI component with the channel.
55 public abstract class Channel {
134 /** Name for a channel that handles sensors emulation */
136 /** Name for a channel that handles multi-touch emulation */
140 * Types of messages internally used by Channel class.
166 /** Channel name ("sensors", "multi-touch", etc.) *
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimLexer.cs 119 state.channel = TokenChannels.Default;
137 state.channel = TokenChannels.Default;
250 Channel = state.channel,
258 //IToken t = new CommonToken( input, state.type, state.channel, state.tokenStartCharIndex, CharIndex - 1 );
  /external/llvm/lib/Target/AMDGPU/
R600InstrInfo.h 144 /// An instruction group can only access 2 channel pair (either [XY] or [ZW])
218 unsigned Channel) const override;
R600ISelLowering.cpp     [all...]
  /external/opencv/otherlibs/highgui/
grfmt_exr.cpp 610 header.channels().insert( "R", Channel( type ));
611 header.channels().insert( "G", Channel( type ));
612 header.channels().insert( "B", Channel( type ));
617 header.channels().insert( "Y", Channel( type ));
  /external/opencv3/modules/imgcodecs/src/
grfmt_exr.cpp 600 header.channels().insert( "R", Channel( type ));
601 header.channels().insert( "G", Channel( type ));
602 header.channels().insert( "B", Channel( type ));
607 header.channels().insert( "Y", Channel( type ));
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/output1/
Fuzzy.m 360 state.channel = ANTLRTokenChannelDefault;
423 name = [[ANTLRCommonToken newANTLRCommonToken:input Type:ANTLRTokenTypeInvalid Channel:ANTLRTokenChannelDefault Start:nameStart31 Stop:[self getIndex]-1] retain];
453 state.channel = _channel;
512 state.channel = _channel;
542 name = [[ANTLRCommonToken newANTLRCommonToken:input Type:ANTLRTokenTypeInvalid Channel:ANTLRTokenChannelDefault Start:nameStart81 Stop:[self getIndex]-1] retain];
723 state.channel = _channel;
753 name = [[ANTLRCommonToken newANTLRCommonToken:input Type:ANTLRTokenTypeInvalid Channel:ANTLRTokenChannelDefault Start:nameStart158 Stop:[self getIndex]-1] retain];
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary.ascend 66 ATTRIBUTE Ascend-Base-Channel-Count 172 integer
130 ATTRIBUTE Ascend-Inc-Channel-Count 236 integer
131 ATTRIBUTE Ascend-Dec-Channel-Count 237 integer
  /external/jetty/src/java/org/eclipse/jetty/io/nio/
SelectorManager.java 23 import java.nio.channels.Channel;
127 /** Register a channel
128 * @param channel
131 public void register(SocketChannel channel, Object att)
145 set.addChange(channel,att);
152 /** Register a channel
153 * @param channel
155 public void register(SocketChannel channel)
169 set.addChange(channel);
352 public abstract AsyncConnection newConnection(SocketChannel channel, AsyncEndPoint endpoint, Object attachment)
474 final SelectableChannel channel=asc._channel; local
493 final SocketChannel channel=(SocketChannel)change; local
602 SocketChannel channel=null; local
766 final SelectableChannel channel = k.channel(); local
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
System.java 36 import java.nio.channels.Channel;
215 * Returns the channel inherited from the entity that created this
218 * <p> This method returns the channel obtained by invoking the
228 * @return The inherited channel, if any, otherwise <tt>null</tt>.
235 * permit access to the channel.
239 public static Channel inheritedChannel() throws IOException {
    [all...]
  /packages/apps/TV/src/com/android/tv/data/
ProgramDataManager.java 105 // when a channel's current program is updated.
208 * Returns the current program at the specified channel.
274 * Returns the programs for the given channel which ends after the given start time.
318 * Adds the listener to be notified if current program is updated for a channel.
320 * @param channelId A channel ID to get notified. If it's {@link Channel#INVALID_ID}, the
346 .get(Channel.INVALID_ID)) {
750 .setChannelId(Channel.INVALID_ID)
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_tile_soa.py 64 channel = format.channels[i]
65 if channel.type not in (VOID, UNSIGNED, SIGNED, FLOAT):
67 if channel.type == FLOAT and channel.size not in (16, 32 ,64):
645 channel = Channel(UNSIGNED, True, False, 8)
649 generate_swizzle(formats, channel, native_type, suffix)
650 generate_unswizzle(formats, channel, native_type, suffix)
  /packages/apps/TV/src/com/android/tv/dvr/
ScheduledRecording.java 26 import com.android.tv.data.Channel;
284 * Returns recorded {@link Channel}.
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/ts/
SectionParser.java 25 import com.android.usbtuner.data.Channel;
525 // If the six MSBs are 111111, these indicate that there is only one-part channel
556 "Found channel [%s] %s - serviceType: %d tsid: 0x%x program: %d "
557 + "channel: %d-%d encrypted: %b hidden: %b, descriptors: %d",
561 if (!accessControlled && !hidden && (serviceType == Channel.SERVICE_TYPE_ATSC_AUDIO ||
562 serviceType == Channel.SERVICE_TYPE_ATSC_DIGITAL_TELEVISION ||
563 serviceType == Channel.SERVICE_TYPE_UNASSOCIATED_SMALL_SCREEN_SERVICE)) {
696 // An AC3 audio stream descriptor only has a audio channel count and a audio sample rate
    [all...]
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/tvinput/
TunerSessionWorker.java 50 import com.android.usbtuner.data.Channel;
84 private static final String PLAY_FROM_CHANNEL = "channel";
350 public void onProgramsArrived(TunerChannel channel, List<EitItem> programs) {
351 sendMessage(MSG_SCHEDULE_OF_PROGRAMS, new Pair<>(channel, programs));
355 public void onChannelArrived(TunerChannel channel) {
356 sendMessage(MSG_UPDATE_CHANNEL_INFO, channel);
365 public void onRequestProgramsResponse(TunerChannel channel, List<EitItem> programs) {
366 sendMessage(MSG_PROGRAM_DATA_RESULT, new Pair<>(channel, programs));
387 public void onChannelDetected(TunerChannel channel, boolean channelArrivedAtFirstTime) {
388 mChannelDataManager.notifyChannelDetected(channel, channelArrivedAtFirstTime)
484 TunerChannel channel = (channelId == -1) ? null local
664 TunerChannel channel = pair.first; local
703 TunerChannel channel = (TunerChannel) msg.obj; local
710 TunerChannel channel = (TunerChannel) ((Pair) msg.obj).first; local
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
Delphi.stg 249 State.Channel := TToken.DEFAULT_CHANNEL;
840 TokenType, Channel: Integer;
858 Channel := DEFAULT_TOKEN_CHANNEL;
865 State.Channel := Channel;
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugEventSocketProxy.cs 364 buf.Append(t.Channel);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugEventSocketProxy.cs 413 buf.Append( t.Channel );

Completed in 1683 milliseconds

1 2 3 4 5 6 7 891011>>