HomeSort by relevance Sort by last modified time
    Searched full:destination (Results 951 - 975 of 5499) sorted by null

<<31323334353637383940>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
file_util.py 97 # XXX if the destination file already exists, we clobber it if
100 # should probably blow up if destination exists and we would be
188 "can't move '%s': destination '%s' already exists" %
193 "can't move '%s': destination '%s' not a valid path" % \
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
cStringIO.h 39 the caller doesn't have to provide its own buffer as destination).
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
file_util.py 97 # XXX if the destination file already exists, we clobber it if
100 # should probably blow up if destination exists and we would be
188 "can't move '%s': destination '%s' already exists" %
193 "can't move '%s': destination '%s' not a valid path" % \
  /system/security/keystore/include/keystore/
keystore.h 64 * Returns NULL if the destination array is too small. Otherwise it
  /bionic/libc/arch-arm/bionic/
memcpy.S 65 /* align destination to cache-line for the write-buffer */
81 // copies 4 bytes, destination 32-bits aligned
85 // copies 8 bytes, destination 64-bits aligned
189 /* align destination to 16 bytes for the write-buffer */
205 // copies 4 bytes, destination 32-bits aligned
209 // copies 8 bytes, destination 64-bits aligned
338 * note that memcpy() always returns the destination pointer,
353 // preload the destination because we'll align it to a cache line
395 /* align the destination to a cache-line */
498 * but destination is not
    [all...]
memset.S 65 /* align destination to 16 bytes for the write-buffer */
133 /* compute the offset to align the destination
157 /* align the destination to a cache-line */
  /bionic/libc/arch-arm/krait/bionic/
memcpy_base.S 49 /* align destination to cache-line for the write-buffer */
67 // copies 4 bytes, destination 32-bits aligned
71 // copies 8 bytes, destination 64-bits aligned
  /build/libs/host/
CopyFile.c 54 * Returns true if the source file is newer than the destination file.
83 * Returns true if the source and destination files are actually the
154 * Set the permissions, owner, and timestamps on the destination file
202 * Copy a regular file. If the destination file exists and is not a
219 "acp: destination '%s' exists and is not regular file\n",
223 fprintf(stderr, "acp: unable to stat destination '%s'\n", dst);
262 /* if "force" is set, try removing the destination file and retry */
347 * We always discard the destination file. If it's a symlink already,
367 "acp: destination '%s' exists and is not regular or symlink\n",
443 "acp: destination '%s' exists and is not a directory\n", dst)
    [all...]
  /device/generic/goldfish/camera/fake-pipeline2/
JpegCompressor.cpp 134 ALOGE("%s: Unable to find buffers for JPEG source/destination",
266 ALOGV("%s: Setting destination to %p, size %d",
273 ALOGE("%s: JPEG destination buffer overflow!",
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XStringForChars.java 191 * Copies characters from this string into the destination character
198 * @param dst the destination array.
199 * @param dstBegin the start offset in the destination array.
  /external/chromium_org/chrome/app/nibs/
InfoBar.xib 219 <reference key="destination" ref="724203299"/>
227 <reference key="destination" ref="488415728"/>
235 <reference key="destination" ref="11488953"/>
243 <reference key="destination" ref="11488953"/>
251 <reference key="destination" ref="488415728"/>
259 <reference key="destination" ref="374699732"/>
267 <reference key="destination" ref="1005"/>
275 <reference key="destination" ref="861420161"/>
283 <reference key="destination" ref="293244832"/>
291 <reference key="destination" ref="861420161"/
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
native_media_file_util_unittest.cc 287 // Always start with an empty destination directory.
288 // Copying to a non-empty destination directory is an invalid operation.
316 // Run the loop twice. The first run has no destination files.
348 // The destination path is a file here. The directory case has been
350 // If the destination path does not exist and is not visible, then
358 // If the destination path exist and is not visible, then to the copy
392 // Always start with an empty destination directory.
393 // Moving to a non-empty destination directory is an invalid operation.
419 // Run the loop twice. The first run has no destination files.
453 // The destination path is a file here. The directory case has bee
    [all...]
  /external/chromium_org/chrome/browser/ui/fullscreen/
fullscreen_controller_state_test.h 101 // Repeated calls are needed to reach the destination.
164 // Returns next transition info for shortest path from source to destination.
166 State destination,
  /external/chromium_org/chrome/common/
thumbnail_score.h 69 // The number of hops from the final destination page that this thumbnail was
71 // destination (value of 0).
75 // this value so the distance from the destination can be taken into account
  /external/chromium_org/chrome_frame/cfinstall/src/stub/
cfinstall.js 57 * 'destination' parameter is passed, the page navigates there instead.
59 * properties are: 'mode', 'url', 'destination', 'node', 'onmissing',
101 window.location.assign(args['destination'] || window.location);
  /external/chromium_org/mojo/system/
channel.cc 160 HandleRemoteError("Received message with no destination ID");
177 "Received a message for nonexistent local destination ID %u",
192 "Failed to enqueue message to local destination ID %u",
  /external/chromium_org/ppapi/examples/video_effects/
video_effects.cc 94 // Open destination stream for write.
112 PostMessage(pp::Var("Failed to open destination stream."));
154 // Put frame back to destination stream
  /external/chromium_org/ppapi/
ppapi_nacl_test_common.gypi 47 'destination': '>(nacl_newlib_out_dir)',
57 'destination': '>(nacl_glibc_out_dir)',
67 'destination': '>(nacl_pnacl_newlib_out_dir)',
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
BiquadDSPKernel.cpp 113 void BiquadDSPKernel::process(const float* source, float* destination, size_t framesToProcess)
115 ASSERT(source && destination && biquadProcessor());
123 m_biquad.process(source, destination, framesToProcess);
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
DownSampler.cpp 80 // In a sense, this is shifting forward in time by one sample-frame at the destination sample-rate.
115 // Copy the odd sample-frames from sourceP, delayed by one sample-frame (destination sample-rate)
129 // Sum into the destination.
  /external/chromium_org/third_party/WebKit/Source/platform/image-encoders/skia/
JPEGImageEncoder.cpp 122 JPEGOutputBuffer destination; local
123 destination.output = output;
139 cinfo.dest = &destination;
  /external/chromium_org/third_party/icu/source/common/unicode/
usprep.h 237 * @param dest Pointer to the destination buffer to receive the output
238 * @param destCapacity The capacity of destination array
254 * @return The number of UChars in the destination buffer
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
floatnum.h 92 * value into the least significant bits of the destination, or may be shifted
93 * into more significant bits by the shift parameter. The destination bits are
100 * \param destsize destination size (in bytes)
  /external/chromium_org/tools/gyp/test/mac/xcode-env-order/
test.gyp 20 'destination': '<(PRODUCT_DIR)/${PRODUCT_NAME}-copy-brace',
24 'destination': '<(PRODUCT_DIR)/$(PRODUCT_NAME)-copy-paren',
28 'destination': '<(PRODUCT_DIR)/$PRODUCT_NAME-copy-bare',
  /external/icu4c/common/unicode/
usprep.h 237 * @param dest Pointer to the destination buffer to receive the output
238 * @param destCapacity The capacity of destination array
254 * @return The number of UChars in the destination buffer

Completed in 1413 milliseconds

<<31323334353637383940>>