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

1 2 3 4 5 6 78 91011>>

  /external/iptables/extensions/
libxt_TPROXY.man 9 This specifies a destination port to use. It is a required option, 0 means the
10 new destination port is the same as the original. This is only valid if the
14 This specifies a destination address to use. By default the address is the IP
  /external/nist-sip/java/gov/nist/javax/sip/
LogRecordFactory.java 20 * @param destination -- host:port of the destination of the message.
34 String destination, long timeStamp, boolean isSender,
  /packages/apps/Gallery2/jni/filters/
exposure.c 21 char* destination = 0; local
22 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
23 unsigned char * rgb = (unsigned char * )destination;
highlight.c 22 char* destination = 0; local
23 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
24 unsigned char * rgb = (unsigned char * )destination;
hue.c 21 char* destination = 0; local
22 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
23 unsigned char * rgb = (unsigned char * )destination;
negative.c 21 char* destination = 0; local
22 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
26 char * dst = destination;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
CoordinateUtils.java 45 public static void copy(final int[] destination, final int[] source) {
46 destination[INDEX_X] = source[INDEX_X];
47 destination[INDEX_Y] = source[INDEX_Y];
  /external/chromium_org/chrome/browser/resources/print_preview/
cloud_print_interface.js 48 * Number of outstanding cloud destination search requests.
127 * @type {!Array.<!print_preview.Destination.Origin>}
132 print_preview.Destination.Origin.COOKIES,
133 print_preview.Destination.Origin.DEVICE
135 // ready print_preview.Destination.Origin.PROFILE
178 * @param {!print_preview.Destination} destination Cloud destination to
185 submit: function(destination, printTicketStore, documentInfo, data) {
193 new HttpParam('printerid', destination.id)
    [all...]
native_layer.js 149 * Requests the privet destination's printing capabilities. A
151 * @param {string} destinationId ID of the destination.
158 * Requests the destination's printing capabilities. A CAPABILITIES_SET
160 * @param {string} destinationId ID of the destination.
174 * @param {print_preview.Destination} destination Destination to print to.
181 destination, printTicketStore, documentInfo, requestId) {
196 destination != null &&
197 destination.id =
    [all...]
  /external/chromium_org/chrome/installer/util/
move_tree_work_item.h 14 // source path to destination path. The file system hierarchy could be a
17 // Under the cover MoveTreeWorkItem moves the destination path, if existing,
19 // to the destination location. During rollback the original destination
53 // Destination path to move files to.
move_tree_work_item_unittest.cc 57 // Move one directory from source to destination when destination does not
76 // Generate destination path
106 // Move one directory from source to destination when destination already
125 // Create destination path
165 // Move one file from source to destination when destination does not
179 // Generate destination file name
206 // Move one file from source to destination when destination alread
    [all...]
  /external/chromium_org/third_party/icu/source/tools/gensprep/
gensprep.8.in 26 .BI "\-d\fP, \fB\-\-destdir" " destination"
60 .BI "\-d\fP, \fB\-\-destdir" " destination"
61 Set the destination directory to
62 .IR destination .
63 The default destination directory is specified by the environment variable
  /external/icu4c/tools/gensprep/
gensprep.8.in 26 .BI "\-d\fP, \fB\-\-destdir" " destination"
60 .BI "\-d\fP, \fB\-\-destdir" " destination"
61 Set the destination directory to
62 .IR destination .
63 The default destination directory is specified by the environment variable
  /external/chromium_org/media/base/
audio_fifo.cc 96 void AudioFifo::Consume(AudioBus* destination,
99 DCHECK(destination);
100 DCHECK_EQ(destination->channels(), audio_bus_->channels());
105 // A copy from the FIFO to |destination| will only be performed if the
106 // allocated memory in |destination| is sufficient.
107 CHECK_LE(frames_to_consume + start_frame, destination->frames());
117 // and copy the content to the destination. Wrap around if needed.
118 for (int ch = 0; ch < destination->channels(); ++ch) {
119 float* dest = destination->channel(ch);
122 // Copy a selected part of the FIFO to the destination
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/filters/
FECompositeArithmeticNEON.h 38 inline void FEComposite::computeArithmeticPixelsNeon(unsigned char* source, unsigned char* destination,
48 uint32_t* destinationPixel = reinterpret_cast<uint32_t*>(destination);
75 inline void FEComposite::platformArithmeticNeon(unsigned char* source, unsigned char* destination,
80 computeArithmeticPixelsNeon<0, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
84 computeArithmeticPixelsNeon<1, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
89 computeArithmeticPixelsNeon<0, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4);
92 computeArithmeticPixelsNeon<1, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4);
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextCodecUTF8.cpp 145 static inline UChar* appendCharacter(UChar* destination, int character)
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)
170 *destination++ = replacementCharacter;
175 bool TextCodecUTF8::handlePartialSequence<LChar>(LChar*& destination, const uint8_t*& source, const uint8_t* end, bool flush, bool, bool&)
180 *destination++ = m_partialSequence[0];
211 *destination++ = character
278 LChar* destination = buffer.characters(); local
    [all...]
  /external/clang/test/Sema/
warn-strncat-size.c 33 strncat(dest, src, sizeof(src)); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}}
35 strncat(dest, src, sizeof(src) - 1); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}}
37 strncat(dest, "AAAAAAAAAAAAAAAAAAAAAAAAAAA", sizeof(dest)); // expected-warning{{the value of the size argument in 'strncat' is too large, might lead to a buffer overflow}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}}
39 strncat(dest, "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", sizeof(dest) - strlen(dest)); // expected-warning{{the value of the size argument in 'strncat' is too large, might lead to a buffer overflow}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}}
41 strncat((*s5)->f2[x], s2, sizeof(s2)); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}}
43 strncat(s4.f1, s2, sizeof(s2)); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}}
70 strncat(z, str, sizeof(str)); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}}
  /frameworks/ex/variablespeed/jni/
