Searched defs:destination (Results 51 - 75 of 180) sorted by relevance

12345678

/external/webkit/Source/JavaScriptCore/wtf/text/
H A DStringConcatenate.h46 void writeTo(UChar* destination) { *destination = m_buffer; } argument
61 void writeTo(UChar* destination) { *destination = m_buffer; } argument
78 void writeTo(UChar* destination) argument
82 destination[i] = c;
109 void writeTo(UChar* destination) argument
111 memcpy(destination, m_buffer, static_cast<size_t>(m_length) * sizeof(UChar));
130 void writeTo(UChar* destination) argument
134 destination[
153 writeTo(UChar* destination) argument
175 writeTo(UChar* destination) argument
[all...]
H A DStringImpl.h246 static void copyChars(UChar* destination, const UChar* source, unsigned numCharacters) argument
250 destination[i] = source[i];
252 memcpy(destination, source, numCharacters * sizeof(UChar));
/external/webkit/Source/WebCore/editing/
H A DSpellChecker.cpp182 String destination = range->text(); local
184 if (destination == source)
/external/webkit/Source/WebCore/platform/
H A DSharedBuffer.cpp202 char* destination = m_buffer.data() + bufferSize; local
206 memcpy(destination, m_segments[i], bytesToCopy);
207 destination += bytesToCopy;
213 copyDataArrayAndClear(destination, bytesLeft);
/external/webkit/Source/WebCore/platform/audio/
H A DReverbConvolver.cpp186 float* destination = destinationChannel->data(); local
187 bool isDataSafe = source && destination;
200 m_accumulationBuffer.readAndClear(destination, framesToProcess);
H A DAudioBus.cpp401 // Calculate destination length based on the sample-rates.
406 // Create destination bus with same number of channels.
413 float* destination = destinationBus->channel(i)->data(); local
416 resampler.process(source, destination, sourceLength);
436 float* destination = destinationBus->channel(0)->data(); local
440 destination[i] = 0.5 * (sourceL[i] + sourceR[i]);
H A DSincResampler.cpp141 void SincResampler::process(float* source, float* destination, unsigned numberOfSourceFrames) argument
316 *destination++ = result;
/external/webkit/Source/WebCore/platform/image-encoders/skia/
H A DJPEGImageEncoder.cpp107 JPEGOutputBuffer destination; local
108 destination.output = output;
124 cinfo.dest = &destination;
/external/webkit/Source/WebCore/platform/text/
H A DTextCodecUTF8.cpp140 static inline UChar* appendCharacter(UChar* destination, int character) argument
145 *destination++ = character;
147 *destination++ = U16_LEAD(character);
148 *destination++ = U16_TRAIL(character);
150 return destination;
159 void TextCodecUTF8::handleError(UChar*& destination, bool stopOnError, bool& sawError) argument
165 *destination++ = replacementCharacter;
169 void TextCodecUTF8::handlePartialSequence(UChar*& destination, const uint8_t*& source, const uint8_t* end, bool flush, bool stopOnError, bool& sawError) argument
174 *destination++ = m_partialSequence[0];
180 handleError(destination, stopOnErro
226 UChar* destination = buffer.characters(); local
[all...]
/external/webkit/Source/WebCore/webaudio/
H A DAudioNode.cpp111 bool AudioNode::connect(AudioNode* destination, unsigned outputIndex, unsigned inputIndex) argument
119 if (destination && inputIndex >= destination->numberOfInputs())
123 if (!destination) {
129 AudioNodeInput* input = destination->input(inputIndex);
/external/webkit/Source/WebKit2/UIProcess/Downloads/
H A DDownloadProxy.cpp129 void DownloadProxy::decideDestinationWithSuggestedFilename(const String& filename, String& destination, bool& allowOverwrite, SandboxExtension::Handle& sandboxExtensionHandle) argument
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/
H A DDownload.cpp102 String destination; local
104 if (!sendSync(Messages::DownloadProxy::DecideDestinationWithSuggestedFilename(filename), Messages::DownloadProxy::DecideDestinationWithSuggestedFilename::Reply(destination, allowOverwrite, sandboxExtensionHandle)))
111 return destination;
116 String destination = retrieveDestinationWithSuggestedFilename(filename, allowOverwrite); local
118 didDecideDestination(destination, allowOverwrite);
120 return destination;
/external/webkit/Tools/DumpRenderTree/win/
H A DHistoryDelegate.cpp161 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/chromium/chrome/browser/debugger/
H A Ddebugger_remote_service.cc58 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) {
119 SendResponse(const Value& response, const std::string& tool, const std::string& destination) argument
195 AttachToTab(const std::string& destination, DictionaryValue* response) argument
239 DetachFromTab(const std::string& destination, DictionaryValue* response) argument
[all...]
H A Dextension_ports_remote_service.cc51 // 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
212 SendResponse( const Value& response, const std::string& tool, const std::string& destination) argument
[all...]
/external/chromium/net/socket/
H A Dtransport_client_socket_pool.h34 const HostResolver::RequestInfo& destination() const { return destination_; } function in class:net::TransportSocketParams
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DData.java170 * Set the source node to be a symbolic link to the destination.
175 * Set the source node to be a symbolic link to the destination.
177 void setSymlink(String sourcePath, Data destination); argument
194 * @param toPath destination path for the deep copy.
H A DDefaultDataContext.java344 public void setSymlink(String sourcePath, Data destination) { argument
H A DDelegatedData.java216 public void setSymlink(String sourcePath, Data destination) { argument
217 destination = unwrap(destination);
218 getDelegate().setSymlink(sourcePath, destination);
/external/kernel-headers/original/linux/
H A Dkexec.h67 unsigned long destination; member in struct:kimage
/external/protobuf/src/google/protobuf/
H A Drepeated_field_unittest.cc215 RepeatedField<int> source, destination; local
220 destination.Add(1);
221 destination.Add(2);
222 destination.Add(3);
224 destination.MergeFrom(source);
226 ASSERT_EQ(5, destination.size());
228 EXPECT_EQ(1, destination.Get(0));
229 EXPECT_EQ(2, destination.Get(1));
230 EXPECT_EQ(3, destination.Get(2));
231 EXPECT_EQ(4, destination
519 RepeatedPtrField<string> source, destination; local
[all...]
H A Dunknown_field_set_unittest.cc281 unittest::TestEmptyMessage source, destination; local
283 destination.mutable_unknown_fields()->AddVarint(1, 1);
284 destination.mutable_unknown_fields()->AddVarint(3, 2);
288 destination.MergeFrom(source);
297 destination.DebugString());
314 unittest::TestAllTypes destination; local
315 ASSERT_TRUE(destination.ParseFromString(all_fields_data_ + data));
317 TestUtil::ExpectAllFieldsSet(destination);
318 ASSERT_EQ(1, destination.unknown_fields().field_count());
320 destination
[all...]
/external/v8/src/ia32/
H A Dlithium-gap-resolver-ia32.cc77 // the same as the destination, the destination is ignored and
99 // Clear this move's destination to indicate a pending move. The actual
100 // destination is saved on the side.
102 LOperand* destination = moves_[index].destination(); local
107 // as this one's destination blocks this one so recursively perform all
111 if (other_move.Blocks(destination) && !other_move.IsPending()) {
117 // not be swapped). Since this move's destination is B and there is
126 // pending, so restore its destination
157 LOperand* destination = move.destination(); local
171 LOperand* destination = moves_[index].destination(); local
219 LOperand* destination = moves_[i].destination(); local
278 LOperand* destination = moves_[index].destination(); local
360 LOperand* destination = moves_[index].destination(); local
[all...]
/external/webkit/Source/JavaScriptCore/assembler/
H A DMacroAssemblerX86.h181 static void repatchCall(CodeLocationCall call, CodeLocationLabel destination) argument
183 X86Assembler::relinkCall(call.dataLocation(), destination.executableAddress());
186 static void repatchCall(CodeLocationCall call, FunctionPtr destination) argument
188 X86Assembler::relinkCall(call.dataLocation(), destination.executableAddress());
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DComplexTextControllerLinux.cpp326 void ComplexTextController::normalizeSpacesAndMirrorChars(const UChar* source, bool rtl, UChar* destination, int length) argument
341 U16_APPEND(destination, position, length, character, error);

Completed in 1687 milliseconds

12345678