Searched refs:channels (Results 1 - 25 of 86) sorted by relevance

1234

/macosx-10.9.5/WebCore-7537.78.1/platform/qt/
H A DLoggingQt.cpp47 QStringList channels = QString::fromLocal8Bit(loggingEnv).split(QLatin1String(","));
48 for (int i = 0; i < channels.count(); i++) {
49 if (WTFLogChannel* channel = getChannelFromName(channels.at(i)))
/macosx-10.9.5/WebKit2-7537.78.2/Platform/qt/
H A DLoggingQt.cpp47 QStringList channels = QString::fromLocal8Bit(loggingEnv).split(QLatin1String(",")); local
48 for (int i = 0; i < channels.count(); i++) {
49 if (WTFLogChannel* activeChannel = getChannelFromName(channels.at(i)))
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DMessagePort.cpp74 OwnPtr<MessagePortChannelArray> channels; local
84 channels = MessagePort::disentanglePorts(ports, ec);
88 m_entangledChannel->postMessageToRemote(message, channels.release());
171 OwnPtr<MessagePortChannelArray> channels; local
172 while (m_entangledChannel && m_entangledChannel->tryGetMessageFromRemote(message, channels)) {
180 OwnPtr<MessagePortArray> ports = MessagePort::entanglePorts(*m_scriptExecutionContext, channels.release());
230 PassOwnPtr<MessagePortArray> MessagePort::entanglePorts(ScriptExecutionContext& context, PassOwnPtr<MessagePortChannelArray> channels) argument
232 if (!channels || !channels->size())
235 OwnPtr<MessagePortArray> portArray = adoptPtr(new MessagePortArray(channels
[all...]
/macosx-10.9.5/WebCore-7537.78.1/dom/default/
H A DPlatformMessagePortChannel.cpp40 PassOwnPtr<PlatformMessagePortChannel::EventData> PlatformMessagePortChannel::EventData::create(PassRefPtr<SerializedScriptValue> message, PassOwnPtr<MessagePortChannelArray> channels) argument
42 return adoptPtr(new EventData(message, channels));
45 PlatformMessagePortChannel::EventData::EventData(PassRefPtr<SerializedScriptValue> message, PassOwnPtr<MessagePortChannelArray> channels) argument
47 , m_channels(channels)
94 void MessagePortChannel::postMessageToRemote(PassRefPtr<SerializedScriptValue> message, PassOwnPtr<MessagePortChannelArray> channels) argument
99 bool wasEmpty = m_channel->m_outgoingQueue->appendAndCheckEmpty(PlatformMessagePortChannel::EventData::create(message, channels));
104 bool MessagePortChannel::tryGetMessageFromRemote(RefPtr<SerializedScriptValue>& message, OwnPtr<MessagePortChannelArray>& channels) argument
112 channels = result->channels();
H A DPlatformMessagePortChannel.h55 PassOwnPtr<MessagePortChannelArray> channels() { return m_channels.release(); } function in class:WebCore::PlatformMessagePortChannel::EventData
/macosx-10.9.5/tcl-102/tcl_ext/snack/snack/demos/tcl/
H A Doggstream.tcl24 sound s -channel $sock -channels 2 -rate 44100 -fileformat ogg
H A Dlevelmeter.tcl7 snack::sound s -channels 2
H A Dgenerator2.tcl7 snack::sound s1 -channels 2
12 snack::sound s2 -channels 2
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libpng/
H A Dpngwtran.c41 /* png_byte channels; number of channels (1-4) */
42 /* png_byte pixel_depth; bits per pixel (depth*channels) */
88 * row_info bit depth should be 8 (one pixel per byte). The channels
97 row_info->channels == 1)
200 row_info->pixel_depth = (png_byte)(bit_depth * row_info->channels);
224 int channels = 0; local
228 shift_start[channels] = row_info->bit_depth - bit_depth->red;
229 shift_dec[channels] = bit_depth->red;
230 channels
[all...]
/macosx-10.9.5/ruby-104/ruby/sample/rss/
H A Dlist_description.rb15 channels = {}
71 channels[rss.channel.title] ||= []
72 channels[rss.channel.title] << item if item.description
78 channels.sort do |x, y|
/macosx-10.9.5/WebCore-7537.78.1/workers/
H A DWorkerMessagingProxy.cpp57 static PassOwnPtr<MessageWorkerContextTask> create(PassRefPtr<SerializedScriptValue> message, PassOwnPtr<MessagePortChannelArray> channels) argument
59 return adoptPtr(new MessageWorkerContextTask(message, channels));
63 MessageWorkerContextTask(PassRefPtr<SerializedScriptValue> message, PassOwnPtr<MessagePortChannelArray> channels) argument
65 , m_channels(channels)
85 static PassOwnPtr<MessageWorkerTask> create(PassRefPtr<SerializedScriptValue> message, PassOwnPtr<MessagePortChannelArray> channels, WorkerMessagingProxy* messagingProxy) argument
87 return adoptPtr(new MessageWorkerTask(message, channels, messagingProxy));
91 MessageWorkerTask(PassRefPtr<SerializedScriptValue> message, PassOwnPtr<MessagePortChannelArray> channels, WorkerMessagingProxy* messagingProxy) argument
93 , m_channels(channels)
288 void WorkerMessagingProxy::postMessageToWorkerObject(PassRefPtr<SerializedScriptValue> message, PassOwnPtr<MessagePortChannelArray> channels) argument
290 m_scriptExecutionContext->postTask(MessageWorkerTask::create(message, channels, thi
293 postMessageToWorkerContext(PassRefPtr<SerializedScriptValue> message, PassOwnPtr<MessagePortChannelArray> channels) argument
[all...]
H A DDedicatedWorkerContext.cpp77 OwnPtr<MessagePortChannelArray> channels = MessagePort::disentanglePorts(ports, ec); local
80 thread()->workerObjectProxy().postMessageToWorkerObject(message, channels.release());
H A DWorker.cpp108 OwnPtr<MessagePortChannelArray> channels = MessagePort::disentanglePorts(ports, ec); local
111 m_contextProxy->postMessageToWorkerContext(message, channels.release());
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libpng/contrib/pngminus/
H A Dpnm2png.c204 int channels; local
318 /* calculate the number of channels and store alpha-presence */
320 channels = 1;
322 channels = 2;
324 channels = 3;
326 channels = 4;
328 channels = 0; /* should not happen */
330 alpha_present = (channels - 1) % 2;
332 /* row_bytes is the width x number of channels x (bit-depth / 8) */
333 row_bytes = width * channels * ((bit_dept
[all...]
H A Dpng2pnm.c201 int channels; local
276 * get rowbytes and channels, and allocate image memory */
293 /* calculate new number of channels and store alpha-presence */
295 channels = 1;
297 channels = 2;
299 channels = 3;
301 channels = 4;
303 channels = 0; /* should never happen */
304 alpha_present = (channels - 1) % 2;
314 /* row_bytes is the width x number of channels
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/gstreamer/
H A DGStreamerVersioning.h52 GstCaps* getGstAudioCaps(int channels, float sampleRate);
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/generic/
H A DtclXfilecmds.c74 Tcl_Channel channels [2];
80 if (TclXOSpipe (interp, channels) != TCL_OK)
84 channelNames [0] = Tcl_GetChannelName (channels [0]);
85 channelNames [1] = Tcl_GetChannelName (channels [1]);
104 Tcl_Close (NULL, channels [0]);
105 Tcl_Close (NULL, channels [1]);
73 Tcl_Channel channels [2]; local
/macosx-10.9.5/emacs-92/emacs/src/
H A Dsound.c154 u_int16_t channels; member in struct:wav_header
192 /* Number of interleaved channels. */
193 u_int32_t channels; member in struct:au_header
227 int channels; member in struct:sound_device
577 header->channels = le2hs (header->channels);
610 sd->channels = header->channels;
685 header->channels = be2hl (header->channels);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/audio/gstreamer/
H A DAudioFileReaderGStreamer.cpp263 gint channels = 0; local
264 if (!gst_structure_get_int(structure, "channels", &channels) || !channels) {
284 GstClockTime duration = (static_cast<guint64>(GST_BUFFER_SIZE(buffer)) * 8 * GST_SECOND) / (sampleRate * channels * width);
469 unsigned channels = mixToMono ? 1 : 2; local
470 RefPtr<AudioBus> audioBus = AudioBus::create(channels, m_channelSize, true);
/macosx-10.9.5/bind9-45.100/bind9/contrib/zkt/
H A DREADME.logging10 to the default stdout and stderr channels, and the logging itself
36 For both channels, the log level could be set to one of six log levels:
/macosx-10.9.5/bind9-45.100/
H A Dnamed.conf6 // Declares control channels to be used by the rndc utility.
/macosx-10.9.5/tcl-102/tcl_ext/memchan/memchan/htdocs/raw/
H A Dindex.exp20 channel types for in-memory channels and the appropriate commands for
H A Dmem_event.exp10 generation of file events for memory based channels.
42 impact on their transfer performance) for memory channels to the
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/transfer/
H A Ddsource.tcl144 if {![llength [file channels $newvalue]]} {
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/htdocs/raw/
H A Dindex.exp19 The underlying functionlaity in the core is that of ''stacked channels

Completed in 238 milliseconds

1234