Searched refs:destination (Results 126 - 150 of 539) sorted by relevance

1234567891011>>

/external/chromium_org/cloud_print/service/win/
H A Dservice_utils.cc51 void CopyChromeSwitchesFromCurrentProcess(CommandLine* destination) { argument
61 destination->CopySwitchesFrom(*CommandLine::ForCurrentProcess(),
/external/chromium_org/media/base/
H A Dsinc_resampler.h38 // of data to be rendered into |destination|; zero padded if not enough frames
40 typedef base::Callback<void(int frames, float* destination)> ReadCB;
53 // Resample |frames| of data from |read_cb_| into |destination|.
54 void Resample(int frames, float* destination);
H A Dsinc_resampler_perftest.cc21 static void DoNothing(int frames, float* destination) {} argument
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioBasicInspectorNode.cpp54 void AudioBasicInspectorNode::connect(AudioNode* destination, unsigned outputIndex, unsigned inputIndex, ExceptionState& exceptionState) argument
60 AudioNode::connect(destination, outputIndex, inputIndex, exceptionState);
H A DBiquadDSPKernel.cpp113 void BiquadDSPKernel::process(const float* source, float* destination, size_t framesToProcess) argument
115 ASSERT(source && destination && biquadProcessor());
130 m_biquad.process(source, destination, framesToProcess);
H A DBiquadProcessor.cpp107 void BiquadProcessor::process(const AudioBus* source, AudioBus* destination, size_t framesToProcess) argument
110 destination->zero();
118 m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->mutableData(), framesToProcess);
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DMultiChannelResampler.cpp103 void MultiChannelResampler::process(AudioSourceProvider* provider, AudioBus* destination, size_t framesToProcess) argument
116 destination->channel(channelIndex)->mutableData(),
H A DAudioBus.cpp291 float* destination = channelByType(ChannelLeft)->mutableData(); local
292 vadd(sourceL, 1, sourceR, 1, destination, 1, length());
294 vsmul(destination, 1, &scale, destination, 1, length());
333 float* destination = channelByType(ChannelLeft)->mutableData(); local
335 vsma(sourceL, 1, &scale, destination, 1, length());
336 vsma(sourceR, 1, &scale, destination, 1, length());
359 float* destination = channelByType(ChannelLeft)->mutableData(); local
368 vadd(tempData, 1, destination, 1, destination,
523 float* destination = channel(channelIndex)->mutableData(); local
580 float* destination = destinationBus->channel(i)->mutableData(); local
607 float* destination = destinationBus->channel(0)->mutableData(); local
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dopen_type_data_test.cc56 WritableFontDataPtr destination = new WritableFontData(destination_array); local
58 int32_t length = source->CopyTo(destination);
/external/chromium_org/third_party/webrtc/common_audio/resampler/
H A Dsinc_resampler.h26 // of data to be rendered into |destination|; zero padded if not enough frames
31 virtual void Run(int frames, float* destination) = 0;
65 // Resample |frames| of data from |read_cb_| into |destination|.
66 void Resample(int frames, float* destination);
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Daudio_multi_vector.cc126 int16_t* destination) const {
127 return ReadInterleavedFromIndex(0, length, destination);
132 int16_t* destination) const {
133 if (!destination) {
136 size_t index = 0; // Number of elements written to |destination| so far.
144 memcpy(destination, &(*this)[0][start_index], length * sizeof(int16_t));
149 destination[index] = (*this)[channel][i + start_index];
157 int16_t* destination) const {
159 return ReadInterleavedFromIndex(Size() - length, length, destination);
/external/chromium_org/v8/tools/testrunner/local/
H A Dutils.py117 def URLRetrieve(source, destination):
120 with open(destination, 'w') as f:
/external/sfntly/cpp/src/test/
H A Dopen_type_data_test.cc56 WritableFontDataPtr destination = new WritableFontData(destination_array); local
58 int32_t length = source->CopyTo(destination);
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DCircularBuffer.cs61 public int Get(byte[] destination, int offset, int count) argument
65 destination[offset + i] = _buffer[(_head+i) % _capacity];
/external/oprofile/libutil++/
H A Dfile_manip.cpp33 bool copy_file(string const & source, string const & destination) argument
51 int fd = open(destination.c_str(), O_RDWR|O_CREAT, mode);
59 retval = chown(destination.c_str(), buf.st_uid, buf.st_gid);
63 ofstream out(destination.c_str(), ios::trunc);
72 if (utime(destination.c_str(), &utim))
/external/chromium_org/tools/telemetry/third_party/davclient/
H A Ddavclient.py143 def copy(self, source, destination, body=None, depth='infinity', overwrite=True, headers=None):
147 headers = {'Destination':destination}
149 headers['Destination'] = self._url.geturl() + destination
157 def copy_collection(self, source, destination, depth='infinity', overwrite=True, headers=None):
166 self.copy(source, destination, body=unicode(body, 'utf-8'), depth=depth, overwrite=overwrite, headers=headers)
169 def move(self, source, destination, body=None, depth='infinity', overwrite=True, headers=None):
173 headers = {'Destination':destination}
175 headers['Destination'] = self._url.geturl() + destination
183 def move_collection(self, source, destination, depth='infinity', overwrite=True, headers=None):
192 self.move(source, destination, unicod
[all...]
/external/chromium_org/chrome/browser/resources/print_preview/search/
H A Ddestination_search.js9 * Component used for searching for a print destination.
11 * destination to print to. When a destination is selected, it is written to
12 * the destination store.
69 * Search box used to search through the destination lists.
126 * Padding at the bottom of a destination list in pixels.
161 // Collapse all destination lists
290 * @return {number} Height available for destination lists, in pixels.
304 * Filters all destination lists with the given query.
305 * @param {RegExp} query Query to filter destination list
[all...]
/external/protobuf/src/google/protobuf/
H A Dextension_set_unittest.cc190 unittest::TestAllTypes destination; local
198 EXPECT_TRUE(destination.ParseFromString(data));
199 TestUtil::ExpectAllFieldsSet(destination);
211 unittest::TestAllTypes destination; local
222 EXPECT_TRUE(destination.ParseFromString(data));
223 TestUtil::ExpectAllFieldsSet(destination);
234 unittest::TestPackedTypes destination; local
242 EXPECT_TRUE(destination.ParseFromString(data));
243 TestUtil::ExpectPackedFieldsSet(destination);
255 unittest::TestPackedTypes destination; local
273 unittest::TestAllExtensions destination; local
285 unittest::TestPackedExtensions destination; local
[all...]
/external/chromium_org/chrome/utility/media_galleries/
H A Dipc_data_source.cc64 : destination(NULL) {
85 request.destination = data;
101 std::copy(bytes.begin(), bytes.end(), it->second.destination);
/external/chromium_org/printing/android/java/src/org/chromium/printing/
H A DPrintDocumentAdapterWrapper.java37 final ParcelFileDescriptor destination,
131 final ParcelFileDescriptor destination,
134 mPdfGenerator.onWrite(ranges, destination, cancellationSignal,
35 onWrite( final PageRange[] ranges, final ParcelFileDescriptor destination, final CancellationSignal cancellationSignal, final PrintDocumentAdapterWrapper.WriteResultCallbackWrapper callback) argument
129 onWrite( final PageRange[] ranges, final ParcelFileDescriptor destination, final CancellationSignal cancellationSignal, final WriteResultCallback callback) argument
/external/chromium_org/tools/cygprofile/
H A Dcygprofile_unittest.cc20 void FlushEntries(std::vector<LogEntry>* destination, argument
22 CHECK_EQ(0U, destination->size());
23 // Move the provided |entries| vector to the provided |destination| so that
25 destination->swap(*entries);
/external/chromium_org/chrome/browser/ui/android/infobars/
H A Dtranslate_infobar.cc105 void TranslateInfoBar::TransferOwnership(TranslateInfoBar* destination, argument
110 reinterpret_cast<intptr_t>(destination), new_type)) {
111 ReassignJavaInfoBar(destination);
112 destination->SetJavaDelegate(java_translate_delegate_.Release());
H A Dtranslate_infobar.h40 void TransferOwnership(TranslateInfoBar* destination,
/external/chromium_org/mojo/system/
H A Dplatform_handle_dispatcher.h49 void* destination,
/external/chromium_org/sandbox/mac/
H A Dmessage_server.h57 // Forwards the original |request| to the |destination| for handling.
58 virtual void ForwardMessage(IPCMessage request, mach_port_t destination) = 0;

Completed in 3778 milliseconds

1234567891011>>