/external/chromium_org/chrome/browser/resources/print_preview/data/ |
destination_store.js | 29 * Used to load and persist the selected destination. 44 * @type {!Array.<!print_preview.Destination>} 51 * @type {object.<string, !print_preview.Destination>} 57 * Currently selected destination. 58 * @type {print_preview.Destination} 64 * Initial destination ID used to auto-select the first inserted destination 65 * that matches. If {@code null}, the first destination inserted into the 73 * Initial origin used to auto-select destination. 74 * @type {print_preview.Destination.Origin [all...] |
cloud_parsers.js | 12 * Enumeration of cloud destination field names. 28 * Special tag that denotes whether the destination has been recently used. 36 * Special tag that denotes whether the destination is owned by the user. 44 * Enumeration of cloud destination types that are supported by print preview. 55 * Parses a destination from JSON from a Google Cloud Print search or printer 59 * @param {!print_preview.Destination.Origin} origin The origin of the 61 * @return {!print_preview.Destination} Parsed destination. 67 throw Error('Cloud destination does not have an ID or a display name'); 73 print_preview.Destination.ConnectionStatus.UNKNOWN [all...] |
/external/chromium_org/chrome/browser/resources/print_preview/settings/ |
destination_settings.css | 5 #destination-settings h1 { 10 #destination-settings .throbber { 16 #destination-settings .destination-settings-box { 23 #destination-settings .destination-settings-change-button { 27 .destination-settings-icon { 34 .destination-settings-info-wrapper { 40 .destination-settings-info { 59 .destination-throbber-name-container [all...] |
destination_settings.js | 8 // TODO(rltoscano): This class needs a throbber while loading the destination 13 * Component used to render the print destination. 15 * the selected destination. 23 * Used to determine the selected destination. 30 * Current CSS class of the destination icon. 52 CHANGE_BUTTON: 'destination-settings-change-button', 53 ICON: 'destination-settings-icon', 54 ICON_CLOUD: 'destination-settings-icon-cloud', 55 ICON_CLOUD_SHARED: 'destination-settings-icon-cloud-shared', 56 ICON_GOOGLE_PROMOTED: 'destination-settings-icon-google-promoted' [all...] |
/external/chromium_org/ppapi/api/private/ |
ppb_video_destination_private.idl | 8 * for a video destination resource, which sends video frames to a MediaStream 18 * several functions for creating video destination resources and using them to 23 * Creates a video destination resource. 34 * Determines if a resource is a video destination resource. 39 * resource is a video destination resource or <code>PP_FALSE</code> 45 * Opens a video destination for putting frames. 47 * @param[in] destination A <code>PP_Resource</code> corresponding to a video 48 * destination resource. 55 * Returns PP_ERROR_BADRESOURCE if destination isn't a valid video 56 * destination [all...] |
/external/chromium_org/ppapi/c/private/ |
ppb_video_destination_private.h | 31 * for a video destination resource, which sends video frames to a MediaStream 42 * several functions for creating video destination resources and using them to 47 * Creates a video destination resource. 57 * Determines if a resource is a video destination resource. 62 * resource is a video destination resource or <code>PP_FALSE</code> 67 * Opens a video destination for putting frames. 69 * @param[in] destination A <code>PP_Resource</code> corresponding to a video 70 * destination resource. 77 * Returns PP_ERROR_BADRESOURCE if destination isn't a valid video 78 * destination [all...] |
/external/chromium_org/tools/gyp/test/copies/src/ |
copies.gyp | 12 'destination': 'copies-out', 24 'destination': '<(PRODUCT_DIR)/copies-out', 37 'destination': '<(PRODUCT_DIR)/copies-out', 45 # entire directory path in the destination, only the final directory). 51 'destination': '<(PRODUCT_DIR)/copies-out', 64 'destination': '<(PRODUCT_DIR)/copies-null',
|
copies-slash.gyp | 7 # A trailing slash on the destination directory should be ignored. 13 'destination': '<(PRODUCT_DIR)/copies-out-slash/', 27 'destination': '<(PRODUCT_DIR)/copies-out-slash-2/',
|
/external/v8/src/x64/ |
lithium-gap-resolver-x64.cc | 72 // the same as the destination, the destination is ignored and 94 // Clear this move's destination to indicate a pending move. The actual 95 // destination is saved in a stack-allocated local. Recursion may allow 98 LOperand* destination = moves_[index].destination(); local 103 // as this one's destination blocks this one so recursively perform all 107 if (other_move.Blocks(destination) && !other_move.IsPending()) { 113 // not be swapped). Since this move's destination is B and there is 122 // pending, so restore its destination 153 LOperand* destination = moves_[i].destination(); local 167 LOperand* destination = moves_[index].destination(); local 243 LOperand* destination = moves_[index].destination(); local [all...] |
/external/eigen/Eigen/src/Core/ |
CMakeLists.txt | 5 DESTINATION ${INCLUDE_INSTALL_DIR}/Eigen/src/Core COMPONENT Devel
|
/external/llvm/utils/llvm-lit/ |
CMakeLists.txt | 8 DESTINATION bin
|
/packages/apps/Gallery2/jni/filters/ |
geometry.c | 20 __inline__ void flipVertical(char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){ 30 memcpy(destination + temp - i, source + i, bytes_to_copy); 34 __inline__ void flipHorizontal(char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){ 46 memcpy(destination + temp - j, source + i + j, cpy_bytes); 51 __inline__ void flip_fun(int flip, char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){ 58 flipVertical(temp, dstWidth, dstHeight, destination, dstWidth, dstHeight); 63 flipHorizontal(source, srcWidth, srcHeight, destination, dstWidth, dstHeight); 67 flipVertical(source, srcWidth, srcHeight, destination, dstWidth, dstHeight); 73 __inline__ void rotate90(char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){ 84 memcpy(destination + column_disp + row_disp , source + j * srcWidth + i, cpy_bytes) 131 char* destination = 0; local 144 char* destination = 0; local 155 char* destination = 0; local 166 char* destination = 0; local [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
StringConcatenate.h | 59 void writeTo(LChar* destination) 61 *destination = m_buffer; 64 void writeTo(UChar* destination) { *destination = m_buffer; } 82 void writeTo(LChar* destination) 84 *destination = m_buffer; 87 void writeTo(UChar* destination) { *destination = m_buffer; } 105 void writeTo(LChar* destination) 108 *destination = static_cast<LChar>(m_buffer) [all...] |
/external/v8/src/ia32/ |
lithium-gap-resolver-ia32.cc | 77 // the same as the destination, the destination is ignored and 99 // Clear this move's destination to indicate a pending move. The actual 100 // destination is saved on the side. 102 LOperand* destination = moves_[index].destination(); local 107 // as this one's destination blocks this one so recursively perform all 111 if (other_move.Blocks(destination) && !other_move.IsPending()) { 117 // not be swapped). Since this move's destination is B and there is 126 // pending, so restore its destination 157 LOperand* destination = move.destination(); local 171 LOperand* destination = moves_[index].destination(); local 219 LOperand* destination = moves_[i].destination(); local 278 LOperand* destination = moves_[index].destination(); local 360 LOperand* destination = moves_[index].destination(); local [all...] |
/external/chromium_org/chrome/browser/resources/print_preview/search/ |
destination_list.css | 5 .destination-list > header { 11 .destination-list .title { 18 .destination-list .action-link { 22 .destination-list > ul { 28 .destination-list .throbber-container { 35 .destination-list .no-destinations-message { 42 .destination-list > footer { 47 .destination-list .total {
|
destination_list_item.js | 9 * Component that renders a destination item in a destination list. 12 * @param {!print_preview.Destination} destination Destination data object to 17 function DestinationListItem(eventTarget, destination) { 28 * Destination that the list item renders. 29 * @type {!print_preview.Destination} 32 this.destination_ = destination; 36 * render the FedEx Office print destination [all...] |
/external/clang/tools/clang-format/ |
CMakeLists.txt | 15 install(TARGETS clang-format RUNTIME DESTINATION bin) 16 install(PROGRAMS git-clang-format DESTINATION bin)
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
GraphicsContext3DImagePacking.cpp | 257 template<> void unpack<GraphicsContext3D::DataFormatRGB8, uint8_t, uint8_t>(const uint8_t* source, uint8_t* destination, unsigned pixelsPerRow) 260 destination[0] = source[0]; 261 destination[1] = source[1]; 262 destination[2] = source[2]; 263 destination[3] = 0xFF; 265 destination += 4; 269 template<> void unpack<GraphicsContext3D::DataFormatBGR8, uint8_t, uint8_t>(const uint8_t* source, uint8_t* destination, unsigned pixelsPerRow) 272 destination[0] = source[2]; 273 destination[1] = source[1]; 274 destination[2] = source[0] [all...] |
/external/iptables/extensions/ |
libipt_DNAT.man | 8 chains. It specifies that the destination address of the packet 13 \fB\-\-to\-destination\fP [\fIipaddr\fP[\fB\-\fP\fIipaddr\fP]][\fB:\fP\fIport\fP[\fB\-\fP\fIport\fP]] 14 which can specify a single new destination IP address, an inclusive 20 If no port range is specified, then the destination port will never be 21 modified. If no IP address is specified then only the destination port 24 In Kernels up to 2.6.10 you can add several \-\-to\-destination options. For 25 those kernels, if you specify more than one destination address, either via an 26 address range or multiple \-\-to\-destination options, a simple round-robin (one 37 Gives a client the same source-/destination-address for each connection.
|
/external/chromium_org/tools/gyp/test/generator-output/copies/ |
copies.gyp | 19 'destination': 'copies-out', 31 'destination': '<(PRODUCT_DIR)/copies-out', 44 'destination': '<(PRODUCT_DIR)/copies-null',
|
/external/chromium_org/v8/src/arm/ |
lithium-gap-resolver-arm.cc | 77 // the same as the destination, the destination is ignored and 98 // its destination. All other moves from the spilled source have been 106 // Clear this move's destination to indicate a pending move. The actual 107 // destination is saved in a stack allocated local. Multiple moves can 110 LOperand* destination = moves_[index].destination(); local 115 // as this one's destination blocks this one so recursively perform all 119 if (other_move.Blocks(destination) && !other_move.IsPending()) { 128 // pending, so restore its destination 150 LOperand* destination = moves_[i].destination(); local 209 LOperand* destination = moves_[index].destination(); local [all...] |
/external/chromium_org/v8/src/mips/ |
lithium-gap-resolver-mips.cc | 78 // the same as the destination, the destination is ignored and 99 // its destination. All other moves from the spilled source have been 107 // Clear this move's destination to indicate a pending move. The actual 108 // destination is saved in a stack allocated local. Multiple moves can 111 LOperand* destination = moves_[index].destination(); local 116 // as this one's destination blocks this one so recursively perform all 120 if (other_move.Blocks(destination) && !other_move.IsPending()) { 129 // pending, so restore its destination 151 LOperand* destination = moves_[i].destination(); local 212 LOperand* destination = moves_[index].destination(); local [all...] |
/external/chromium_org/v8/src/x64/ |
lithium-gap-resolver-x64.cc | 72 // the same as the destination, the destination is ignored and 94 // Clear this move's destination to indicate a pending move. The actual 95 // destination is saved in a stack-allocated local. Recursion may allow 98 LOperand* destination = moves_[index].destination(); local 103 // as this one's destination blocks this one so recursively perform all 107 if (other_move.Blocks(destination) && !other_move.IsPending()) { 113 // not be swapped). Since this move's destination is B and there is 122 // pending, so restore its destination 153 LOperand* destination = moves_[i].destination(); local 167 LOperand* destination = moves_[index].destination(); local 257 LOperand* destination = moves_[index].destination(); local [all...] |
/external/v8/src/arm/ |
lithium-gap-resolver-arm.cc | 77 // the same as the destination, the destination is ignored and 98 // its destination. All other moves from the spilled source have been 106 // Clear this move's destination to indicate a pending move. The actual 107 // destination is saved in a stack allocated local. Multiple moves can 110 LOperand* destination = moves_[index].destination(); local 115 // as this one's destination blocks this one so recursively perform all 119 if (other_move.Blocks(destination) && !other_move.IsPending()) { 128 // pending, so restore its destination 150 LOperand* destination = moves_[i].destination(); local 209 LOperand* destination = moves_[index].destination(); local [all...] |
/external/v8/src/mips/ |
lithium-gap-resolver-mips.cc | 78 // the same as the destination, the destination is ignored and 99 // its destination. All other moves from the spilled source have been 107 // Clear this move's destination to indicate a pending move. The actual 108 // destination is saved in a stack allocated local. Multiple moves can 111 LOperand* destination = moves_[index].destination(); local 116 // as this one's destination blocks this one so recursively perform all 120 if (other_move.Blocks(destination) && !other_move.IsPending()) { 129 // pending, so restore its destination 151 LOperand* destination = moves_[i].destination(); local 212 LOperand* destination = moves_[index].destination(); local [all...] |