Searched refs:Channel (Results 1 - 25 of 166) sorted by relevance

1234567

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DIToken.cs59 int Channel { property in interface:Antlr.Runtime.IToken
H A DCommonTokenStream.cs65 public int Channel { property in class:Antlr.Runtime.CommonTokenStream
88 while (_tokens[_p].Channel != _channel) {
138 while (_tokens[i].Channel != _channel) {
147 while (i >= 0 && ((IToken)_tokens[i]).Channel != _channel) {
158 while (_tokens[i].Channel != _channel) {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DIToken.cs65 int Channel property in interface:Antlr.Runtime.IToken
H A DCommonTokenStream.cs70 public int Channel property in class:Antlr.Runtime.CommonTokenStream
150 while (_tokens[i].Channel != _channel)
161 while (i >= 0 && ((IToken)_tokens[i]).Channel != _channel)
/external/replicaisland/src/com/replica/replicaisland/
H A DChannelSystem.java24 private FixedSizeArray<Channel> mChannels;
25 private Channel mSearchDummy;
30 mChannels = new FixedSizeArray<Channel>(CHANNEL_COUNT);
32 mSearchDummy = new Channel();
35 mChannels.add(new Channel());
51 public Channel registerChannel(String name) {
52 Channel result = null;
57 assert mRegisteredChannelCount < CHANNEL_COUNT : "Channel pool exhausted!";
72 public class Channel { class in class:ChannelSystem
86 private final static class ChannelComparator implements Comparator<Channel> {
[all...]
/external/skia/include/core/
H A DSkICC.h72 struct Channel { struct in class:SkICC
78 Channel fRed;
79 Channel fGreen;
80 Channel fBlue;
/external/skqp/include/core/
H A DSkICC.h72 struct Channel { struct in class:SkICC
78 Channel fRed;
79 Channel fGreen;
80 Channel fBlue;
/external/webrtc/webrtc/modules/audio_coding/test/
H A DTwoWayCommunication.h17 #include "webrtc/modules/audio_coding/test/Channel.h"
40 Channel* _channel_A2B;
41 Channel* _channel_B2A;
43 Channel* _channelRef_A2B;
44 Channel* _channelRef_B2A;
H A DiSACTest.h20 #include "webrtc/modules/audio_coding/test/Channel.h"
57 rtc::scoped_ptr<Channel> _channel_A2B;
58 rtc::scoped_ptr<Channel> _channel_B2A;
H A DSpatialAudio.h17 #include "webrtc/modules/audio_coding/test/Channel.h"
39 Channel* _channel;
/external/libmojo/mojo/edk/system/
H A Dbroker_messages.h45 inline Channel::MessagePtr CreateBrokerMessage(
53 Channel::MessagePtr message(new Channel::Message(message_size, num_handles));
64 inline Channel::MessagePtr CreateBrokerMessage(
68 Channel::MessagePtr message(
69 new Channel::Message(sizeof(BrokerMessageHeader), num_handles));
H A Dchannel.cc31 IsAlignedForChannelMessage(sizeof(Channel::Message::LegacyHeader)),
34 static_assert(IsAlignedForChannelMessage(sizeof(Channel::Message::Header)),
37 static_assert(sizeof(Channel::Message::LegacyHeader) == 8,
40 static_assert(offsetof(Channel::Message::LegacyHeader, num_bytes) ==
41 offsetof(Channel::Message::Header, num_bytes),
43 static_assert(offsetof(Channel::Message::LegacyHeader, message_type) ==
44 offsetof(Channel::Message::Header, message_type),
55 Channel::Message::Message(size_t payload_size, size_t max_handles)
64 Channel::Message::Message(size_t payload_size,
138 Channel
551 Channel::Channel(Delegate* delegate) function in class:mojo::edk::Channel
[all...]
H A Dnode_channel.h33 // Wraps a Channel to send and receive Node control messages.
35 public Channel::Delegate
60 Channel::MessagePtr message) = 0;
70 Channel::MessagePtr message) = 0;
75 Channel::MessagePtr message) = 0;
78 Channel::MessagePtr message) = 0;
98 static Channel::MessagePtr CreatePortsMessage(size_t payload_size,
102 static void GetPortsMessageData(Channel::Message* message, void** data,
140 void PortsMessage(Channel::MessagePtr message);
146 void Broadcast(Channel
[all...]
H A Dbroker_host.h23 class BrokerHost : public Channel::Delegate,
41 // Channel::Delegate:
56 scoped_refptr<Channel> channel_;
H A Dports_message.h40 Channel::MessagePtr TakeChannelMessage() {
50 // Construct a new user PortsMessage backed by a new Channel::Message.
53 // Construct a new PortsMessage backed by a Channel::Message. If
58 Channel::MessagePtr channel_message);
60 Channel::MessagePtr channel_message_;
/external/tensorflow/tensorflow/contrib/verbs/
H A Dverbs_service.proto29 message Channel {
43 Channel channel = 2;
49 Channel channel = 2;
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowWifiP2pManager.java7 import android.net.wifi.p2p.WifiP2pManager.Channel;
27 private Map<Channel, WifiP2pGroup> p2pGroupmap = new HashMap<>();
43 Channel c, int listeningChannel, int operatingChannel, ActionListener al) {
51 public Channel initialize(Context context, Looper looper, WifiP2pManager.ChannelListener listener) {
53 return ReflectionHelpers.newInstance(Channel.class);
57 public void createGroup(Channel c, ActionListener al) {
80 public void requestGroupInfo(final Channel c, final WifiP2pManager.GroupInfoListener gl) {
94 public void removeGroup(Channel c, ActionListener al) {
102 public void setGroupInfo(Channel channel, WifiP2pGroup wifiP2pGroup) {
/external/llvm/lib/Target/AMDGPU/
H A DAMDGPURegisterInfo.cpp39 unsigned AMDGPURegisterInfo::getSubRegFromChannel(unsigned Channel) const {
47 assert(Channel < array_lengthof(SubRegs));
48 return SubRegs[Channel];
H A DAMDGPURegisterInfo.h33 /// \returns the sub reg enum value for the given \p Channel
35 unsigned getSubRegFromChannel(unsigned Channel) const;
/external/webrtc/webrtc/voice_engine/
H A Dchannel_manager.h29 class Channel;
39 // To access the underlying Channel, use .channel().
43 // Channel channel_owner = channel_manager.GetChannel(channel_id);
49 explicit ChannelOwner(Channel* channel);
56 Channel* channel() const { return channel_ref_->channel.get(); }
60 // Shared instance of a Channel. Copying ChannelOwners increase the reference
64 ChannelRef(Channel* channel);
65 const rtc::scoped_ptr<Channel> channel;
85 Channel* GetChannel();
H A Dchannel.cc195 explicit VoERtcpObserver(Channel* owner) : owner_(owner) {}
242 Channel* owner_;
248 Channel::SendData(FrameType frameType,
256 "Channel::SendData(frameType=%u, payloadType=%u, timeStamp=%u,"
285 "Channel::SendData() failed to send data to RTP/RTCP module");
296 Channel::InFrameType(FrameType frame_type)
299 "Channel::InFrameType(frame_type=%d)", frame_type);
307 Channel::OnRxVadDetected(int vadDecision)
318 bool Channel::SendRtp(const uint8_t* data,
322 "Channel
802 Channel::Channel(int32_t channelId, function in class:webrtc::voe::Channel
[all...]
/external/mesa3d/src/intel/isl/
H A Dgen_format_layout.py95 class Channel(object): class in inherits: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])
148 self.l = Channel(line[9])
149 self.i = Channel(line[10])
150 self.p = Channel(line[11])
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dchannel_tracker.h51 struct Channel { struct in class:xla::ChannelTracker
56 // Creates a new Channel object and returns the corresponding
86 // Channel object.
87 std::map<int64, Channel> opaque_to_channel_ GUARDED_BY(channel_mutex_);
/external/tensorflow/tensorflow/core/platform/
H A Dsubprocess.h21 // Channel identifiers.
22 enum Channel { enum in namespace:tensorflow
/external/llvm/tools/lli/ChildTarget/
H A DChildTarget.cpp56 FDRPCChannel Channel(InFD, OutFD);
58 JITServer Server(Channel, SymbolLookup, RegisterEHFrames, DeregisterEHFrames);
62 ExitOnErr(Server.startReceivingFunction(Channel, RawId));

Completed in 651 milliseconds

1234567