Searched refs:destination (Results 376 - 400 of 539) sorted by relevance

<<11121314151617181920>>

/external/libhevc/common/arm/
H A Dihevc_itrans_recon_4x4.s220 @ storing destination
H A Dihevc_itrans_recon_4x4_ttype1.s221 @ storing destination
/external/libvorbis/doc/
H A D02-bitpacking.tex80 significant unused bit position of the destination byte, followed by
82 the requested number of bits. When all bits of the destination byte
/external/smali/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/external/chromium_org/components/component_updater/
H A Dcomponent_updater_service.cc62 std::vector<CrxDownloader::DownloadMetrics>* destination) {
63 destination->insert(destination->end(), source.begin(), source.end());
60 AppendDownloadMetrics( const std::vector<CrxDownloader::DownloadMetrics>& source, std::vector<CrxDownloader::DownloadMetrics>* destination) argument
/external/chromium_org/content/common/gpu/media/
H A Ddxva_video_decode_accelerator.cc125 uint8* destination = NULL; local
126 hr = buffer->Lock(&destination, &max_length, &current_length);
131 memcpy(destination, stream, size);
/external/chromium_org/content/renderer/gpu/
H A Drender_widget_compositor.cc627 const blink::WebPoint& destination,
634 gfx::Vector2d(destination.x, destination.y),
626 startPageScaleAnimation( const blink::WebPoint& destination, bool use_anchor, float new_page_scale, double duration_sec) argument
/external/chromium_org/net/cert/
H A Dnss_cert_database_unittest.cc48 void SwapCertList(CertificateList* destination, argument
50 ASSERT_TRUE(destination);
51 destination->swap(*source);
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-raytrace.js37 Object.extend = function(destination, source) {
39 destination[property] = source[property];
41 return destination;
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-raytrace.js37 Object.extend = function(destination, source) {
39 destination[property] = source[property];
41 return destination;
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-raytrace.js37 Object.extend = function(destination, source) {
39 destination[property] = source[property];
41 return destination;
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A DVCSUtils.pm163 my ($source, $destination) = @_;
166 my $escapedDestination = escapeSubversionPath($destination);
170 system("git", "mv", $source, $destination);
661 # destination path.
2006 # Source and destination buffer sizes are stored in 7-bit chunks at the
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Drelayserver.cc186 if (it->second->addr_pair().destination() == address) {
205 ASSERT(!ap.destination().IsNil());
231 // Forward this to the destination address into the connection.
250 ASSERT(!ap.destination().IsNil());
/external/chromium_org/v8/benchmarks/
H A Draytrace.js42 Object.extend = function(destination, source) {
44 destination[property] = source[property];
46 return destination;
/external/chromium_org/v8/src/compiler/
H A Dinstruction.h272 MoveOperands(InstructionOperand* source, InstructionOperand* destination) argument
273 : source_(source), destination_(destination) {}
278 InstructionOperand* destination() const { return destination_; } function in class:v8::internal::compiler::FINAL
282 // destination (but not the source).
285 // True if this move a move into the given destination operand.
291 // destination are the same, or if its destination is unneeded or constant.
/external/chromium_org/v8/src/
H A Ddeoptimizer.h33 HeapNumberMaterializationDescriptor(T destination, double value) argument
34 : destination_(destination), value_(value) { }
36 T destination() const { return destination_; } function in class:v8::internal::BASE_EMBEDDED
H A Dlithium.h260 LMoveOperands(LOperand* source, LOperand* destination) argument
261 : source_(source), destination_(destination) {
267 LOperand* destination() const { return destination_; } function in class:v8::internal::BASE_EMBEDDED
271 // destination (but not the source).
276 // True if this move a move into the given destination operand.
282 // destination are the same, or if its destination is unneeded or constant.
/external/lldb/source/Core/
H A DValueObject.cpp751 std::string& destination)
753 destination.clear();
775 summary_ptr->FormatObject(this, destination);
822 destination.assign (1, '(');
823 destination.append (sstr.GetData(), sstr.GetSize());
824 destination.append (1, ')');
831 return !destination.empty();
1305 std::string& destination)
1329 destination.swap(reg_sstr.GetString());
1376 destination
750 GetSummaryAsCString(TypeSummaryImpl* summary_ptr, std::string& destination) argument
1304 GetValueAsCString(lldb::Format format, std::string& destination) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
H A Dpdebuild.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/build/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.databinding_1.3.100.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/ash/shelf/
H A Dshelf_view_unittest.cc477 views::View* destination = test_api_->GetButton(destination_index); local
479 gfx::Point(destination->x() - button->x(),
480 destination->y() - button->y()),
481 destination->GetBoundsInScreen().origin(), 0, 0);
/external/chromium_org/chrome/browser/resources/print_preview/
H A Dprint_preview.js91 * Component that renders the print destination.
458 this.destinationSearch_.decorate($('destination-search'));
459 this.destinationSettings_.decorate($('destination-settings'));
849 var devicesUrl = 'chrome://devices/register?id=' + e.destination.id;
851 this.destinationStore_.waitForRegister(e.destination.id);
924 * Called when the destination settings' change button is activated.
925 * Displays the destination search component.
933 * Called when the destination settings' change button is activated.
934 * Displays the destination search component.
943 * Called when the destination searc
[all...]
/external/chromium_org/third_party/webrtc/common_audio/resampler/
H A Dsinc_resampler_unittest.cc39 MOCK_METHOD2(Run, void(int frames, float* destination));
/external/chromium_org/chrome/browser/extensions/api/declarative_webrequest/
H A Dwebrequest_rules_registry_unittest.cc154 const std::string& destination) {
160 action_dict.SetString(keys::kRedirectUrlKey, destination);
171 // Create a rule to ignore all other rules for a destination that
153 CreateRedirectRule( const std::string& destination) argument
/external/chromium_org/third_party/cld/base/
H A Dlogging.h858 // full message gets streamed to the appropriate destination.
1149 // Set the destination to which a particular severity level of log
1164 // Used to send logs to some other kind of destination
1203 void AddLogSink(LogSink *destination);
1204 void RemoveLogSink(LogSink *destination);

Completed in 611 milliseconds

<<11121314151617181920>>