Searched defs:process (Results 151 - 175 of 507) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DConvolverNode.cpp77 void ConvolverNode::process(size_t framesToProcess) function in class:blink::ConvolverNode
92 m_reverb->process(input(0)->bus(), outputBus, framesToProcess);
154 // Synchronize with process().
H A DDynamicsCompressorNode.cpp70 void DynamicsCompressorNode::process(size_t framesToProcess) function in class:blink::DynamicsCompressorNode
87 m_dynamicsCompressor->process(input(0)->bus(), outputBus, framesToProcess);
H A DScriptProcessorNode.cpp100 // Regardless of the allowed buffer sizes, we still need to process at the granularity of the AudioNode.
156 void ScriptProcessorNode::process(size_t framesToProcess) function in class:blink::ScriptProcessorNode
219 // Avoid building up requests on the main thread to fire process events when they're not being handled.
254 // This synchronizes with process().
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DDownSampler.cpp85 void DownSampler::process(const float* sourceP, float* destP, size_t sourceFramesToProcess) function in class:blink::DownSampler
121 // Actually process oddSamplesP with m_reducedKernel for efficiency.
123 m_convolver.process(&m_reducedKernel, oddSamplesP, destP, destFramesToProcess);
H A DReverbConvolverStage.cpp100 process(source, framesToProcess);
103 void ReverbConvolverStage::process(const float* source, size_t framesToProcess) function in class:blink::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);
H A DUpSampler.cpp77 void UpSampler::process(const float* sourceP, float* destP, size_t sourceFramesToProcess) function in class:blink::UpSampler
111 m_convolver.process(&m_kernel, sourceP, oddSamplesP, sourceFramesToProcess);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
H A Dfilereader_unittest.py37 This processor simply records the parameters passed to its process()
44 """The parameters passed for all calls to the process() method."""
49 def process(self, lines, file_path, test_kwarg=None): member in class:TextFileReaderTest.MockProcessor
72 """Return the parameters passed to MockProcessor.process()."""
/external/chromium_org/third_party/pexpect/
H A DFSM.py11 the process() method uses these tables to decide what action to call and what
34 The processing sequence is as follows. The process() method is given an
35 input_symbol to process. The FSM will search the table of transitions that
40 If the pair (input_symbol, current_state) is found then process() will call the
48 If the current_state is found then the process() method will call the
57 defined then the process() method will call the associated action function and
137 The action may be set to None in which case the process() method will
155 The action may be set to None in which case the process() method will
171 The process() method checks the "any" state associations after it first
174 The action may be set to None in which case the process() metho
228 def process (self, input_symbol): member in class:FSM
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
H A Daddr2line-pdb.c53 HANDLE process; local
85 process = GetCurrentProcess();
87 if (!SymInitialize(process, NULL, FALSE)) {
94 if (SymGetSearchPath(process, search, SEARCH_CAP)) {
97 SymCleanup(process);
107 if (!SymSetSearchPath(process, search)) {
114 module_base = SymLoadModuleEx(process, NULL, filename, NULL, 0, 0, NULL, 0);
120 SymCleanup(process);
140 if (SymFromAddr(process, (DWORD64)addr, NULL, pSymbol)) {
147 if (SymGetLineFromAddr64(process, (DWORD6
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
H A Daddr2line-pdb.c59 HANDLE process; local
92 process = GetCurrentProcess();
94 if (!SymInitialize(process, NULL, FALSE)) {
101 if (SymGetSearchPath(process, search, SEARCH_CAP)) {
104 SymCleanup(process);
114 if (!SymSetSearchPath(process, search)) {
121 module_base = SymLoadModuleEx(process, NULL, filename, NULL, 0, 0, NULL, 0);
127 SymCleanup(process);
147 if (SymFromAddr(process, (DWORD64)addr, NULL, pSymbol)) {
154 if (SymGetLineFromAddr64(process, (DWORD6
[all...]
/external/chromium_org/tools/json_schema_compiler/
H A Didl_schema.py100 def process(self, callbacks): member in class:Callspec
106 {'name': self.node.GetName()}).process(callbacks)
113 parameter = Param(node).process(callbacks)
128 def process(self, callbacks): member in class:Param
131 {'name': self.node.GetName()}).process(callbacks)
142 def process(self, callbacks): member in class:Dictionary
146 k, v = Member(node).process(callbacks)
170 def process(self, callbacks): member in class:Member
199 .process(callbacks))
208 self.node, properties).process(callback
230 def process(self, callbacks): member in class:Typeref
306 def process(self, callbacks): member in class:Enum
360 def process(self): member in class:Namespace
408 def process(self): member in class:IDLSchema
[all...]
/external/chromium_org/ui/base/clipboard/
H A Dclipboard.cc200 base::ProcessHandle process) {
213 SharedMemory* bitmap = new SharedMemory(bitmap_handle, true, process);
198 ReplaceSharedMemHandle(ObjectMap* objects, base::SharedMemoryHandle bitmap_handle, base::ProcessHandle process) argument
/external/clang/test/SemaTemplate/
H A Ddeduction-crash.cpp42 int process(Event) function in struct:state_machine::region_processing_helper
51 helper->process(0)
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DDeadCodeRemover.java57 * @param ssaMethod method to process
59 public static void process(SsaMethod ssaMethod) { method in class:DeadCodeRemover
67 * @param ssaMethod method to process
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/
H A DIdenticalBlockCombiner.java43 * Constructs instance. Call {@code process()} to run.
45 * @param rm {@code non-null;} instance to process
60 public RopMethod process() { method in class:IdenticalBlockCombiner
/external/emma/core/java12/com/vladium/emma/report/lcov/
H A DReportGenerator.java61 public void process(final IMetaData mdata, method in class:ReportGenerator
89 m_log.trace1("process", "[" + getType() + "] report generated in "
/external/guava/guava/src/com/google/common/hash/
H A DMurmur3_128HashFunction.java59 @Override protected void process(ByteBuffer bb) { method in class:Murmur3_128HashFunction.Murmur3_128Hasher
/external/icu/icu4c/source/layout/
H A DMarkToBasePosnSubtables.cpp29 le_int32 MarkToBasePositioningSubtable::process(const LETableReference &base, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode &success) const function in class:MarkToBasePositioningSubtable
H A DMarkToMarkPosnSubtables.cpp29 le_int32 MarkToMarkPositioningSubtable::process(const LETableReference &base, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode &success) const function in class:MarkToMarkPositioningSubtable
H A DMorphTables2.cpp20 void MorphTableHeader2::process(const LEReferenceTo<MorphTableHeader2> &base, LEGlyphStorage &glyphStorage, function in class:MorphTableHeader2
172 subtableHeader->process(subtableHeader, glyphStorage, success);
178 void MorphSubtableHeader2::process(const LEReferenceTo<MorphSubtableHeader2> &base, LEGlyphStorage &glyphStorage, LEErrorCode &success) const function in class:MorphSubtableHeader2
214 processor->process(glyphStorage, success);
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DKeepProcessor.java50 private void closureHelper(Set<String> closure, Collection<String> process) { argument
51 if (process == null)
53 for (String name : process) {
62 public boolean process(EntryStruct struct) throws IOException { method in class:KeepProcessor
H A DMain.java86 public void process(File rulesFile, File inJar, File outJar) throws IOException { method in class:Main
/external/lldb/source/Plugins/Process/Utility/
H A DThreadMemory.cpp21 ThreadMemory::ThreadMemory (Process &process, argument
24 Thread (process, tid),
33 ThreadMemory::ThreadMemory (Process &process, argument
38 Thread (process, tid),
/external/lldb/source/Plugins/Process/elf-core/
H A DThreadElfCore.cpp28 ThreadElfCore::ThreadElfCore (Process &process, tid_t tid, argument
30 Thread(process, tid),
83 ProcessElfCore *process = static_cast<ProcessElfCore *>(GetProcess().get());
84 ArchSpec arch = process->GetArchitecture();
/external/lldb/test/pexpect-2.4/
H A DFSM.py11 the process() method uses these tables to decide what action to call and what
34 The processing sequence is as follows. The process() method is given an
35 input_symbol to process. The FSM will search the table of transitions that
40 If the pair (input_symbol, current_state) is found then process() will call the
48 If the current_state is found then the process() method will call the
57 defined then the process() method will call the associated action function and
119 The action may be set to None in which case the process() method will
137 The action may be set to None in which case the process() method will
153 The process() method checks the "any" state associations after it first
156 The action may be set to None in which case the process() metho
210 def process (self, input_symbol): member in class:FSM
[all...]

Completed in 7430 milliseconds

1234567891011>>