Lines Matching refs:destination

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.
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 collapsed
122 * Gets estimated height of the destination list for the given number of
124 * @param {number} numItems Number of items to render in the destination
126 * @return {number} Height (in pixels) of the destination list.
131 this.getChildElement('.destination-list > header').offsetHeight;
144 * @param {number} size Size of list when destination list is in collapsed
152 // at least one print destination.
161 'destination-list-template'));
184 * Updates the destinations to render in the destination list.
226 setIsVisible(this.getChildElement('.destination-list > footer'), false);
232 setIsVisible(this.getChildElement('.destination-list > footer'), true);
239 * @param {!print_preview.Destination} destination Destination to render.
242 renderListItemInternal: function(destination) {
244 this.eventTarget_, destination, this.query_);
246 listItem.render(this.getChildElement('.destination-list > ul'));
251 * each render, all old destination items are first removed.
260 var filteredDests = this.destinations_.filter(function(destination) {
261 return destination.matches(this.query_);