HomeSort by relevance Sort by last modified time
    Searched refs:channel (Results 101 - 125 of 840) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
group-file-lexer.rb 119 channel = ANTLR3::DEFAULT_CHANNEL
128 @state.channel = channel
143 channel = ANTLR3::DEFAULT_CHANNEL
152 @state.channel = channel
167 channel = ANTLR3::DEFAULT_CHANNEL
176 @state.channel = channel
191 channel = ANTLR3::DEFAULT_CHANNE
    [all...]
  /external/chromium/chrome/browser/web_resource/
promo_resource_service.h 32 static bool IsBuildTargeted(const std::string& channel, int builds_targeted);
67 // Returns true if |builds_targeted| includes the release channel Chrome
68 // belongs to. For testing purposes, you can override the current channel
82 // Overrides the current Chrome release channel for testing purposes.
83 void set_channel(const char* channel) { channel_ = channel; }
189 // Overrides the current Chrome release channel for testing purposes.
  /external/libnfc-nci/src/udrv/include/
uamp_api.h 45 #define UAMP_CH_HCI_CMD 0 /* HCI Command channel */
46 #define UAMP_CH_HCI_EVT 1 /* HCI Event channel */
47 #define UAMP_CH_HCI_DATA 2 /* HCI ACL Data channel */
52 tUAMP_CH channel; /* UAMP_EVT_RX_READY: channel for which rx occured */ member in union:__anon10652
126 ** channel: UAMP_CH_HCI_ACL, or UAMP_CH_HCI_CMD
131 BT_API UINT16 UAMP_Write(tUAMP_ID amp_id, UINT8 *p_buf, UINT16 num_bytes, tUAMP_CH channel);
157 ** channel: UAMP_CH_HCI_ACL, or UAMP_CH_HCI_EVT
162 BT_API UINT16 UAMP_Read(tUAMP_ID amp_id, UINT8 *p_buf, UINT16 buf_size, tUAMP_CH channel);
  /external/qemu/distrib/sdl-1.2.15/src/audio/nds/
sound9.c 27 void SoundSystemInit(u32 rate,u32 buffersize,u8 channel,u8 format)
39 soundsystem->channel = channel;
  /external/webkit/Source/WebCore/workers/
SharedWorker.cpp 56 RefPtr<MessageChannel> channel = MessageChannel::create(context); local
57 worker->m_port = channel->port1();
58 OwnPtr<MessagePortChannel> remotePort = channel->port2()->disentangle(ec);
  /external/webkit/Source/WebKit/chromium/src/
WebKit.cpp 101 WTFLogChannel* channel = WebCore::getChannelFromName(name); local
102 if (channel)
103 channel->state = WTFLogChannelOn;
  /frameworks/wilhelm/src/itf/
