/external/chromium_org/chrome/browser/resources/gaia_auth/ |
H A D | channel.js | 6 * Channel to the background script. 8 function Channel() { function 12 Channel.INTERNAL_REQUEST_MESSAGE = 'internal-request-message'; 15 Channel.INTERNAL_REPLY_MESSAGE = 'internal-reply-message'; class 17 Channel.prototype = { 70 name: Channel.INTERNAL_REQUEST_MESSAGE, 94 if (name == Channel.INTERNAL_REQUEST_MESSAGE) { 98 name: Channel.INTERNAL_REPLY_MESSAGE, 102 } else if (name == Channel.INTERNAL_REPLY_MESSAGE) {
|
/external/chromium_org/chrome/common/ |
H A D | chrome_version_info.h | 22 enum Channel { enum in class:chrome::VersionInfo 75 static Channel GetChannel();
|
/external/chromium_org/ipc/ |
H A D | ipc_channel_common.cc | 10 scoped_ptr<Channel> Channel::CreateClient( 12 return Channel::Create(channel_handle, Channel::MODE_CLIENT, listener); 16 scoped_ptr<Channel> Channel::CreateNamedServer( 18 return Channel::Create(channel_handle, Channel::MODE_NAMED_SERVER, listener); 22 scoped_ptr<Channel> Channel [all...] |
H A D | ipc_channel.h | 41 class IPC_EXPORT Channel : public Sender { class in namespace:IPC 97 // Initialize a Channel. 99 // |channel_handle| identifies the communication Channel. For POSIX, if 108 // - Server and named server: In these modes, the Channel is 113 // - Client and named client: In these mode, the Channel merely 116 // Each mode has its own Create*() API to create the Channel object. 120 static scoped_ptr<Channel> Create( 123 static scoped_ptr<Channel> CreateClient( 131 static scoped_ptr<Channel> CreateNamedServer( 133 static scoped_ptr<Channel> CreateNamedClien [all...] |
/external/chromium_org/content/renderer/pepper/ |
H A D | pepper_in_process_router.cc | 22 class PepperInProcessRouter::Channel : public IPC::Sender { class in class:content::PepperInProcessRouter 24 Channel(const base::Callback<bool(IPC::Message*)>& callback) function in class:content::PepperInProcessRouter::Channel 27 virtual ~Channel() {} 42 browser_channel_.reset(new Channel(base::Bind( 44 host_to_plugin_router_.reset(new Channel(base::Bind( 46 plugin_to_host_router_.reset(new Channel(
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
H A D | CommonTokenStream.cs | 65 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 D | IToken.cs | 59 int Channel { property in interface:Antlr.Runtime.IToken
|
H A D | ClassicToken.cs | 63 channel = oldToken.Channel; 114 public int Channel { property in class:Antlr.Runtime.ClassicToken
|
H A D | CommonToken.cs | 91 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 D | CommonTokenStream.cs | 70 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 D | IToken.cs | 65 int Channel property in interface:Antlr.Runtime.IToken
|
H A D | ClassicToken.cs | 67 channel = oldToken.Channel; 132 public int Channel property in class:Antlr.Runtime.ClassicToken
|
H A D | CommonToken.cs | 98 channel = oldToken.Channel; 170 public int Channel property in class:Antlr.Runtime.CommonToken
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/ |
H A D | Channel.cc | 11 #include "webrtc/modules/audio_coding/main/test/Channel.h" 21 int32_t Channel::SendData(const FrameType frameType, const uint8_t payloadType, 124 void Channel::CalcStatistics(WebRtcRTPHeader& rtpInfo, uint16_t payloadSize) { 210 Channel::Channel(int16_t chID) function in class:webrtc::Channel 250 Channel::~Channel() { 254 void Channel::RegisterReceiverACM(AudioCodingModule* acm) { 259 void Channel::ResetStats() { 280 int16_t Channel [all...] |
H A D | Channel.h | 47 class Channel : public AudioPacketizationCallback { class in namespace:webrtc 50 Channel(int16_t chID = -1); 51 ~Channel();
|
/external/chromium_org/mojo/system/ |
H A D | channel.h | 48 // |ChannelEndpoint|, |Channel|. Thus |Channel| may not call into 49 // |ChannelEndpoint| with |Channel|'s lock held. 50 class MOJO_SYSTEM_IMPL_EXPORT Channel class in namespace:mojo::system 51 : public base::RefCountedThreadSafe<Channel>, 59 explicit Channel(embedder::PlatformSupport* platform_support); 129 friend class base::RefCountedThreadSafe<Channel>; 130 virtual ~Channel(); 188 DISALLOW_COPY_AND_ASSIGN(Channel);
|
H A D | channel.cc | 21 static_assert(Channel::kBootstrapEndpointId != 26 Channel::kBootstrapEndpointId; 28 Channel::Channel(embedder::PlatformSupport* platform_support) function in class:mojo::system::Channel 35 bool Channel::Init(scoped_ptr<RawChannel> raw_channel) { 53 void Channel::Shutdown() { 85 DVLOG_IF(2, num_live || num_zombies) << "Shut down Channel with " << num_live 90 void Channel::WillShutdownSoon() { 99 MessageInTransit::EndpointId Channel::AttachEndpoint( 124 bool Channel [all...] |
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/ |
H A D | sync_buffer.h | 81 const AudioVector& Channel(size_t n) const { return *channels_[n]; } function in class:webrtc::SyncBuffer 82 AudioVector& Channel(size_t n) { return *channels_[n]; } function in class:webrtc::SyncBuffer
|
/external/replicaisland/src/com/replica/replicaisland/ |
H A D | ChannelSystem.java | 24 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 D | SlimToken.cs | 100 public int Channel property in struct:Antlr.Runtime.SlimToken
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
H A D | u_format_parse.py | 52 class Channel: class in inherits: 232 Channel and Format classes above.''' 298 channel = Channel(type, norm, pure, size, names[i])
|
/external/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_format_parse.py | 52 class Channel: class in inherits: 232 Channel and Format classes above.''' 298 channel = Channel(type, norm, pure, size, names[i])
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
H A D | RemoteDebugEventSocketListener.cs | 124 public int Channel { property in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
H A D | RemoteDebugEventSocketListener.cs | 142 public int Channel property in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
H A D | turnserver.cc | 100 typedef std::list<Channel*> ChannelList; 117 Channel* FindChannel(int channel_id) const; 118 Channel* FindChannel(const rtc::SocketAddress& addr) const; 128 void OnChannelDestroyed(Channel* channel); 166 class TurnServer::Channel : public rtc::MessageHandler { class in class:cricket::TurnServer 168 Channel(rtc::Thread* thread, int id, 170 ~Channel(); 176 sigslot::signal1<Channel*> SignalDestroyed; 817 Channel* channel1 = FindChannel(channel_id); 818 Channel* channel 1007 TurnServer::Channel::Channel(rtc::Thread* thread, int id, function in class:cricket::TurnServer::Channel [all...] |