HomeSort by relevance Sort by last modified time
    Searched refs:destination (Results 351 - 375 of 659) sorted by null

<<11121314151617181920>>

  /external/qemu/distrib/sdl-1.2.15/src/video/gem/
SDL_gemvideo.c 427 /* Setup destination mfdb */
874 void *source,*destination; local
887 destination = destscr;
888 destination += destpitch * rects[i].y;
889 destination += x1;
892 source, destination,
  /external/qemu/distrib/sdl-1.2.15/src/video/xbios/
SDL_xbios.c 881 void *source,*destination; local
894 destination = XBIOS_screens[XBIOS_fbnum];
895 destination += XBIOS_pitch * rects[i].y;
896 destination += x1;
901 destination,
936 /* Center on destination screen */
  /external/v8/src/arm/
code-stubs-arm.h 711 enum Destination {
718 // floating point registers. Depending on the destination the values ends up
719 // either d7 and d6 or in r2/r3 and r0/r1 respectively. If the destination is
723 Destination destination,
728 // floating point registers. Depending on the destination the values ends up
729 // either d7 and d6 or in r2/r3 and r0/r1 respectively. If the destination is
735 FloatingPointHelper::Destination destination,
756 // |destination|
    [all...]
  /external/v8/src/mips/
code-stubs-mips.h 711 enum Destination {
718 // floating point registers. Depending on the destination the values ends up
719 // either f14 and f12 or in a2/a3 and a0/a1 respectively. If the destination
723 Destination destination,
728 // floating point registers. Depending on the destination the values ends up
729 // either f14 and f12 or in a2/a3 and a0/a1 respectively. If the destination
735 FloatingPointHelper::Destination destination,
756 // |destination|
    [all...]
  /frameworks/base/core/java/android/app/
DownloadManager.java 45 * request that a URI be downloaded to a particular destination file. The download manager will
101 * Uri where downloaded file will be stored. If a destination is supplied by client, that URI
233 * Value of {@link #COLUMN_REASON} when the requested destination file already exists (the
341 * Note that the default download destination is a shared volume where the system might delete
439 * Set the local destination for the downloaded file. Must be a file URI to a path on
457 * Set the local destination for the downloaded file to the system cache dir (/cache).
475 * Set the local destination for the downloaded file to a path within
487 * destination filename
513 * Set the local destination for the downloaded file to a path within
522 * destination filenam
1039 int destination = cursor.getInt(indx); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
SaveImage.java 127 * @param destination Destinaton File, if this is null, a new file will be
133 File destination, Bitmap previewImage, Callback callback) {
138 if (destination == null) {
141 mDestinationFile = destination;
295 // destination file.
463 * @param dstFile Providing the destination file info to help to build the
474 // Get the destination directory and create the auxilliary directory
495 // We are using the destination file name such that photos sitting in
536 File destination) {
544 destination, selectedImageUri, sourceImageUri, flatten, 90, 1f, true)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 
  /external/chromium/net/socket/
ssl_client_socket_pool.cc 265 transport_params->destination().priority(),
282 socks_params->destination().priority(),
302 http_proxy_params->destination().priority(), &callback_,
  /external/chromium_org/content/renderer/gpu/
render_widget_compositor.cc 446 const WebKit::WebPoint& destination,
453 gfx::Vector2d(destination.x, destination.y),
  /external/chromium_org/net/socket/
ssl_client_socket_pool.cc 208 transport_params->destination().priority(), callback_, transport_pool_,
225 group_name(), socks_params, socks_params->destination().priority(),
245 http_proxy_params->destination().priority(), callback_, http_proxy_pool_,
  /external/chromium_org/sandbox/win/src/
sandbox_nt_util.cc 205 NTSTATUS CopyData(void* destination, const void* source, size_t bytes) {
209 memcpy(destination, source, bytes);
212 char* to = reinterpret_cast<char*>(destination);
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioContext.cpp 154 // Create a new destination for offline rendering.
198 // This starts the audio thread. The destination node's provideInput() method will now be called repeatedly to render audio.
214 // We have to release our reference to the destination node before the context will ever be deleted since the destination node holds a reference to the context.
387 destination()->enableInput(source->deviceId());
388 provider = destination()->localAudioInputProvider();
928 destination()->startRendering();
  /external/chromium_org/v8/src/
lithium.h 276 LMoveOperands(LOperand* source, LOperand* destination)
277 : source_(source), destination_(destination) {
283 LOperand* destination() const { return destination_; } function in class:v8::internal::BASE_EMBEDDED
287 // destination (but not the source).
292 // True if this move a move into the given destination operand.
298 // destination are the same, or if its destination is unneeded.
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPUtilsImpl.java 508 * @param destination The destination XMP object.
511 * @param deleteEmptyValues Delete destination values if source property is empty.
514 public static void appendProperties(XMPMeta source, XMPMeta destination,
519 ParameterAsserts.assertImplementation(destination);
522 XMPMetaImpl dest = (XMPMetaImpl) destination;
528 // Make sure we have a destination schema node
590 * @param destXMP The destination XMP object.
592 * @param destParent the parent of the destination node
595 * in the destination object
    [all...]
  /packages/apps/Camera2/src/com/android/camera/crop/
SaveImage.java 113 * @param destination Destinaton File, if this is null, a new file will be
119 File destination, Bitmap previewImage, Callback callback) {
124 if (destination == null) {
127 mDestinationFile = destination;
276 * @param dstFile Providing the destination file info to help to build the
287 // Get the destination directory and create the auxilliary directory
308 // We are using the destination file name such that photos sitting in
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
ImageLoader.java 418 Rect destination) {
421 if (destination != null) {
422 int thresholdWidth = (int) (destination.width() * OVERDRAW_ZOOM);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
LSSerializerImpl.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
WTFString.cpp 865 LChar* destination;
866 String result = String::createUninitialized(length, destination);
868 copyLCharsFromUCharSource(destination, source, length);
878 UChar* destination;
879 String result = String::createUninitialized(length, destination);
881 StringImpl::copyChars(destination, source, length);
    [all...]
  /sdk/adtproductbuild/
Android.mk 82 # $4 = the destination directory (where the unpacked eclipse is created)
83 # $5 = the destination zip with the zipped eclipse ide.
138 # the source and destination zip paths.
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PrintCustomContent.java 301 final ParcelFileDescriptor destination,
417 destination.getFileDescriptor()));
  /external/chromium_org/content/browser/renderer_host/media/
web_contents_audio_input_stream_unittest.cc 63 MirroringDestination* destination));
66 MirroringDestination* destination));
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
svn.py 204 def move(self, origin, destination):
205 return self._run_svn(["mv", "--force", origin, destination], return_exit_code=True)
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
NestedMapData.java 377 * Set the source node to be a symbolic link to the destination.
384 * Set the source node to be a symbolic link to the destination.
386 public void setSymlink(String sourcePath, Data destination) {
387 createChild(sourcePath).setSymlink(destination);
419 throw new NullPointerException("Invalid copy destination path");
  /external/libvpx/libvpx/vp9/common/x86/
vp9_postproc_mmx.asm 58 movsxd rax, DWORD PTR arg(2) ;src_pixels_per_line ; destination pitch?
247 movsxd rax, dword ptr arg(3) ;dst_pixels_per_line ; destination pitch?
248 add rdi,rax ; next destination
249 movsxd rax, dword ptr arg(2) ;src_pixels_per_line ; destination pitch?
  /external/llvm/test/MC/ARM/
diagnostics.s 275 @ CHECK-ERRORS: error: destination operands must be sequential
331 @ CHECK-ERRORS: error: destination operands must be sequential
334 @ CHECK-ERRORS: error: destination operands must be sequential
337 @ CHECK-ERRORS: error: destination operands must be sequential

Completed in 1401 milliseconds

<<11121314151617181920>>