HomeSort by relevance Sort by last modified time
    Searched defs:process (Results 101 - 125 of 618) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/html/
LinkImport.cpp 66 void LinkImport::process() function in class:WebCore::LinkImport
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AnalyserNode.cpp 52 void AnalyserNode::process(size_t framesToProcess) function in class:WebCore::AnalyserNode
AudioBasicProcessorNode.cpp 70 void AudioBasicProcessorNode::process(size_t framesToProcess) function in class:WebCore::AudioBasicProcessorNode
79 // FIXME: if we take "tail time" into account, then we can avoid calling processor()->process() once the tail dies down.
83 processor()->process(sourceBus, destinationBus, framesToProcess);
90 // Render input stream - suggest to the input to render directly into output bus for in-place processing in process() if possible.
AudioDestinationNode.h 45 virtual void process(size_t) { }; // we're pulled by hardware so this is never called function in class:WebCore::AudioDestinationNode
BiquadDSPKernel.cpp 113 void BiquadDSPKernel::process(const float* source, float* destination, size_t framesToProcess) function in class:WebCore::BiquadDSPKernel
123 m_biquad.process(source, destination, framesToProcess);
BiquadProcessor.cpp 100 void BiquadProcessor::process(const AudioBus* source, AudioBus* destination, size_t framesToProcess) function in class:WebCore::BiquadProcessor
109 // For each channel of our input, process using the corresponding BiquadDSPKernel into the output channel.
111 m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->mutableData(), framesToProcess);
ChannelMergerNode.cpp 65 void ChannelMergerNode::process(size_t framesToProcess) function in class:WebCore::ChannelMergerNode
MediaElementAudioSourceNode.cpp 73 // process() will generate silence for these uninitialized values.
83 // Synchronize with process().
104 void MediaElementAudioSourceNode::process(size_t numberOfFrames) function in class:WebCore::MediaElementAudioSourceNode
121 m_multiChannelResampler->process(provider, outputBus, numberOfFrames);
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioResampler.cpp 73 void AudioResampler::process(AudioSourceProvider* provider, AudioBus* destinationBus, size_t framesToProcess) function in class:WebCore::AudioResampler
103 // FIXME: optimize for the common stereo case where it's faster to process both left/right channels in the same inner loop.
106 m_kernels[i]->process(destination, framesToProcess);
Biquad.cpp 77 void Biquad::process(const float* sourceP, float* destP, size_t framesToProcess) function in class:WebCore::Biquad
FFTConvolver.cpp 50 void FFTConvolver::process(FFTFrame* fftKernel, const float* sourceP, float* destP, size_t framesToProcess) function in class:WebCore::FFTConvolver
MultiChannelResampler.cpp 103 void MultiChannelResampler::process(AudioSourceProvider* provider, AudioBus* destination, size_t framesToProcess) function in class:WebCore::MultiChannelResampler
112 // kernel, this call to process() will only sometimes call provideInput() on the channelProvider.
115 m_kernels[channelIndex]->process(&channelProvider,
ReverbConvolverStage.cpp 100 process(source, framesToProcess);
103 void ReverbConvolverStage::process(const float* source, size_t framesToProcess) function in class:WebCore::ReverbConvolverStage
116 // Handles both the read case (call to process() ) and the write case (memcpy() )
141 // For the first m_preDelayLength frames don't process the convolver, instead simply buffer in the pre-delay.
147 // We process in-place here...
149 m_fftConvolver->process(m_fftKernel.get(), preDelayedSource, temporaryBuffer, framesToProcess);
151 m_directConvolver->process(m_directKernel.get(), preDelayedSource, temporaryBuffer, framesToProcess);
ZeroPole.cpp 39 void ZeroPole::process(const float *source, float *destination, unsigned framesToProcess) function in class:WebCore::ZeroPole
  /external/chromium_org/v8/tools/
run-valgrind.py 48 process = subprocess.Popen(command, stderr=subprocess.PIPE) variable
49 code = process.wait();
50 errors = process.stderr.readlines();
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
MoveParamCombiner.java 35 /** method to process */
41 * @param ssaMethod method to process
43 public static void process(SsaMethod ssaMethod) { method in class:MoveParamCombiner
  /external/icu4c/layout/
LigatureSubstSubtables.cpp 16 le_uint32 LigatureSubstitutionSubtable::process(GlyphIterator *glyphIterator, const LEGlyphFilter *filter) const function in class:LigatureSubstitutionSubtable
MorphTables.cpp 23 void MorphTableHeader::process(LEGlyphStorage &glyphStorage) const function in class:MorphTableHeader
45 subtableHeader->process(glyphStorage);
55 void MorphSubtableHeader::process(LEGlyphStorage &glyphStorage) const function in class:MorphSubtableHeader
91 processor->process(glyphStorage);
MultipleSubstSubtables.cpp 17 le_uint32 MultipleSubstitutionSubtable::process(GlyphIterator *glyphIterator, LEErrorCode& success, const LEGlyphFilter *filter) const function in class:MultipleSubstitutionSubtable
SegmentArrayProcessor.cpp 36 void SegmentArrayProcessor::process(LEGlyphStorage &glyphStorage) function in class:SegmentArrayProcessor
SegmentArrayProcessor2.cpp 36 void SegmentArrayProcessor2::process(LEGlyphStorage &glyphStorage) function in class:SegmentArrayProcessor2
SegmentSingleProcessor.cpp 36 void SegmentSingleProcessor::process(LEGlyphStorage &glyphStorage) function in class:SegmentSingleProcessor
SegmentSingleProcessor2.cpp 36 void SegmentSingleProcessor2::process(LEGlyphStorage &glyphStorage) function in class:SegmentSingleProcessor2
StateTableProcessor.cpp 41 void StateTableProcessor::process(LEGlyphStorage &glyphStorage) function in class:StateTableProcessor
  /external/mockito/src/org/mockito/internal/configuration/
MockAnnotationProcessor.java 17 public Object process(Mock annotation, Field field) { method in class:MockAnnotationProcessor

Completed in 1141 milliseconds

1 2 3 45 6 7 8 91011>>