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

<<11121314151617181920>>

  /external/chromium_org/chrome/browser/resources/print_preview/data/ticket_items/
color.js 62 // TODO(rltoscano): Get rid of this check based on destination ID. These
69 return dest.id == print_preview.Destination.GooglePromotedId.DOCS ||
70 dest.id == print_preview.Destination.GooglePromotedId.FEDEX ||
71 dest.type == print_preview.Destination.Type.MOBILE ||
76 * @return {Object} Color capability of the selected destination.
  /external/chromium_org/chrome/installer/util/
copy_reg_key_work_item.cc 6 // with that of another (i.e., the destination is erased prior to the copy).
55 LOG(ERROR) << "Failed to backup destination for registry key copy.";
60 // Delete the destination before attempting to copy.
74 LOG(ERROR) << "Failed to open destination key at " << dest_key_path_
81 // The source didn't exist, so neither should the destination.
copy_tree_work_item_unittest.cc 76 // Copy one file from source to destination.
84 // Create destination path
114 // Copy one file, overwriting the existing one in destination.
116 // regardless since the content at destination file is different from source.
124 // Create destination file
183 // Copy one file, with the existing one in destination having the same
194 // Create destination file
275 // Create destination file
317 // Copy one file, with the existing one in destination being used with
318 // overwrite option as IF_DIFFERENT. This destination-file-in-use shoul
    [all...]
  /external/chromium_org/third_party/WebKit/ManualTests/
data-transfer-items-file-dragout.html 12 <div id="destination" style="min-height:100px; margin: 5px; border: solid 1px black">Drop files here </div>
36 var destination = document.getElementById('destination');
37 destination.addEventListener('dragover', handleDragOver, false);
38 destination.addEventListener('drop', handleDrop, false);
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
ChannelSplitterNode.cpp 68 AudioBus* destination = output(i)->bus(); local
69 ASSERT(destination);
74 destination->channel(0)->copyFrom(source->channel(i));
76 // Only bother zeroing out the destination if it's connected to anything
77 destination->zero();
WaveShaperProcessor.cpp 75 void WaveShaperProcessor::process(const AudioBus* source, AudioBus* destination, size_t framesToProcess)
78 destination->zero();
82 bool channelCountMatches = source->numberOfChannels() == destination->numberOfChannels() && source->numberOfChannels() == m_kernels.size();
92 m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->mutableData(), framesToProcess);
95 destination->zero();
  /external/chromium_org/third_party/icu/source/tools/genccode/
genccode.8.in 20 .BI "\-d\fP, \fB\-\-destdir" " destination"
70 .BI "\-d\fP, \fB\-\-destdir" " destination"
71 Set the destination directory to
72 .IR destination .
73 The default destination directory is the current directory.
  /external/chromium_org/third_party/icu/source/tools/gencmn/
gencmn.8.in 27 .BI "\-d\fP, \fB\-\-destdir" " destination"
76 .BI "\-d\fP, \fB\-\-destdir" " destination"
77 Set the destination directory to
78 .IR destination .
79 The default destination directory is specified by the environment variable
  /external/chromium_org/third_party/icu/source/tools/genrb/
genrb.1.in 34 .BI "\-d\fP, \fB\-\-destdir" " destination"
106 .BI "\-d\fP, \fB\-\-destdir" " destination"
107 Set the destination directory to
108 .IR destination .
109 The default destination directory is specified by the environment variable
  /external/chromium_org/third_party/icu/source/tools/makeconv/
makeconv.1.in 25 .BI "\-d\fP, \fB\-\-destdir" " destination"
80 .BI "\-d\fP, \fB\-\-destdir" " destination"
81 Set the destination directory to
82 .IR destination .
83 The default destination directory is specified by the environment variable
  /external/compiler-rt/cmake/Modules/
AddCompilerRT.cmake 55 ARCHIVE DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR})
61 DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR})
84 ARCHIVE DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR})
104 LIBRARY DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR})
140 install(FILES ${file_name} DESTINATION ${LIBCLANG_INSTALL_PATH})
  /external/icu4c/tools/genccode/
genccode.8.in 20 .BI "\-d\fP, \fB\-\-destdir" " destination"
70 .BI "\-d\fP, \fB\-\-destdir" " destination"
71 Set the destination directory to
72 .IR destination .
73 The default destination directory is the current directory.
  /external/icu4c/tools/gencmn/
gencmn.8.in 27 .BI "\-d\fP, \fB\-\-destdir" " destination"
76 .BI "\-d\fP, \fB\-\-destdir" " destination"
77 Set the destination directory to
78 .IR destination .
79 The default destination directory is specified by the environment variable
  /external/icu4c/tools/genrb/
genrb.1.in 34 .BI "\-d\fP, \fB\-\-destdir" " destination"
106 .BI "\-d\fP, \fB\-\-destdir" " destination"
107 Set the destination directory to
108 .IR destination .
109 The default destination directory is specified by the environment variable
  /external/icu4c/tools/makeconv/
