Searched defs:channel (Results 76 - 100 of 597) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DRecognizerSharedState.cs140 /** <summary>The channel number for the current token</summary> */
141 public int channel; field in class:Antlr.Runtime.RecognizerSharedState
181 channel = state.channel;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DCommonTokenStream.java32 * and tokens are filtered for a certain channel (the parser will only
40 * is that this stream knows how to ignore off channel tokens. There may be
42 * whitespace and comments etc. to the parser on a hidden channel (i.e.,
43 * you set $channel instead of calling skip() in lexer rules.)
49 /** Skip tokens on any channel but this one; this is how we skip whitespace... */
50 protected int channel = Token.DEFAULT_CHANNEL; field in class:CommonTokenStream
58 public CommonTokenStream(TokenSource tokenSource, int channel) { argument
60 this.channel = channel;
63 /** Always leave p on an on-channel toke
[all...]
H A DRecognizerSharedState.java109 /** The channel number for the current token */
110 public int channel; field in class:RecognizerSharedState
140 this.channel = state.channel;
H A DUnbufferedTokenStream.java40 * You can't use this stream if you pass whitespace or other off-channel
41 * tokens to the parser. The stream can't ignore off-channel tokens.
54 /** Skip tokens on any channel but this one; this is how we skip whitespace... */
55 protected int channel = Token.DEFAULT_CHANNEL; field in class:UnbufferedTokenStream
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRCommonToken.h38 NSUInteger channel; variable
92 // channel
94 - (NSUInteger)channel;
123 @property (assign) NSUInteger channel; variable
/external/chromium_org/chrome/browser/
H A Dchrome_content_browser_client_unittest.cc47 void MaybeCopyDisableWebRtcEncryptionSwitch(VersionInfo::Channel channel) { argument
51 channel);
/external/chromium_org/components/cronet/android/java/src/org/chromium/net/
H A DHttpUrlRequestFactory.java60 WritableByteChannel channel, HttpUrlRequestListener listener);
58 createRequest(String url, int requestPriority, Map<String, String> headers, WritableByteChannel channel, HttpUrlRequestListener listener) argument
/external/chromium_org/content/common/gpu/
H A Ddevtools_gpu_agent.cc50 GpuChannel* channel) {
58 task.foreign = channel != gpu_channel_;
59 task.gpu_memory_used_bytes = channel->GetMemoryUsage();
47 ProcessEvent( TimeTicks timestamp, GpuEventsDispatcher::EventPhase phase, GpuChannel* channel) argument
H A Ddevtools_gpu_instrumentation.h31 static void FireEvent(EventPhase phase, GpuChannel* channel) { argument
34 DoFireEvent(phase, channel);
39 static void DoFireEvent(EventPhase, GpuChannel* channel);
49 explicit ScopedGpuTask(GpuChannel* channel) : argument
50 channel_(channel) {
/external/chromium_org/media/base/
H A Dmulti_channel_resampler.cc21 // Allocate each channel's resampler.
29 // Setup the wrapped AudioBus for channel data.
38 i + 1, resampler_audio_bus_->channel(i));
48 // Optimize the single channel case to avoid the chunking process below.
50 resamplers_[0]->Resample(frames, audio_bus->channel(0));
55 // channel. To ensure this, we chunk the number of requested frames into
63 // Resample each channel.
70 // the first channel, then it will call it for the remaining channels,
74 frames_this_time, audio_bus->channel(i) + output_frames_ready_);
81 void MultiChannelResampler::ProvideInput(int channel, argument
[all...]
/external/chromium_org/mojo/system/
H A Dproxy_message_pipe_endpoint.cc10 #include "mojo/system/channel.h"
78 LOG(WARNING) << "Failed to write message to channel";
84 void ProxyMessagePipeEndpoint::Attach(scoped_refptr<Channel> channel, argument
86 DCHECK(channel);
92 channel_ = channel;
/external/chromium_org/ppapi/proxy/
H A Dproxy_channel.h44 // on the other side of the channel. This is part of the delegate interface
45 // because both sides of the channel may not have sufficient permission to
57 // messages sent via this channel to the given test sink. The test sink
79 IPC::SyncChannel* channel() const { function in class:ppapi::proxy::ProxyChannel
113 // indicates that the channel should not be used.
/external/chromium_org/sandbox/win/src/
H A Dsharedmem_ipc_client.cc14 // Get the base of the data buffer of the channel; this is where the input
16 // channel we avoid one copy.
32 ChannelControl* channel = control_->channels; local
33 LONG result = ::InterlockedExchange(&channel[num].state, kFreeChannel);
45 // There must be at least one channel.
49 // Do the IPC. At this point the channel should have already been
58 ChannelControl* channel = control_->channels; local
62 channel[num].ipc_tag = params->GetTag();
70 DWORD wait = ::SignalObjectAndWait(channel[num].ping_event,
71 channel[nu
122 ChannelControl* channel = control_->channels; local
[all...]
H A Dsharedmem_ipc_server.h65 // per channel.
69 // A copy this structure is maintained per channel.
75 // This channel server ping event.
77 // This channel server pong event.
79 // The size of this channel.
81 // The pointer to the actual channel data.
85 // A pointer to this channel's client-side control structure this structure
87 ChannelControl* channel; member in struct:sandbox::SharedMemIPCServer::ServerControl
88 // the IPC dispatcher associated with this channel.
90 // The target process information associated with this channel
[all...]
/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DSharedWorker.cpp66 RefPtrWillBeRawPtr<MessageChannel> channel = MessageChannel::create(context); local
67 worker->m_port = channel->port1();
68 OwnPtr<blink::WebMessagePortChannel> remotePort = channel->port2()->disentangle();
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DHRTFKernel.cpp47 static float extractAverageGroupDelay(AudioChannel* channel, size_t analysisFFTSize) argument
49 ASSERT(channel);
51 float* impulseP = channel->mutableData();
53 bool isSizeGood = channel->length() >= analysisFFTSize;
70 HRTFKernel::HRTFKernel(AudioChannel* channel, size_t fftSize, float sampleRate) argument
74 ASSERT(channel);
77 m_frameDelay = extractAverageGroupDelay(channel, fftSize / 2);
79 float* impulseResponse = channel->mutableData();
80 size_t responseLength = channel->length();
101 OwnPtr<AudioChannel> channel
[all...]
/external/chromium_org/third_party/libjingle/source/talk/p2p/client/
H A Dsocketmonitor.cc41 SocketMonitor::SocketMonitor(TransportChannel* channel, argument
44 channel_ = channel;
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dtypingmonitor.cc32 #include "talk/session/media/channel.h"
36 TypingMonitor::TypingMonitor(VoiceChannel* channel, argument
39 : channel_(channel),
74 // channel.
/external/chromium_org/third_party/webrtc/common_audio/include/
H A Daudio_util.h59 // Deinterleave audio from |interleaved| to the channel buffers pointed to
67 T* channel = deinterleaved[i]; local
70 channel[j] = interleaved[interleaved_idx];
76 // Interleave audio from the channel buffers pointed to by |deinterleaved| to
83 const T* channel = deinterleaved[i]; local
86 interleaved[interleaved_idx] = channel[j];
/external/chromium_org/third_party/webrtc/tools/e2e_quality/audio/
H A Daudio_e2e_harness.cc48 int channel = base->CreateChannel(); local
49 ASSERT_NE(-1, channel);
52 new VoiceChannelTransport(network, channel));
68 ASSERT_EQ(0, codec->SetSendCodec(channel, codec_params));
93 ASSERT_EQ(0, base->StartReceive(channel));
94 ASSERT_EQ(0, base->StartPlayout(channel));
95 ASSERT_EQ(0, base->StartSend(channel));
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dchannel_manager.h38 // To access the underlying Channel, use .channel().
44 // channel_owner.channel()->...;
48 explicit ChannelOwner(Channel* channel);
55 Channel* channel() { return channel_ref_->channel.get(); } function in class:webrtc::voe::ChannelOwner
56 bool IsValid() { return channel_ref_->channel.get() != NULL; }
62 ChannelRef(Channel* channel);
63 const scoped_ptr<Channel> channel; member in struct:webrtc::voe::ChannelOwner::ChannelRef
74 // Upon construction of an Iterator it will grab a copy of the channel list of
95 // CreateChannel will always return a valid ChannelOwner instance. The channel
[all...]
H A Dvoe_external_media_impl.cc15 #include "webrtc/voice_engine/channel.h"
58 int channel,
63 "RegisterExternalMediaProcessing(channel=%d, type=%d, "
64 "processObject=0x%x)", channel, type, &processObject);
76 shared_->channel_manager().GetChannel(channel);
77 voe::Channel* channelPtr = ch.channel();
82 "channel");
104 int channel,
108 "DeRegisterExternalMediaProcessing(channel=%d)", channel);
57 RegisterExternalMediaProcessing( int channel, ProcessingTypes type, VoEMediaProcess& processObject) argument
103 DeRegisterExternalMediaProcessing( int channel, ProcessingTypes type) argument
146 GetAudioFrame(int channel, int desired_sample_rate_hz, AudioFrame* frame) argument
186 SetExternalMixing(int channel, bool enable) argument
[all...]
H A Dvoe_network_impl.cc16 #include "webrtc/voice_engine/channel.h"
46 int VoENetworkImpl::RegisterExternalTransport(int channel, argument
50 "SetExternalTransport(channel=%d, transport=0x%x)",
51 channel, &transport);
57 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
58 voe::Channel* channelPtr = ch.channel();
62 "SetExternalTransport() failed to locate channel");
68 int VoENetworkImpl::DeRegisterExternalTransport(int channel) argument
71 "DeRegisterExternalTransport(channel=%d)", channel);
89 ReceivedRTPPacket(int channel, const void* data, unsigned int length) argument
95 ReceivedRTPPacket(int channel, const void* data, unsigned int length, const PacketTime& packet_time) argument
139 ReceivedRTCPPacket(int channel, const void* data, unsigned int length) argument
[all...]
/external/chromium_org/third_party/webrtc/voice_engine/include/mock/
H A Dfake_voe_external_media.h29 (int channel, ProcessingTypes type, VoEMediaProcess& processObject)) {
34 (int channel, ProcessingTypes type)) {
46 WEBRTC_STUB(GetAudioFrame, (int channel, int desired_sample_rate_hz,
48 WEBRTC_STUB(SetExternalMixing, (int channel, bool enable));
28 WEBRTC_FUNC(RegisterExternalMediaProcessing, (int channel, ProcessingTypes type, VoEMediaProcess& processObject)) argument
33 WEBRTC_FUNC(DeRegisterExternalMediaProcessing, (int channel, ProcessingTypes type)) argument
/external/e2fsprogs/e2fsck/
H A Dehandler.c22 static errcode_t e2fsck_handle_read_error(io_channel channel, argument
32 ext2_filsys fs = (ext2_filsys) channel->app_data;
45 for (i=0; i < count; i++, p += channel->block_size, block++) {
46 error = io_channel_read_blk64(channel, block,
62 io_channel_write_blk64(channel, block, count, data);
69 static errcode_t e2fsck_handle_write_error(io_channel channel, argument
79 ext2_filsys fs = (ext2_filsys) channel->app_data;
93 for (i=0; i < count; i++, p += channel->block_size, block++) {
94 error = io_channel_write_blk64(channel, block,
123 void ehandler_init(io_channel channel) argument
[all...]

Completed in 1671 milliseconds

1234567891011>>