Home
last modified time | relevance | path

Searched refs:destinations_ (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/chrome/browser/resources/print_preview/search/
Ddestination_list.js49 this.destinations_ = []; property in anonymousFunctionda9c2f090100.DestinationList
118 return this.destinations_.length;
128 numItems = Math.min(numItems, this.destinations_.length);
148 size = Math.max(1, Math.min(size, this.destinations_.length));
149 if (size == 1 && this.destinations_.length > 1) {
189 this.destinations_ = destinations;
251 this.destinations_.forEach(function(destination) {
/external/chromium_org/chrome/browser/resources/print_preview/data/
Ddestination_store.js47 this.destinations_ = []; property in anonymousFunctiona35a333e0100.DestinationStore
218 return this.destinations_.slice(0);
345 return this.destinations_.every(function(dest) {
533 this.destinations_.push(destination);
587 this.destinations_ = []; property
668 assert(this.destinations_.length > 0,
671 this.selectDestination(this.destinations_[0]);
721 assert(this.destinations_.length > 0,
724 this.selectDestination(this.destinations_[0]);
783 assert(this.destinations_.length > 0,
[all …]
/external/chromium_org/media/midi/
Dmidi_manager_mac.cc73 destinations_.resize(destination_count); in Initialize()
80 destinations_[i] = destination; in Initialize()
187 if (static_cast<size_t>(port_index) >= destinations_.size()) in SendMIDIData()
190 MIDIEndpointRef destination = destinations_[port_index]; in SendMIDIData()
Dmidi_manager_mac.h70 std::vector<MIDIEndpointRef> destinations_; variable