HomeSort by relevance Sort by last modified time
    Searched defs:Channel (Results 1 - 25 of 171) sorted by null

1 2 3 4 5 6 7

  /libcore/ojluni/src/main/java/java/nio/channels/
Channel.java 35 * <p> A channel represents an open connection to an entity such as a hardware
40 * <p> A channel is either open or closed. A channel is open upon creation,
41 * and once closed it remains closed. Once a channel is closed, any attempt to
43 * to be thrown. Whether or not a channel is open may be tested by invoking
56 public interface Channel extends Closeable {
59 * Tells whether or not this channel is open.
61 * @return <tt>true</tt> if, and only if, this channel is open
66 * Closes this channel.
68 * <p> After a channel is closed, any further attempt to invoke I/
    [all...]
  /external/mesa3d/src/intel/isl/
gen_format_layout.py 76 <% channel = getattr(format, mask, None) %>\\
77 % if channel.type is not None:
78 .${mask} = { ISL_${channel.type}, ${channel.size} },
95 class Channel(object):
96 """Class representing a Channel.
144 self.r = Channel(line[5])
145 self.g = Channel(line[6])
146 self.b = Channel(line[7])
147 self.a = Channel(line[8]
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/test/
Channel.cc 11 #include "webrtc/modules/audio_coding/test/Channel.h"
22 int32_t Channel::SendData(FrameType frameType,
52 rtpInfo.type.Audio.channel = 1;
89 rtpInfo.type.Audio.channel = 1;
93 rtpInfo.type.Audio.channel = 2;
130 void Channel::CalcStatistics(WebRtcRTPHeader& rtpInfo, size_t payloadSize) {
225 Channel::Channel(int16_t chID)
267 Channel::~Channel() {
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/SaveMemoryConfig/
SaveMemoryConfig.c 61 UINT8 Channel, Slot;
124 for (Channel = 0; Channel < CH_NUM; Channel ++){
126 MemInfoProtocol->MemInfoData.dimmSize[Slot + (Channel * DIMM_NUM)] = PlatformInfoHobPtr->MemData.DimmSize[Slot + (Channel * DIMM_NUM)];
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
CommonTokenStream.cs 41 * and tokens are prefiltered for a certain channel (the parser will only
42 * see these tokens and cannot change the filter channel number during the
50 /** Skip tokens on any channel but this one; this is how we skip whitespace... */
60 public CommonTokenStream(ITokenSource tokenSource, int channel)
62 this._channel = channel;
65 public int Channel {
82 /** Always leave p on an on-channel token. */
88 while (_tokens[_p].Channel != _channel) {
102 // skip off-channel tokens
122 // skip off-channel token
    [all...]
IToken.cs 59 int Channel {
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...]
CommonToken.cs 43 int channel = TokenChannels.Default; field in class:Antlr.Runtime.CommonToken
71 public CommonToken(ICharStream input, int type, int channel, int start, int stop) {
74 this.channel = channel;
81 this.channel = TokenChannels.Default;
91 channel = oldToken.Channel;
151 public int Channel {
153 return channel;
156 channel = value
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
CommonTokenStream.cs 42 * and tokens are prefiltered for a certain channel (the parser will only
43 * see these tokens and cannot change the filter channel number during the
52 /** Skip tokens on any channel but this one; this is how we skip whitespace... */
64 public CommonTokenStream(ITokenSource tokenSource, int channel)
67 this._channel = channel;
70 public int Channel
92 /** Always leave p on an on-channel token. */
111 // skip off-channel tokens
133 // skip off-channel tokens
144 /** Given a starting index, return the index of the first on-channel
    [all...]
IToken.cs 65 int Channel
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...]
CommonToken.cs 45 int channel = TokenChannels.Default; field in class:Antlr.Runtime.CommonToken
75 public CommonToken( ICharStream input, int type, int channel, int start, int stop )
79 this.channel = channel;
87 this.channel = TokenChannels.Default;
98 channel = oldToken.Channel;
170 public int Channel
174 return channel;
178 channel = value
    [all...]
  /external/skia/include/core/
SkICC.h 72 struct Channel {
78 Channel fRed;
79 Channel fGreen;
80 Channel fBlue;
  /external/webrtc/webrtc/modules/audio_coding/neteq/
sync_buffer.h 37 // Adds |length| zeros to the beginning of each channel. Removes
45 // Inserts |length| zeros into each channel at index |position|. The size of
47 // elements in each channel will be purged.
50 // Overwrites each channel in this SyncBuffer with values taken from
53 // channel. The size of the SyncBuffer is kept constant. That is, if |length|
66 // Reads |requested_len| samples from each channel and writes them interleaved
79 const AudioVector& Channel(size_t n) const { return *channels_[n]; }
80 AudioVector& Channel(size_t n) { return *channels_[n]; }
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimToken.cs 100 public int Channel
  /external/deqp/external/vulkancts/framework/vulkan/
vkImageUtil.hpp 77 CHANNEL_R = (1u<<0), // Has "R" (0) channel
78 CHANNEL_G = (1u<<1), // Has "G" (1) channel
79 CHANNEL_B = (1u<<2), // Has "B" (2) channel
80 CHANNEL_A = (1u<<3), // Has "A" (3) channel
90 struct Channel
102 Channel channels[MAX_CHANNELS];
  /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.
  /external/libmojo/mojo/edk/system/
channel.cc 5 #include "mojo/edk/system/channel.h"
29 static_assert(sizeof(Channel::Message::Header) % kChannelMessageAlignment == 0,
33 static_assert(sizeof(Channel::Message::Header) == 8,
44 Channel::Message::Message(size_t payload_size,
117 Channel::Message::~Message() {
122 Channel::MessagePtr Channel::Message::Deserialize(const void* data,
204 size_t Channel::Message::payload_size() const {
213 bool Channel::Message::has_mach_ports() const {
227 void Channel::Message::SetHandles(ScopedPlatformHandleVectorPtr new_handles)
    [all...]
  /frameworks/native/libs/vr/libpdx/private/pdx/
service.h 41 // System message sent when a new client channel is open.
43 // System message sent when a channel is closed.
54 * Base class of service-side per-channel context classes.
56 class Channel : public std::enable_shared_from_this<Channel> {
58 Channel() {}
59 virtual ~Channel() {}
62 * Utility to get a shared_ptr reference from the channel context pointer.
64 static std::shared_ptr<Channel> GetFromMessageInfo(const MessageInfo& info);
187 * Update the channel event bits with the given clear and set masks
    [all...]
  /packages/apps/TV/src/com/android/tv/menu/
AppLinkCardView.java 39 import com.android.tv.data.Channel;
64 private Channel mChannel;
100 Channel newChannel = item.getChannel();
118 case Channel.APP_LINK_TYPE_CHANNEL:
152 mChannel.loadBitmap(getContext(), Channel.LOAD_IMAGE_TYPE_APP_LINK_ICON,
154 this, mChannel, Channel.LOAD_IMAGE_TYPE_APP_LINK_ICON));
188 case Channel.APP_LINK_TYPE_APP:
238 mChannel.loadBitmap(getContext(), Channel.LOAD_IMAGE_TYPE_APP_LINK_POSTER_ART,
240 Channel.LOAD_IMAGE_TYPE_APP_LINK_POSTER_ART));
249 AppLinkCardView cardView, final Channel channel, final int type)
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/
IdeBus.h 85 EFI_IDE_CHANNEL Channel;
512 @param IdeChannel Pointer to the Ide Channel number. Primary or secondary.
  /external/mesa3d/src/amd/vulkan/
vk_format_parse.py 53 class Channel:
54 '''Describe the channel of a color channel.'''
138 for channel in self.le_channels:
139 size += channel.size
144 for channel in self.le_channels:
145 if channel.size:
155 for channel in self.le_channels:
156 if channel.size and (channel.size != ref_channel.size or channel.size % 8)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_parse.py 52 class Channel:
53 '''Describe the channel of a color channel.'''
134 for channel in self.le_channels:
135 size += channel.size
140 for channel in self.le_channels:
141 if channel.size:
151 for channel in self.le_channels:
152 if channel.size and (channel.size != ref_channel.size or channel.size % 8)
    [all...]
  /external/v8/include/
v8-inspector.h 250 class V8_EXPORT Channel {
252 virtual ~Channel() {}
259 int contextGroupId, Channel*, const StringView& state) = 0;
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaFloppyDxe/
IsaFloppyCtrl.c 846 UINT8 Channel;
879 Channel = (UINT8) IsaIo->ResourceList->ResourceItem[Index].StartRange;
885 Channel,
    [all...]

Completed in 492 milliseconds

1 2 3 4 5 6 7