makeconv.1.in 25 .BI "\-d\fP, \fB\-\-destdir" " destination"
80 .BI "\-d\fP, \fB\-\-destdir" " destination"
81 Set the destination directory to
82 .IR destination .
83 The default destination directory is specified by the environment variable
  /external/oprofile/libutil++/
file_manip.cpp 33 bool copy_file(string const & source, string const & destination)
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))
  /frameworks/av/media/libeffects/lvm/lib/Eq/src/
LVEQNB_Process.c 101 pScratch, /* Destination */
158 (LVM_INT16 *)pScratch, /* Destination */
169 pOutData, /* Destination */
178 pOutData, /* Destination */
191 pOutData, /* Destination */
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
Blend.java 68 mIntrinsicNames[1] = "Destination";
70 mIntrinsicNames[3] = "Destination Over";
72 mIntrinsicNames[5] = "Destination In";
74 mIntrinsicNames[7] = "Destination Out";
76 mIntrinsicNames[9] = "Destination Atop";
  /external/chromium_org/chrome/
chrome_dll_bundle.gypi 143 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Libraries',
149 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Internet Plug-Ins',
176 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Internet Plug-Ins/PepperFlash',
189 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Internet Plug-Ins/',
201 'destination': '<(PRODUCT_DIR)',
208 'destination': '<(PRODUCT_DIR)/pseudo_locales',
214 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/resources',
229 'destination':
248 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Resources',
305 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Libraries'
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/ps3/spulibs/
bilin_scaler.c 159 // Sizes for destination
311 // Store the result back to main memory into a destination buffer in YUV format
316 // dst_width: Pixel width of destination image
317 // dst_addr: Destination address in main memory
321 (unsigned int)dst_addr_main_memory_y + (dst_vu*dst_dbl_linestride_y), // Destination in main memory (addr)
322 dst_dbl_linestride_y, // Two Y lines (depending on the widht of the destination resolution)
327 (unsigned int)dst_addr_main_memory_v + (dst_vu*dst_dbl_linestride_vu), // Destination in main memory (addr)
328 dst_dbl_linestride_vu, // Two V lines (depending on the widht of the destination resolution)
333 (unsigned int)dst_addr_main_memory_u + (dst_vu*dst_dbl_linestride_vu), // Destination in main memory (addr)
334 dst_dbl_linestride_vu, // Two U lines (depending on the widht of the destination resolution
    [all...]
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
XmlDictInputOutput.java 352 * @param destination a destination stream to write to.
355 public static void writeDictionaryXml(Writer destination, FusionDictionary dict)
362 destination.write("<wordlist format=\"2\"");
365 destination.write(" " + OPTIONS_KEY + "=\"" + GERMAN_UMLAUT_PROCESSING_OPTION + "\"");
367 destination.write(" " + OPTIONS_KEY + "=\"" + FRENCH_LIGATURE_PROCESSING_OPTION + "\"");
371 destination.write(" " + key + "=\"" + value + "\"");
373 destination.write(">\n");
374 destination.write("<!-- Warning: there is no code to read this format yet. -->\n");
376 destination.write(" <" + WORD_TAG + " " + WORD_ATTR + "=\"" + word.mWord + "\"
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
KeyCheckPage.java 87 setTitle("Destination and key/certificate checks");
105 new Label(composite, SWT.NONE).setText("Destination APK file:");
121 fileDialog.setText("Destination file name");
157 // reset the destination from the content of the project
160 String destination = ProjectHelper.loadStringProperty(project, local
162 if (destination != null) {
163 mDestination.setText(destination);
287 * Callback for destination field edition
300 setErrorMessage("Enter destination for the APK file.");
309 setErrorMessage("Destination is a directory.")
    [all...]
  /external/chromium_org/chrome/browser/resources/print_preview/data/
print_ticket_store.js 8 // TODO(rltoscano): Maybe clear print ticket when destination changes. Or
10 // destination changes, the new destination might not support duplex anymore,
16 * handles validation of the print ticket against destination capabilities and
29 * Destination store used to understand which printer is selected.
50 * Printing capabilities of Chromium and the currently selected destination.
336 * @param {!print_preview.Destination} destination Destination to print to.
339 createPrintTicket: function(destination) {
    [all...]
  /external/chromium_org/chrome/browser/resources/print_preview/
print_header.js 14 * selected destination.
29 * Used to get the selected destination.
156 print_preview.Destination.GooglePromotedId.SAVE_AS_PDF;
201 print_preview.Destination.GooglePromotedId.SAVE_AS_PDF) {
220 * Called when a new destination is selected. Updates the text on the print
226 print_preview.Destination.GooglePromotedId.SAVE_AS_PDF ||
228 print_preview.Destination.GooglePromotedId.DOCS;
  /external/chromium_org/chrome/installer/mini_installer/
decompress.cc 118 // 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) {
241 scoped_ptr<char> dest_utf8(WideToUtf8(destination, -1));
252 &Notify, NULL, const_cast<wchar_t*>(destination))) {

Completed in 2011 milliseconds

<<11121314151617181920>>