ring_buffer.cc 101 void RingBuffer::Copy(int reader, float* destination, int num_frames) const {
104 memcpy(destination, samples_ + pos * num_channels_,
105 num_channels_ * num_frames * sizeof(destination[0]));
108 memcpy(destination, samples_ + pos * num_channels_,
109 num_channels_ * wrapped * sizeof(destination[0]));
111 memcpy(destination + wrapped * num_channels_, samples_,
112 num_channels_ * remaining * sizeof(destination[0]));
  /external/chromium/chrome/browser/debugger/
extension_ports_remote_service.cc 51 // 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 == -1) // Destination required for this command
    [all...]
debugger_remote_service.cc 58 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) {
    [all...]
  /hardware/samsung_slsi/exynos5/libcsc/
csc.h 284 * Get destination format.
325 * Set destination format
353 * destination color format(HAL format)[in]
380 * y or RGB destination pointer[in]
383 * u or uv destination pointer[in]
386 * v or none destination pointer[in]
396 * Setup destination buffer
402 * y or RGB destination pointer[in]
405 * u or uv destination pointer[in]
408 * v or none destination pointer[in
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
BinaryDictIOUtils.java 260 static int writeSInt24ToStream(final OutputStream destination, final int value)
263 destination.write((byte)(((value < 0 ? 0x80 : 0) | (absValue >> 16)) & 0xFF));
264 destination.write((byte)((absValue >> 8) & 0xFF));
265 destination.write((byte)(absValue & 0xFF));
272 private static int writeVariableAddress(final OutputStream destination, final int value)
276 destination.write((byte)value);
279 destination.write((byte)(0xFF & (value >> 8)));
280 destination.write((byte)(0xFF & value));
283 destination.write((byte)(0xFF & (value >> 16)));
284 destination.write((byte)(0xFF & (value >> 8)))
    [all...]
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
CombinedInputOutput.java 204 * @param destination a destination stream to write to.
207 public static void writeDictionaryCombined(Writer destination, FusionDictionary dict)
214 destination.write(DICTIONARY_TAG + "=");
216 destination.write(options.get(DICTIONARY_TAG));
220 destination.write("," + OPTIONS_TAG + "=" + GERMAN_UMLAUT_PROCESSING_OPTION);
222 destination.write("," + OPTIONS_TAG + "=" + FRENCH_LIGATURE_PROCESSING_OPTION);
226 destination.write("," + key + "=" + value);
228 destination.write("\n");
230 destination.write(" " + WORD_TAG + "=" + word.mWord + ",
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
layout_tests_mover.py 32 to the specified destination path. Updates all references in tests and resources to reflect the new
36 If the destination directory does not exist, it and any missing parent directories are created. If
37 the destination directory already exists, the child members of the origin directory are added to the
38 destination directory. If any of the child members clash with existing members of the destination
90 def _move_path(self, path, origin, destination):
93 return self._filesystem.normpath(self._filesystem.join(destination, self._filesystem.relpath(path, origin)))
101 raise Exception('Destination path %s is a file' % self._destination)
103 raise Exception('Destination path %s is not in LayoutTests directory' % self._destination)
105 # If destination is an existing directory, we move the children of origin into destination
    [all...]
  /external/chromium_org/content/browser/download/
base_file_win.cc 78 // The source and destination files are the same file.
97 // The source or destination path exceeded or would exceed MAX_PATH.
103 // The path in the source or destination or both was invalid.
109 // The destination path is an existing file.
115 // The destination path is an existing folder.
127 // The destination is a read-only CD-ROM, possibly unformatted.
133 // The destination is a read-only DVD, possibly unformatted.
139 // The destination is a writable CD-ROM, possibly unformatted.
145 // The file involved in the operation is too large for the destination
176 // An unspecified error occurred on the destination
    [all...]

Completed in 852 milliseconds

1 2 3 4 5 6 78 91011>>