Searched defs:destination (Results 76 - 100 of 263) sorted by relevance

1234567891011

/external/chromium_org/net/cert/
H A Dnss_cert_database_chromeos_unittest.cc35 void SwapCertLists(CertificateList* destination, argument
37 ASSERT_TRUE(destination);
40 destination->swap(*source);
H A Dnss_cert_database_unittest.cc48 void SwapCertList(CertificateList* destination, argument
50 ASSERT_TRUE(destination);
51 destination->swap(*source);
/external/chromium_org/net/socket/
H A Dsocks_client_socket_pool.h36 const HostResolver::RequestInfo& destination() const { return destination_; } function in class:net::SOCKSSocketParams
46 // This is the HTTP 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/sandbox/mac/
H A Dmach_message_server.cc122 mach_port_t destination) {
125 request->msgh_remote_port = destination;
121 ForwardMessage(IPCMessage message, mach_port_t destination) argument
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DWaveShaperDSPKernel.cpp58 void WaveShaperDSPKernel::process(const float* source, float* destination, size_t framesToProcess) argument
62 processCurve(source, destination, framesToProcess);
65 processCurve2x(source, destination, framesToProcess);
68 processCurve4x(source, destination, framesToProcess);
76 void WaveShaperDSPKernel::processCurve(const float* source, float* destination, size_t framesToProcess) argument
78 ASSERT(source && destination && waveShaperProcessor());
83 memcpy(destination, source, sizeof(float) * framesToProcess);
93 memcpy(destination, source, sizeof(float) * framesToProcess);
125 destination[i] = output;
129 void WaveShaperDSPKernel::processCurve2x(const float* source, float* destination, size_ argument
146 processCurve4x(const float* source, float* destination, size_t framesToProcess) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DAudioDelayDSPKernel.cpp90 void AudioDelayDSPKernel::process(const float* source, float* destination, size_t framesToProcess) argument
99 ASSERT(source && destination);
100 if (!source || !destination)
156 *destination++ = static_cast<float>(output);
H A DReverbConvolver.cpp161 float* destination = destinationChannel->mutableData(); local
162 bool isDataSafe = source && destination;
175 m_accumulationBuffer.readAndClear(destination, framesToProcess);
/external/chromium_org/third_party/WebKit/Source/platform/image-encoders/skia/
H A DJPEGImageEncoder.cpp122 JPEGOutputBuffer destination; local
123 destination.output = output;
139 cinfo.dest = &destination;
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DASCIIFastPath.h105 inline void copyLCharsFromUCharSource(LChar* destination, const UChar* source, size_t length) argument
114 destination[i] = static_cast<LChar>(source[i]);
129 _mm_storeu_si128(reinterpret_cast<__m128i*>(&destination[i]), packedChars);
135 destination[i] = static_cast<LChar>(source[i]);
138 const LChar* const end = destination + length;
144 while (!isAlignedTo<memoryAccessMask>(destination))
145 *destination++ = static_cast<LChar>(*source++);
148 const uintptr_t lengthLeft = end - destination;
153 : [SOURCE]"+r" (source), [DESTINATION]"+r" (destination)
156 } while (destination !
[all...]
H A DTextCodecLatin1.cpp131 LChar* destination = characters; local
143 copyASCIIMachineWord(destination, source);
145 destination += sizeof(MachineWord);
151 *destination = *source;
157 *destination = table[*source];
161 ++destination;
174 LChar* endPtr8 = destination;
H A DTextCodecUTF8.cpp145 static inline UChar* appendCharacter(UChar* destination, int character) argument
150 *destination++ = character;
152 *destination++ = U16_LEAD(character);
153 *destination++ = U16_TRAIL(character);
155 return destination;
164 void TextCodecUTF8::handleError(UChar*& destination, bool stopOnError, bool& sawError) argument
170 *destination++ = replacementCharacter;
175 bool TextCodecUTF8::handlePartialSequence<LChar>(LChar*& destination, const uint8_t*& source, const uint8_t* end, bool flush, bool, bool&) argument
180 *destination++ = m_partialSequence[0];
211 *destination
218 handlePartialSequence(UChar*& destination, const uint8_t*& source, const uint8_t* end, bool flush, bool stopOnError, bool& sawError) argument
278 LChar* destination = buffer.characters(); local
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dextension_set_unittest.cc267 unittest::TestAllTypes destination; local
275 EXPECT_TRUE(destination.ParseFromString(data));
276 TestUtil::ExpectAllFieldsSet(destination);
288 unittest::TestAllTypes destination; local
299 EXPECT_TRUE(destination.ParseFromString(data));
300 TestUtil::ExpectAllFieldsSet(destination);
311 unittest::TestPackedTypes destination; local
319 EXPECT_TRUE(destination.ParseFromString(data));
320 TestUtil::ExpectPackedFieldsSet(destination);
332 unittest::TestPackedTypes destination; local
350 unittest::TestAllExtensions destination; local
362 unittest::TestPackedExtensions destination; local
[all...]
/external/chromium_org/v8/src/arm64/
H A Dlithium-gap-resolver-arm64.cc73 // the same as the destination, the destination is ignored and
94 // Clear this move's destination to indicate a pending move. The actual
95 // destination is saved in a stack allocated local. Multiple moves can
98 LOperand* destination = current_move.destination(); local
103 // as this one's destination blocks this one so recursively perform all
107 if (other_move.Blocks(destination) && !other_move.IsPending()) {
116 // pending, so restore its destination.
117 current_move.set_destination(destination);
138 LOperand* destination = moves_[i].destination(); local
205 LOperand* destination = moves_[index].destination(); local
[all...]
/external/chromium_org/v8/src/mips/
H A Dlithium-gap-resolver-mips.cc55 // the same as the destination, the destination is ignored and
76 // its destination. All other moves from the spilled source have been
84 // Clear this move's destination to indicate a pending move. The actual
85 // destination is saved in a stack allocated local. Multiple moves can
88 LOperand* destination = moves_[index].destination(); local
93 // as this one's destination blocks this one so recursively perform all
97 if (other_move.Blocks(destination) && !other_move.IsPending()) {
106 // pending, so restore its destination
128 LOperand* destination = moves_[i].destination(); local
189 LOperand* destination = moves_[index].destination(); local
[all...]
/external/chromium_org/v8/src/x64/
H A Dlithium-gap-resolver-x64.cc49 // the same as the destination, the destination is ignored and
71 // Clear this move's destination to indicate a pending move. The actual
72 // destination is saved in a stack-allocated local. Recursion may allow
75 LOperand* destination = moves_[index].destination(); local
80 // as this one's destination blocks this one so recursively perform all
84 if (other_move.Blocks(destination) && !other_move.IsPending()) {
90 // not be swapped). Since this move's destination is B and there is
99 // pending, so restore its destination
130 LOperand* destination = moves_[i].destination(); local
144 LOperand* destination = moves_[index].destination(); local
240 LOperand* destination = moves_[index].destination(); local
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DUnmodifiableData.java87 public void setSymlink(String sourcePath, Data destination) { argument
/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/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/browser/spellchecker/
H A Dspellcheck_message_filter_mac.cc36 content::BrowserMessageFilter* destination,
69 SpellingServiceClient* client_; // Owned by |destination|.
80 content::BrowserMessageFilter* destination,
84 destination_(destination),
79 SpellingRequest(SpellingServiceClient* client, content::BrowserMessageFilter* destination, int render_process_id) argument
/external/chromium_org/chrome/browser/ui/fullscreen/
H A Dfullscreen_controller_state_test.cc222 State destination = transition_table_[source][event]; local
223 state_transitions_[source][destination].event = static_cast<Event>(event);
224 state_transitions_[source][destination].state = destination;
225 state_transitions_[source][destination].distance = 1;
605 State destination,
610 if (state_transitions_[source][destination].state == STATE_INVALID) {
624 next_state_candidate, destination, search_limit - 1);
634 state_transitions_[source][destination] = result;
637 return state_transitions_[source][destination];
603 NextTransitionInShortestPath( State source, State destination, int search_limit) argument
[all...]
/external/chromium_org/chrome/installer/mini_installer/
H A Ddecompress.cc118 // we take a shortcut and provide a pointer to the wide destination file
121 const wchar_t* destination = reinterpret_cast<const wchar_t*>(pfdin->pv); local
125 result = reinterpret_cast<INT_PTR>(::CreateFileW(destination,
143 ::SetFileAttributes(destination, pfdin->attribs);
223 bool Expand(const wchar_t* source, const wchar_t* destination) { argument
241 scoped_ptr<char> dest_utf8(WideToUtf8(destination, -1));
252 &Notify, NULL, const_cast<wchar_t*>(destination))) {
/external/chromium_org/content/child/
H A Dbrowser_font_resource_trusted.cc390 SkCanvas* destination,
404 destination->getClipBounds(&skclip);
417 font_->drawText(destination, run, web_position, color, web_clip,
389 DrawTextToCanvas( SkCanvas* destination, const PP_BrowserFont_Trusted_TextRun& text, const PP_Point* position, uint32_t color, const PP_Rect* clip, PP_Bool image_data_is_opaque) argument
/external/chromium_org/media/base/
H A Daudio_video_metadata_extractor.cc25 std::string* destination) {
29 if (destination->empty())
30 *destination = tag->value;
37 int* destination) {
42 if (*destination < 0 && base::StringToInt(tag->value, &temporary) &&
44 *destination = temporary;
24 ExtractString(AVDictionaryEntry* tag, const char* expected_key, std::string* destination) argument
36 ExtractInt(AVDictionaryEntry* tag, const char* expected_key, int* destination) argument
H A Dsinc_resampler.cc229 void SincResampler::Resample(int frames, float* destination) { argument
271 *destination++ = CONVOLVE_FUNC(

Completed in 471 milliseconds

1234567891011