IMIDIMuteSolo.c 22 static SLresult IMIDIMuteSolo_SetChannelMute(SLMIDIMuteSoloItf self, SLuint8 channel,
27 if (channel > 15) {
31 SLuint16 mask = 1 << channel;
45 static SLresult IMIDIMuteSolo_GetChannelMute(SLMIDIMuteSoloItf self, SLuint8 channel,
50 if (channel > 15 || (NULL == pMute)) {
57 *pMute = (mask >> channel) & 1;
65 static SLresult IMIDIMuteSolo_SetChannelSolo(SLMIDIMuteSoloItf self, SLuint8 channel,
70 if (channel > 15) {
74 SLuint16 mask = 1 << channel;
88 static SLresult IMIDIMuteSolo_GetChannelSolo(SLMIDIMuteSoloItf self, SLuint8 channel,
    [all...]
  /development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/
WiFiDirectBroadcastReceiver.java 25 import android.net.wifi.p2p.WifiP2pManager.Channel;
35 private Channel channel; field in class:WiFiDirectBroadcastReceiver
40 * @param channel Wifi p2p channel
43 public WiFiDirectBroadcastReceiver(WifiP2pManager manager, Channel channel,
47 this.channel = channel;
78 manager.requestPeers(channel, (PeerListListener) activity.getFragmentManager(
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/macrom/
SDL_romaudio.c 265 /* Create the sound manager channel */
266 channel = (SndChannelPtr)SDL_malloc(sizeof(*channel));
267 if ( channel == NULL ) {
276 channel->userInfo = (long)this;
277 channel->qLength = 128;
278 if ( SndNewChannel(&channel, sampledSynth, initOptions, callback) != noErr ) {
279 SDL_SetError("Unable to create audio channel");
280 SDL_free(channel);
281 channel = NULL
    [all...]
  /external/webkit/Source/WebCore/platform/audio/
AudioBus.h 41 // An AudioBus with one channel is mono, an AudioBus with two channels is stereo, etc.
62 // If allocate is false then setChannelMemory() has to be called later on for each channel before the AudioBus is useable...
65 // Tells the given channel to use an externally allocated buffer.
71 AudioChannel* channel(unsigned channel) { return m_channels[channel].get(); } function in class:WebCore::AudioBus
72 const AudioChannel* channel(unsigned channel) const { return const_cast<AudioBus*>(this)->m_channels[channel].get(); } function in class:WebCore::AudioBus
85 // Returns true if the channel count and frame-size match
    [all...]
Reverb.cpp 65 float* p = response->channel(i)->data();
113 AudioChannel* channel = impulseResponseBuffer->channel(i); local
115 OwnPtr<ReverbConvolver> convolver = adoptPtr(new ReverbConvolver(channel, renderSliceSize, maxFFTSize, convolverRenderPhase, useBackgroundThreads));
144 AudioChannel* destinationChannelL = destinationBus->channel(0);
145 AudioChannel* sourceChannelL = sourceBus->channel(0);
154 AudioChannel* sourceChannelR = sourceBus->channel(1);
155 AudioChannel* destinationChannelR = destinationBus->channel(1);
161 AudioChannel* destinationChannel = destinationBus->channel(i);
169 AudioChannel* destinationChannelR = destinationBus->channel(1)
    [all...]
  /libcore/luni/src/main/java/java/io/
FileInputStream.java 61 /** The unique file channel. Lazily initialized because it's rarely needed. */
62 private FileChannel channel; field in class:FileInputStream
117 if (channel != null) {
118 channel.close();
160 if (channel == null) {
161 channel = NioUtils.newFileChannel(this, fd, O_RDONLY);
163 return channel;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
SimpleExpression.g3 82 {$channel = Hidden;}
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
T.g 48 { $channel=99; }
  /external/srec/srec/cfront/
cheldsp4.c 222 int make_std_frame(front_channel *channel, front_cep *cepobj, featdata *hFrame)
229 channel->frame_valid = False;
230 if (channel->frame_count >= channel->frame_delay)
234 regress(rgmcep, channel->cep, (unsigned short) channel->frame_count, channel->mel_dim);
236 dd_regress(ddmcep, channel->cep, (unsigned short) channel->frame_count, channel->mel_dim)
    [all...]
frontobj.c 146 front_channel *channel; local
148 channel = (front_channel *) CALLOC_CLR(1,
149 sizeof(front_channel), "cfront.channel");
150 return channel;
154 void delete_channel_object(front_channel *channel)
156 ASSERT(channel);
157 FREE((char *) channel);
162 front_channel *channel, front_wave *waveobj,
165 ASSERT(channel);
170 channel->prebuff = (fftdata *) CALLOC(freqobj->window_length + 1
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCLexer.java 60 state.channel = _channel;
80 state.channel = _channel;
100 state.channel = _channel;
120 state.channel = _channel;
140 state.channel = _channel;
160 state.channel = _channel;
181 state.channel = _channel;
202 state.channel = _channel;
223 state.channel = _channel;
244 state.channel = _channel
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCLexer.java 60 state.channel = _channel;
80 state.channel = _channel;
100 state.channel = _channel;
120 state.channel = _channel;
140 state.channel = _channel;
160 state.channel = _channel;
181 state.channel = _channel;
202 state.channel = _channel;
223 state.channel = _channel;
244 state.channel = _channel
    [all...]
  /external/sonivox/arm-fm-22k/lib_src/
eas_vm_protos.h 116 * Sets the priority and MIP level for a MIDI channel
120 * channel - MIDI channel number
131 void VMSetMIPEntry (S_VOICE_MGR *pVoiceMgr, S_SYNTH *pSynth, EAS_U8 channel, EAS_U8 priority, EAS_U8 mip);
170 * channel if possible.
173 * nChannel - the MIDI channel
182 void VMStartNote (S_VOICE_MGR *pVoiceMgr, S_SYNTH *pSynth, EAS_U8 channel, EAS_U8 note, EAS_U8 velocity);
193 * nChannel - synth channel that wants to start a new note
208 void VMCheckKeyGroup (S_VOICE_MGR *pVoiceMgr, S_SYNTH *pSynth, EAS_U16 keyGroup, EAS_U8 channel);
214 * We only play at most 2 of the same note on a MIDI channel
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_vm_protos.h 116 * Sets the priority and MIP level for a MIDI channel
120 * channel - MIDI channel number
131 void VMSetMIPEntry (S_VOICE_MGR *pVoiceMgr, S_SYNTH *pSynth, EAS_U8 channel, EAS_U8 priority, EAS_U8 mip);
170 * channel if possible.
173 * nChannel - the MIDI channel
182 void VMStartNote (S_VOICE_MGR *pVoiceMgr, S_SYNTH *pSynth, EAS_U8 channel, EAS_U8 note, EAS_U8 velocity);
193 * nChannel - synth channel that wants to start a new note
208 void VMCheckKeyGroup (S_VOICE_MGR *pVoiceMgr, S_SYNTH *pSynth, EAS_U16 keyGroup, EAS_U8 channel);
214 * We only play at most 2 of the same note on a MIDI channel
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_vm_protos.h 116 * Sets the priority and MIP level for a MIDI channel
120 * channel - MIDI channel number
131 void VMSetMIPEntry (S_VOICE_MGR *pVoiceMgr, S_SYNTH *pSynth, EAS_U8 channel, EAS_U8 priority, EAS_U8 mip);
170 * channel if possible.
173 * nChannel - the MIDI channel
182 void VMStartNote (S_VOICE_MGR *pVoiceMgr, S_SYNTH *pSynth, EAS_U8 channel, EAS_U8 note, EAS_U8 velocity);
193 * nChannel - synth channel that wants to start a new note
208 void VMCheckKeyGroup (S_VOICE_MGR *pVoiceMgr, S_SYNTH *pSynth, EAS_U16 keyGroup, EAS_U8 channel);
214 * We only play at most 2 of the same note on a MIDI channel
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_phyuv.c 47 int grab_ptrs2(PgVideoChannel_t* channel, FRAMEDATA* Frame0, FRAMEDATA* Frame1)
52 Frame0->Y = (unsigned char *)PdGetOffscreenContextPtr(channel->yplane1);
53 Frame1->Y = (unsigned char *)PdGetOffscreenContextPtr(channel->yplane2);
54 Frame0->U = (unsigned char *)PdGetOffscreenContextPtr(channel->vplane1);
55 Frame1->U = (unsigned char *)PdGetOffscreenContextPtr(channel->vplane2);
56 Frame0->V = (unsigned char *)PdGetOffscreenContextPtr(channel->uplane1);
57 Frame1->V = (unsigned char *)PdGetOffscreenContextPtr(channel->uplane2);
112 if (overlay->hwdata->channel == NULL)
114 if ((overlay->hwdata->channel = PgCreateVideoChannel(Pg_VIDEO_CHANNEL_SCALER, 0)) == NULL)
116 SDL_SetError("ph_CreateYUVOverlay(): Create channel failed: %s\n", strerror(errno))
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
InjectedFakeWorker.js 46 return impl.channel.port1.onmessage;
50 impl.channel.port1.onmessage = callback;
54 this.addEventListener = bind(impl.channel.port1.addEventListener, impl.channel.port1);
55 this.removeEventListener = bind(impl.channel.port1.removeEventListener, impl.channel.port1);
56 this.dispatchEvent = bind(impl.channel.port1.dispatchEvent, impl.channel.port1);
65 this.channel = new MessageChannel();
76 this.channel.port1.postMessage.apply(this.channel.port1, arguments)
    [all...]
  /external/chromium/chrome/browser/
chrome_content_browser_client.cc 47 host->channel()->AddFilter(new ChromeRenderMessageFilter(
52 host->channel()->AddFilter(new PrintingMessageFilter());
53 host->channel()->AddFilter(
55 host->channel()->AddFilter(new SpellCheckMessageFilter());
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
Track.java 43 * and modify them according to the properties of the channel and the
49 * @param channel The channel which the track should effect
51 public void setTime(float time, float weight, AnimControl control, AnimChannel channel, TempVars vars);

Completed in 3229 milliseconds

1 2 3 45 6 7 8 91011>>