HomeSort by relevance Sort by last modified time
    Searched refs:destination (Results 51 - 75 of 428) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/ex/variablespeed/jni/
ring_buffer.cc 101 void RingBuffer::Copy(int reader, float* destination, int num_frames) const {
104 memcpy(destination, samples_ + pos * num_channels_,
105 num_channels_ * num_frames * sizeof(destination[0]));
108 memcpy(destination, samples_ + pos * num_channels_,
109 num_channels_ * wrapped * sizeof(destination[0]));
111 memcpy(destination + wrapped * num_channels_, samples_,
112 num_channels_ * remaining * sizeof(destination[0]));
ring_buffer.h 59 // @param destination float buffer to which the samples will be written.
60 void Copy(int reader, float* destination, int num_frames) const;
  /external/chromium/chrome/browser/debugger/
debugger_remote_service.cc 58 const std::string destination = message.destination(); local
81 if (destination.empty()) {
85 SendResponse(response, message.tool(), message.destination());
89 base::StringToInt(destination, &tab_uid);
94 AttachToTab(destination, &response);
97 DetachFromTab(destination, &response);
109 SendResponse(response, message.tool(), message.destination());
118 // |tool| and |destination| as the respective header values.
121 const std::string& destination) {
    [all...]
extension_ports_remote_service.cc 51 // Put the target message port ID in the devtools destination field.
63 // The message port ID is in the devtools destination field.
71 // similar: with the message port ID in the destination field, but no
142 const std::string destinationString = message.destination();
170 SendResponse(response, message.tool(), message.destination());
174 int destination = -1; local
176 base::StringToInt(destinationString, &destination);
179 if (destination != -1) // destination should be empty for this command.
184 if (destination == -1) // Destination required for this command
    [all...]
devtools_remote_message.cc 11 const char DevToolsRemoteMessageHeaders::kDestination[] = "Destination";
57 const std::string& destination,
63 headers[DevToolsRemoteMessageHeaders::kDestination] = destination;
devtools_remote_message.h 21 // 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,
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
StorageManager.java 136 void verifySpaceBeforeWritingToFile(int destination, String path, long length)
143 verifySpace(destination, path, length);
146 void verifySpace(int destination, String path, long length) throws StopRequestException {
150 Log.i(Constants.TAG, "in verifySpace, destination: " + destination +
156 switch (destination) {
179 throw new IllegalStateException("invalid combination of destination: " + destination +
182 findSpace(dir, length, destination);
190 private synchronized void findSpace(File root, long targetBytes, int destination)
    [all...]
Helpers.java 78 int destination,
81 checkCanHandleDownload(context, mimeType, destination, isPublicApi);
84 if (destination == Downloads.Impl.DESTINATION_FILE_URI) {
87 base = storageManager.locateDestinationDirectory(mimeType, destination,
90 destination);
92 storageManager.verifySpace(destination, path, contentLength);
93 path = getFullPath(path, mimeType, destination, base);
100 static String getFullPath(String filename, String mimeType, int destination, File base)
105 if (destination == Downloads.Impl.DESTINATION_FILE_URI) {
106 // Destination is explicitly set - do not change the extensio
    [all...]
  /external/webkit/Tools/DumpRenderTree/win/
HistoryDelegate.cpp 161 wstring destination; local
163 destination = urlSuitableForTestResult(wstringFromBSTR(destinationURL));
165 printf("WebView performed a client redirect from \"%S\" to \"%S\".\n", source.c_str(), destination.c_str());
178 wstring destination; local
180 destination = urlSuitableForTestResult(wstringFromBSTR(destinationURL));
182 printf("WebView performed a server redirect from \"%S\" to \"%S\".\n", source.c_str(), destination.c_str());
  /external/webkit/Source/WebCore/webaudio/
BiquadProcessor.cpp 91 void BiquadProcessor::process(AudioBus* source, AudioBus* destination, size_t framesToProcess)
94 destination->zero();
120 m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->data(), framesToProcess);
RealtimeAnalyser.cpp 188 float* destination = magnitudeBuffer().data(); local
192 destination[i] = float(k * destination[i] + (1.0 - k) * scalarMagnitude);
213 float* destination = destinationArray->data(); local
218 destination[i] = float(dbMag);
239 unsigned char* destination = destinationArray->data(); local
254 destination[i] = static_cast<unsigned char>(scaledValue);
275 unsigned char* destination = destinationArray->data(); local
292 destination[i] = static_cast<unsigned char>(scaledValue);
AudioContext.idl 35 // All rendered audio ultimately connects to destination, which represents the audio hardware.
36 readonly attribute AudioDestinationNode destination;
  /external/webkit/Source/JavaScriptCore/assembler/
MacroAssemblerSH4.cpp 70 void MacroAssemblerSH4::repatchCall(CodeLocationCall call, CodeLocationLabel destination)
72 SH4Assembler::relinkCall(call.dataLocation(), destination.executableAddress());
75 void MacroAssemblerSH4::repatchCall(CodeLocationCall call, FunctionPtr destination)
77 SH4Assembler::relinkCall(call.dataLocation(), destination.executableAddress());
  /external/webkit/Source/WebCore/platform/
PlatformScreen.h 58 FloatRect toUserSpace(const NSRect&, NSWindow *destination);
  /external/webkit/Source/WebCore/platform/audio/
AudioDSPKernelProcessor.h 62 virtual void process(AudioBus* source, AudioBus* destination, size_t framesToProcess);
AudioChannel.cpp 76 float* destination = data();
77 memcpy(destination, source + startFrame, sizeof(float) * rangeLength);
  /external/webkit/Source/WebKit2/UIProcess/Downloads/
DownloadProxy.cpp 129 void DownloadProxy::decideDestinationWithSuggestedFilename(const String& filename, String& destination, bool& allowOverwrite, SandboxExtension::Handle& sandboxExtensionHandle)
134 destination = m_webContext->downloadClient().decideDestinationWithSuggestedFilename(m_webContext, this, filename, allowOverwrite);
136 if (!destination.isNull())
137 SandboxExtension::createHandle(destination, SandboxExtension::WriteOnly, sandboxExtensionHandle);
  /external/webkit/Source/WebKit2/WebProcess/Downloads/curl/
DownloadCurl.cpp 56 void Download::didDecideDestination(const String& destination, bool allowOverwrite)
  /external/webkit/Source/WebKit2/WebProcess/Downloads/qt/
DownloadQt.cpp 55 void Download::didDecideDestination(const String& destination, bool allowOverwrite)
  /external/webkit/Source/WebKit2/WebProcess/Downloads/soup/
DownloadSoup.cpp 56 void Download::didDecideDestination(const String& destination, bool allowOverwrite)
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSSerializer.java 381 * @param destination The destination for the serialized DOM.
394 LSOutput destination)
  /external/chromium/net/disk_cache/
cache_util_posix.cc 22 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/skia/src/animator/
SkMatrixParts.h 99 SkDrawRect* destination; member in class:SkRectToRect
114 SkPolygon* destination; member in class:SkPolyToPoly
  /external/webkit/Source/WebCore/platform/graphics/filters/
FilterEffect.cpp 129 inline void FilterEffect::copyImageBytes(ByteArray* source, ByteArray* destination, const IntRect& rect)
131 // Initialize the destination to transparent black, if not entirely covered by the source.
133 memset(destination->data(), 0, destination->length());
162 unsigned char *destinationPixel = destination->data() + ((yDest * rect.width()) + xDest) * 4;
173 void FilterEffect::copyUnmultipliedImage(ByteArray* destination, const IntRect& rect)
204 copyImageBytes(m_unmultipliedImageResult.get(), destination, rect);
207 void FilterEffect::copyPremultipliedImage(ByteArray* destination, const IntRect& rect)
232 copyImageBytes(m_premultipliedImageResult.get(), destination, rect);
  /libcore/
CaCerts.mk 29 # $(3): destination directory
30 define include-prebuilt-with-destination-directory
44 $(foreach cacert, $(cacerts), $(eval $(call include-prebuilt-with-destination-directory,target-cacert-$(notdir $(cacert)),$(cacert),$(cacerts_target_directory))))
54 $(foreach cacert, $(cacerts), $(eval $(call include-prebuilt-with-destination-directory,host-cacert-$(notdir $(cacert)),$(cacert),$(cacerts_host_directory))))

Completed in 450 milliseconds

1 23 4 5 6 7 8 91011>>