Searched defs:destination (Results 26 - 50 of 263) sorted by relevance

1234567891011

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/24/1/.cp/ant_tasks/
H A Dhelpbase-ant.jar ... tools.ant.Task { private String manifest private String destination private org.eclipse.help.search.HelpIndexBuilder
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwPrintDocumentAdapter.java66 public void onWrite(PageRange[] pages, ParcelFileDescriptor destination, argument
68 mPdfExporter.exportToPdf(destination, mAttributes, new ValueCallback<Boolean>() {
/external/chromium_org/base/
H A Dtask_runner.cc20 explicit PostTaskAndReplyTaskRunner(TaskRunner* destination);
31 TaskRunner* destination) : destination_(destination) {
30 PostTaskAndReplyTaskRunner( TaskRunner* destination) argument
H A Dtask_runner_util_unittest.cc20 void StoreValue(int* destination, int value) { argument
21 *destination = value;
24 void StoreDoubleValue(double* destination, double value) { argument
25 *destination = value;
/external/chromium_org/content/browser/media/capture/
H A Daudio_mirroring_manager.h27 // that are not correctly routed to the destination.
30 // destination.
101 // (Re-)Start/Stop mirroring to the given |destination|. |destination| must
104 // AudioMirroringManager to query |destination| and only re-route those
106 virtual void StartMirroring(MirroringDestination* destination);
107 virtual void StopMirroring(MirroringDestination* destination);
120 // destination.
121 MirroringDestination* destination; member in struct:content::AudioMirroringManager::StreamRoutingState
131 // Helper to find a destination othe
[all...]
/external/chromium_org/media/base/
H A Daudio_pull_fifo.cc21 void AudioPullFifo::Consume(AudioBus* destination, int frames_to_consume) { argument
22 DCHECK_LE(frames_to_consume, destination->frames());
27 int frames_read = ReadFromFifo(destination, remaining_frames_to_provide, 0);
41 ReadFromFifo(destination, remaining_frames_to_provide, write_pos);
49 int AudioPullFifo::ReadFromFifo(AudioBus* destination, argument
58 float* dest = destination->channel(ch) + write_pos;
H A Dmulti_channel_resampler.cc33 // |destination| provided to ProvideInput() directly.
83 float* destination) {
88 wrapped_resampler_audio_bus_->SetChannelData(0, destination);
96 memcpy(destination, wrapped_resampler_audio_bus_->channel(channel),
81 ProvideInput(int channel, int frames, float* destination) argument
/external/chromium_org/mojo/common/
H A Ddata_pipe_utils.cc74 const base::FilePath& destination) {
75 base::ScopedFILE fp(base::OpenFile(destination, "wb"));
83 const base::FilePath& destination,
89 base::Bind(&BlockingCopyToFile, base::Passed(&source), destination),
73 BlockingCopyToFile(ScopedDataPipeConsumerHandle source, const base::FilePath& destination) argument
82 CopyToFile(ScopedDataPipeConsumerHandle source, const base::FilePath& destination, base::TaskRunner* task_runner, const base::Callback<void(bool)>& callback) 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 DOfflineAudioDestinationNode.cpp131 float* destination = m_renderTarget->getChannelData(channelIndex)->data(); local
132 memcpy(destination + n, source, sizeof(float) * framesAvailableToCopy);
H A DWaveShaperProcessor.cpp75 void WaveShaperProcessor::process(const AudioBus* source, AudioBus* destination, size_t framesToProcess) argument
78 destination->zero();
82 bool channelCountMatches = source->numberOfChannels() == destination->numberOfChannels() && source->numberOfChannels() == m_kernels.size();
92 m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->mutableData(), framesToProcess);
95 destination->zero();
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DAudioChannel.cpp92 float* destination = mutableData(); local
98 memset(destination, 0, sizeof(float) * rangeLength);
100 memcpy(destination, source + startFrame, sizeof(float) * rangeLength);
H A DAudioDSPKernelProcessor.cpp80 void AudioDSPKernelProcessor::process(const AudioBus* source, AudioBus* destination, size_t framesToProcess) argument
82 ASSERT(source && destination);
83 if (!source || !destination)
87 destination->zero();
93 bool channelCountMatches = source->numberOfChannels() == destination->numberOfChannels() && source->numberOfChannels() == m_kernels.size();
99 m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->mutableData(), framesToProcess);
103 destination->zero();
H A DAudioFIFO.cpp46 void AudioFIFO::consume(AudioBus* destination, size_t framesToConsume) argument
48 bool isGood = destination && (framesToConsume <= m_fifoLength) && (framesToConsume <= m_framesInFifo) && (destination->length() >= framesToConsume);
53 // Copy the requested number of samples to the destination.
62 float* destinationData = destination->channel(channelIndex)->mutableData();
67 && (part1Length <= destination->length())
68 && (part1Length + part2Length) <= destination->length());
99 float* destination = m_fifoAudioBus->channel(channelIndex)->mutableData(); local
110 memcpy(destination + m_writeIndex, source, part1Length * sizeof(*destination));
[all...]
H A DAudioResampler.cpp100 // Now that we have the source data, resample each channel into the destination bus.
103 float* destination = destinationBus->channel(i)->mutableData(); local
104 m_kernels[i]->process(destination, framesToProcess);
H A DMultiChannelResampler.cpp103 void MultiChannelResampler::process(AudioSourceProvider* provider, AudioBus* destination, size_t framesToProcess) argument
116 destination->channel(channelIndex)->mutableData(),
H A DReverbAccumulationBuffer.cpp48 void ReverbAccumulationBuffer::readAndClear(float* destination, size_t numberOfFrames) argument
62 memcpy(destination, source + m_readIndex, sizeof(float) * numberOfFrames1);
67 memcpy(destination + numberOfFrames1, source, sizeof(float) * numberOfFrames2);
94 float* destination = m_buffer.data(); local
101 vadd(source, 1, destination + writeIndex, 1, destination + writeIndex, 1, numberOfFrames1);
105 vadd(source + numberOfFrames1, 1, destination, 1, destination, 1, numberOfFrames2);
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringOperators.h40 void writeTo(LChar* destination);
42 void writeTo(UChar* destination);
79 void StringAppend<StringType1, StringType2>::writeTo(LChar* destination) argument
84 adapter1.writeTo(destination);
85 adapter2.writeTo(destination + adapter1.length());
89 void StringAppend<StringType1, StringType2>::writeTo(UChar* destination) argument
93 adapter1.writeTo(destination);
94 adapter2.writeTo(destination + adapter1.length());
117 void writeTo(LChar* destination) { m_buffer.writeTo(destination); } argument
118 writeTo(UChar* destination) argument
[all...]
/external/chromium_org/v8/src/compiler/
H A Dgap-resolver.cc28 // No operand should be the destination for more than one move.
33 SLOW_DCHECK(seen.find(i->destination()) == seen.end());
34 seen.insert(i->destination());
66 // Clear this move's destination to indicate a pending move. The actual
67 // destination is saved on the side.
69 InstructionOperand* destination = move->destination(); local
74 // destination blocks this one so recursively perform all such moves.
76 if (other->Blocks(destination) && !other->IsPending()) {
82 // Since this move's destination i
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dbpqether.h16 unsigned char destination[ETH_ALEN]; member in struct:bpq_ethaddr
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DDefaultMessageLogFactory.java16 String destination, String timeStamp, boolean isSender,
18 return new MessageLog(message, source, destination, timeStamp,
23 String destination, long timeStamp, boolean isSender,
25 return new MessageLog(message, source, destination, timeStamp,
15 createLogRecord(String message, String source, String destination, String timeStamp, boolean isSender, String firstLine, String tid, String callId, long tsHeaderValue) argument
22 createLogRecord(String message, String source, String destination, long timeStamp, boolean isSender, String firstLine, String tid, String callId, long timestampVal) argument
H A DMessageLog.java51 private String destination; field in class:MessageLog
85 String destination,
96 this.destination = destination;
118 String destination,
129 this.destination = destination;
153 + destination
82 MessageLog( String message, String source, String destination, String timeStamp, boolean isSender, String firstLine, String tid, String callId, long timeStampHeaderValue) argument
115 MessageLog( String message, String source, String destination, long timeStamp, boolean isSender, String firstLine, String tid, String callId, long timestampVal) argument
/external/pixman/demos/
H A Dcheckerboard.c14 pixman_image_t *destination; local
27 destination = pixman_image_create_bits (PIXMAN_a8r8g8b8,
64 checkerboard, NULL, destination,
68 show_image (destination);
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/util/
H A DCommonResources.java109 public static String makeHtmlPageWithSimpleLinkTo(String headers, String destination) { argument
111 "<a href=\"" + destination + "\" id=\"link\">" +
116 public static String makeHtmlPageWithSimpleLinkTo(String destination) { argument
117 return makeHtmlPageWithSimpleLinkTo("", destination);
120 public static String makeHtmlPageWithSimplePostFormTo(String destination) { argument
122 "<form action=\"" + destination + "\" method=\"post\">" +
/external/chromium_org/chrome/browser/extensions/api/experience_sampling_private/
H A Dexperience_sampling.cc37 const GURL& destination,
45 element_name, destination, referrer, profile));
56 const GURL& destination,
63 ui_element_.destination = destination.GetAsReferrer().possibly_invalid_spec();
35 Create( const std::string& element_name, const GURL& destination, const GURL& referrer) argument
54 ExperienceSamplingEvent( const std::string& element_name, const GURL& destination, const GURL& referrer, content::BrowserContext* browser_context) argument

Completed in 328 milliseconds

1234567891011