Searched defs:destination (Results 1 - 25 of 180) sorted by relevance

12345678

/external/chromium/net/disk_cache/
H A Dcache_util_posix.cc22 LOG(ERROR) << "Unable to create destination cache directory.";
32 FilePath destination = to_path.Append(name.BaseName()); local
33 if (!file_util::Move(name, destination)) {
/external/chromium/third_party/libjingle/source/talk/base/
H A Dsocketaddresspair.h35 // Records a pair (source,destination) of socket addresses. The two addresses
44 const SocketAddress& destination() const { return dest_; } function in class:talk_base::SocketAddressPair
/external/webkit/Source/WebCore/platform/image-decoders/haiku/
H A DImageDecoderHaiku.cpp40 uint8* destination = reinterpret_cast<uint8*>(bitmap->Bits()); local
49 uint8* destinationHandle = destination;
66 destination += bytesPerRow;
/external/webkit/Source/WebCore/webaudio/
H A DBiquadDSPKernel.cpp35 void BiquadDSPKernel::process(const float* source, float* destination, size_t framesToProcess) argument
37 ASSERT(source && destination && biquadProcessor());
72 m_biquad.process(source, destination, framesToProcess);
H A DAudioChannelSplitter.cpp64 AudioBus* destination = output(i)->bus(); local
65 ASSERT(destination);
70 destination->channel(0)->copyFrom(source->channel(i));
72 // Only bother zeroing out the destination if it's connected to anything
73 destination->zero();
H A DBiquadProcessor.cpp91 void BiquadProcessor::process(AudioBus* source, AudioBus* destination, size_t framesToProcess) argument
94 destination->zero();
120 m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->data(), framesToProcess);
/external/nist-sip/java/gov/nist/javax/sip/
H A DLogRecordFactory.java20 * @param destination -- host:port of the destination of the message.
34 String destination, long timeStamp, boolean isSender,
33 createLogRecord(String message, String source, String destination, long timeStamp, boolean isSender, String firstLine, String tid, String callId, long timestampVal) argument
/external/webkit/Source/WebCore/platform/audio/
H A DAudioDSPKernelProcessor.cpp73 void AudioDSPKernelProcessor::process(AudioBus* source, AudioBus* destination, size_t framesToProcess) argument
75 ASSERT(source && destination);
76 if (!source || !destination)
80 destination->zero();
84 bool channelCountMatches = source->numberOfChannels() == destination->numberOfChannels() && source->numberOfChannels() == m_kernels.size();
90 m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->data(), framesToProcess);
H A DAudioResampler.cpp103 // Now that we have the source data, resample each channel into the destination bus.
106 float* destination = destinationBus->channel(i)->data(); local
107 m_kernels[i]->process(destination, framesToProcess);
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/webkit/Source/WebCore/platform/text/
H A DTextCodecASCIIFastPath.h52 static void copy(UChar* destination, const uint8_t* source) argument
54 destination[0] = source[0];
55 destination[1] = source[1];
56 destination[2] = source[2];
57 destination[3] = source[3];
61 static void copy(UChar* destination, const uint8_t* source) argument
63 destination[0] = source[0];
64 destination[1] = source[1];
65 destination[2] = source[2];
66 destination[
79 copyASCIIMachineWord(UChar* destination, const uint8_t* source) argument
[all...]
/external/webkit/Source/WebKit2/Platform/cg/
H A DCGUtilities.cpp33 void paintImage(CGContextRef context, CGImageRef image, CGPoint destination, CGRect source) argument
37 CGContextClipToRect(context, CGRectMake(destination.x, destination.y, source.size.width, source.size.height));
43 CGFloat destX = destination.x - source.origin.x;
44 CGFloat destY = -static_cast<CGFloat>(imageHeight) - destination.y + source.origin.y;
50 void paintBitmapContext(CGContextRef context, CGContextRef bitmapContext, CGPoint destination, CGRect source) argument
53 paintImage(context, image.get(), destination, source);
/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/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/chrome/browser/debugger/
H A Ddevtools_remote_message.h21 // The destination (inspected) object identifier (if any), like a TabID.
58 const std::string destination() const { function in class:DevToolsRemoteMessage
90 const std::string& destination,
H A Ddevtools_remote_message.cc57 const std::string& destination,
63 headers[DevToolsRemoteMessageHeaders::kDestination] = destination;
55 Create( const std::string& tool, const std::string& destination, const std::string& content) argument
/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/webkit/Source/JavaScriptCore/runtime/
H A DUStringConcatenate.h45 void writeTo(UChar* destination) argument
48 destination[i] = m_data[i];
/external/webkit/Source/WebCore/platform/cf/
H A DSharedBufferCF.cpp102 void SharedBuffer::copyDataArrayAndClear(char *destination, unsigned bytesToCopy) const argument
112 memcpy(destination, CFDataGetBytePtr(it->get()), dataLen);
113 destination += dataLen;
/external/webkit/Source/WebKit2/WebProcess/Downloads/
H A DDownload.h92 const String& destination() const { return m_destination; } function in class:WebKit::Download
/external/webkit/Source/WebKit2/WebProcess/Downloads/curl/
H A DDownloadCurl.cpp56 void Download::didDecideDestination(const String& destination, bool allowOverwrite) argument
/external/webkit/Source/WebKit2/WebProcess/Downloads/qt/
H A DDownloadQt.cpp55 void Download::didDecideDestination(const String& destination, bool allowOverwrite) argument
/external/webkit/Source/WebKit2/WebProcess/Downloads/soup/
H A DDownloadSoup.cpp56 void Download::didDecideDestination(const String& destination, bool allowOverwrite) argument
/external/dbus/tools/
H A Ddbus-print-message.c362 const char *destination; local
367 destination = dbus_message_get_destination (message);
374 destination ? destination : "(null destination)");

Completed in 2487 milliseconds

12345678