Searched defs:Channel (Results 1 - 21 of 21) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
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) {
H A DIToken.cs59 int Channel { property in interface:Antlr.Runtime.IToken
H A DClassicToken.cs63 channel = oldToken.Channel;
114 public int Channel { property in class:Antlr.Runtime.ClassicToken
H A DCommonToken.cs91 channel = oldToken.Channel;
151 public int Channel { property in class:Antlr.Runtime.CommonToken
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
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)
H A DIToken.cs65 int Channel property in interface:Antlr.Runtime.IToken
H A DClassicToken.cs67 channel = oldToken.Channel;
132 public int Channel property in class:Antlr.Runtime.ClassicToken
H A DCommonToken.cs98 channel = oldToken.Channel;
170 public int Channel property in class:Antlr.Runtime.CommonToken
/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/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimToken.cs100 public int Channel property in struct:Antlr.Runtime.SlimToken
/external/chromium/chrome/common/extensions/docs/server/
H A Dchromeextensionsdocs.py20 class Channel(): class in inherits:
33 Channel.DEV = Channel("dev", "2.0-dev")
34 Channel.BETA = Channel("beta", "1.1-beta")
35 Channel.STABLE = Channel("stable", "")
36 Channel.CHANNELS = [Channel.DEV, Channel
[all...]
/external/chromium/chrome/browser/sync/syncable/
H A Ddirectory_manager.h49 typedef EventChannel<DirectoryManagerEvent> Channel; typedef in class:syncable::DirectoryManager
74 Channel* channel() const { return channel_; }
102 Channel* const channel_;
H A Dsyncable.h837 typedef EventChannel<DirectoryEventTraits, base::Lock> Channel; typedef in class:syncable::Directory
883 inline Channel* channel() const {
1016 Channel* const channel;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DRemoteDebugEventSocketListener.cs124 public int Channel { property in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DRemoteDebugEventSocketListener.cs142 public int Channel property in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken
/external/chromium/chrome/common/net/gaia/
H A Dgaia_authenticator.h253 typedef EventChannel<GaiaAuthEvent, base::Lock> Channel; typedef in class:gaia::GaiaAuthenticator
255 inline Channel* channel() const {
281 Channel* channel_;
/external/dropbear/
H A Dchannel.h60 struct Channel { struct
97 int (*inithandler)(struct Channel*);
98 int (*check_close)(struct Channel*);
99 void (*reqhandler)(struct Channel*);
100 void (*closehandler)(struct Channel*);
108 struct Channel* getchannel();
109 struct Channel* newchannel(unsigned int remotechan,
115 void send_msg_channel_failure(struct Channel *channel);
116 void send_msg_channel_success(struct Channel *channel);
123 void common_recv_msg_channel_data(struct Channel *channe
[all...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
H A DChannel.java8 * Channel.
11 * @version $Id: Channel.java 14 2011-05-27 14:28:21Z dkocher@sudo.ch $
13 public class Channel class
37 * ====> Always keep that in mind when modifying the Channel/ChannelManger
59 // These two fields will only be written while the Channel is in state
63 // Therefore, if you know that the Channel is in state STATE_OPEN, then you
64 // can read these two fields without synchronizing on the Channel. However, make
76 * we cannot keep a lock on the Channel during the send operation (this
149 public Channel(ChannelManager cm) method in class:Channel
/external/chromium/chrome/common/deprecated/
H A Devent_sys_unittest.cc39 typedef EventChannel<TestEventTraits> Channel; typedef in class:__anon2671::Pair
42 event_channel_ = new Channel(shutdown);
60 Channel* event_channel() const { return event_channel_; }
66 Channel* event_channel_;
77 void Hookup(const std::string name, Pair::Channel* channel) {
/external/chromium/chrome/browser/sync/engine/net/
H A Dserver_connection_manager.h169 typedef EventChannel<ServerConnectionEvent, base::Lock> Channel; typedef in class:browser_sync::ServerConnectionManager
258 inline Channel* channel() const { return channel_; }
368 Channel* const channel_;
/external/openssh/
H A Dchannels.h60 struct Channel;
61 typedef struct Channel Channel; typedef in typeref:struct:Channel
65 typedef int channel_infilter_fn(struct Channel *, char *, int);
67 typedef u_char *channel_outfilter_fn(struct Channel *, u_char **, u_int *);
69 /* Channel success/failure callbacks */
70 typedef void channel_confirm_cb(int, struct Channel *, void *);
71 typedef void channel_confirm_abandon_cb(struct Channel *, void *);
88 typedef int mux_callback_fn(struct Channel *);
90 struct Channel { struct
[all...]

Completed in 399 milliseconds