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

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/resources/print_preview/search/
destination_search.css 5 #destination-search {
9 #destination-search.transparent {
15 #destination-search .page {
19 #destination-search .user-info {
31 [dir='rtl'] #destination-search .user-info {
36 #destination-search > .page > .close-button {
40 #destination-search .search-box {
45 #destination-search .lists {
50 #destination-search .lists > * {
55 #destination-search .cloudprint-promo
    [all...]
destination_list.html 1 <div id="destination-list-template" class="destination-list" hidden>
destination_list_item.css 5 .destination-list-item {
14 .destination-list-item:hover {
18 .destination-list-item.stale {
22 .destination-list-item-icon {
31 .destination-list-item-name {
35 .destination-list-item .offline-status {
destination_list.js 12 * @param {!cr.EventTarget} eventTarget Event target to pass to destination
14 * @param {string} title Title of the destination list.
24 * Event target to pass to destination items for dispatching SELECT events.
31 * Title of the destination list.
45 * Backing store for the destination list.
46 * @type {!Array.<print_preview.Destination>}
59 * Whether the destination list is fully expanded.
74 * Enumeration of event types dispatched by the destination list.
92 * Height of a destination list item in pixels.
109 * @return {number} Size of list when destination list is in collapse
    [all...]
  /external/chromium_org/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
418 LOperand* destination = moves_[index].destination(); local
    [all...]
  /external/clang/tools/clang-check/
CMakeLists.txt 21 RUNTIME DESTINATION bin)
  /external/eigen/unsupported/Eigen/
CMakeLists.txt 8 DESTINATION ${INCLUDE_INSTALL_DIR}/unsupported/Eigen COMPONENT Devel
  /external/nist-sip/java/gov/nist/javax/sip/stack/
DefaultMessageLogFactory.java 16 String destination, String timeStamp, boolean isSender,
18 return new MessageLog(message, source, destination, timeStamp,
23 String destination, long timeStamp, boolean isSender,
25 return new MessageLog(message, source, destination, timeStamp,
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
package.html 6 to external speakers and destination devices.</p>
  /external/chromium_org/tools/gyp/test/copies/src/
copies-samedir.gyp 15 'destination': '<(PRODUCT_DIR)/copies-out-samedir',
28 'destination': '<(PRODUCT_DIR)/copies-out-samedir',
  /external/chromium_org/tools/gyp/test/generator-output/copies/subdir/
subdir.gyp 12 'destination': 'copies-out',
24 'destination': '<(PRODUCT_DIR)/copies-out',
  /packages/apps/Gallery2/jni/filters/
gradient.c 22 char* destination = 0; local
33 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
40 int r = destination[RED];
42 destination[RED] = r;
46 int g = destination[GREEN];
48 destination[GREEN] = g;
52 int b = destination[BLUE];
54 destination[BLUE] = b;
saturated.c 21 char* destination = 0; local
22 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
36 int r = destination[RED];
37 int g = destination[GREEN];
38 int b = destination[BLUE];
48 destination[RED] = CLAMP(Rc);
49 destination[GREEN] = CLAMP(Gc);
50 destination[BLUE] = CLAMP(Bc);
vibrance.c 22 char* destination = 0; local
23 AndroidBitmap_lockPixels(env, bitmap, (void**) &destination);
38 int r = destination[RED];
39 int g = destination[GREEN];
40 int b = destination[BLUE];
57 destination[RED] = CLAMP(Rc);
58 destination[GREEN] = CLAMP(Gc);
59 destination[BLUE] = CLAMP(Bc);
  /external/chromium_org/ppapi/thunk/
ppb_video_destination_private_thunk.cc 33 int32_t Open(PP_Resource destination,
36 EnterResource<PPB_VideoDestination_Private_API> enter(destination,
43 int32_t PutFrame(PP_Resource destination,
45 EnterResource<PPB_VideoDestination_Private_API> enter(destination, true);
51 void Close(PP_Resource destination) {
52 EnterResource<PPB_VideoDestination_Private_API> enter(destination, true);
  /external/clang/test/Sema/
warn-strlcpycat-size.c 22 strlcpy(s1, s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
23 strlcpy(s1, s3, strlen(s3)+1); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
24 strlcat(s2, s3, sizeof(s3)); // expected-warning {{size argument in 'strlcat' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
25 strlcpy(s4.f1, s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
26 strlcpy((*s5)->f2[x], s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkMatrixParts.cpp 161 SK_MEMBER(destination, Rect),
170 source(NULL), destination(NULL) {
177 if (source == NULL || destination == NULL)
180 temp.setRectToRect(source->fRect, destination->fRect,
198 if (destination) {
199 SkDebugf("%*s<destination>\n", SkDisplayList::fIndent, "");
201 destination->dump(maker);
203 SkDebugf("%*s</destination>\n", SkDisplayList::fIndent, "");
214 SkASSERT(destination == NULL);
215 return getMember("destination");
    [all...]
  /external/skia/src/animator/
SkMatrixParts.cpp 161 SK_MEMBER(destination, Rect),
170 source(NULL), destination(NULL) {
177 if (source == NULL || destination == NULL)
180 temp.setRectToRect(source->fRect, destination->fRect,
198 if (destination) {
199 SkDebugf("%*s<destination>\n", SkDisplayList::fIndent, "");
201 destination->dump(maker);
203 SkDebugf("%*s</destination>\n", SkDisplayList::fIndent, "");
214 SkASSERT(destination == NULL);
215 return getMember("destination");
    [all...]
  /external/chromium_org/ppapi/cpp/private/
video_destination_private.h 17 /// for a video destination resource, which sends video frames to a MediaStream
26 /// creating video destination resources and using them to send video frames to
46 /// @param[in] resource A PP_Resource corresponding to a video destination.
49 /// Opens a video destination for putting frames.
57 /// Returns PP_ERROR_BADRESOURCE if destination isn't a valid video
58 /// destination.
59 /// Returns PP_ERROR_INPROGRESS if destination is already open.
64 /// Puts a frame to the video destination.
72 /// frame to send to the destination.
75 /// Returns PP_ERROR_BADRESOURCE if destination isn't a valid vide
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
HexNumber.h 44 inline void appendByteAsHex(unsigned char byte, T& destination, HexConversionMode mode = Uppercase)
47 destination.append(hexDigits[byte >> 4]);
48 destination.append(hexDigits[byte & 0xF]);
52 inline void placeByteAsHexCompressIfPossible(unsigned char byte, T& destination, unsigned& index, HexConversionMode mode = Uppercase)
56 destination[index++] = hexDigits[byte >> 4];
57 destination[index++] = hexDigits[byte & 0xF];
61 inline void placeByteAsHex(unsigned char byte, T& destination, HexConversionMode mode = Uppercase)
64 *destination++ = hexDigits[byte >> 4];
65 *destination++ = hexDigits[byte & 0xF];
69 inline void appendUnsignedAsHex(unsigned number, T& destination, HexConversionMode mode = Uppercase
    [all...]
  /external/chromium_org/content/browser/renderer_host/media/
audio_mirroring_manager_unittest.cc 123 MockMirroringDestination* const destination = local
125 StopMirroringTo(kRenderProcessId, kRenderViewId, destination);
129 MockMirroringDestination* const destination = local
131 StopMirroringTo(kRenderProcessId, kRenderViewId, destination);
140 MockMirroringDestination* const destination = local
144 StopMirroringTo(kRenderProcessId, kRenderViewId, destination);
150 MockMirroringDestination* const destination = local
152 StopMirroringTo(kRenderProcessId, kRenderViewId, destination);
157 MockMirroringDestination* const destination = local
161 StopMirroringTo(kRenderProcessId, kRenderViewId, destination);
166 MockMirroringDestination* const destination = local
176 MockMirroringDestination* const destination = local
189 MockMirroringDestination* const destination = local
206 MockMirroringDestination* const destination = local
    [all...]
  /external/chromium_org/third_party/skia/src/opts/
SkBlitRect_opts_SSE2.cpp 17 static void BlitRect32_OpaqueNarrow_SSE2(SkPMColor* SK_RESTRICT destination,
25 SkPMColor* dst = destination;
41 destination = (uint32_t*)((char*)destination + rowBytes);
51 static void BlitRect32_OpaqueWide_SSE2(SkPMColor* SK_RESTRICT destination,
62 SkPMColor* dst = destination;
110 destination = (uint32_t*)((char*)destination + rowBytes);
114 void ColorRect32_SSE2(SkPMColor* destination,
124 BlitRect32_OpaqueNarrow_SSE2(destination, width, height
    [all...]
  /external/iptables/extensions/
libipt_REDIRECT.man 9 destination IP to the primary address of the incoming interface
13 This specifies a destination port or range of ports to use: without
14 this, the destination port is never altered. This is only valid
libxt_udp.man 10 [\fB!\fP] \fB\-\-destination\-port\fP,\fB\-\-dport\fP \fIport\fP[\fB:\fP\fIport\fP]
11 Destination port or port range specification.
13 \fB\-\-destination\-port\fP
  /external/skia/src/opts/
SkBlitRect_opts_SSE2.cpp 17 static void BlitRect32_OpaqueNarrow_SSE2(SkPMColor* SK_RESTRICT destination,
25 SkPMColor* dst = destination;
41 destination = (uint32_t*)((char*)destination + rowBytes);
51 static void BlitRect32_OpaqueWide_SSE2(SkPMColor* SK_RESTRICT destination,
62 SkPMColor* dst = destination;
110 destination = (uint32_t*)((char*)destination + rowBytes);
114 void ColorRect32_SSE2(SkPMColor* destination,
124 BlitRect32_OpaqueNarrow_SSE2(destination, width, height
    [all...]

Completed in 1331 milliseconds

1 2 34 5 6 7 8 91011>>