Searched defs:destination_ (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/content/browser/media/capture/
H A Dweb_contents_audio_muter.h34 const scoped_refptr<MuteDestination> destination_; member in class:content::WebContentsAudioMuter
H A Dweb_contents_audio_input_stream_unittest.cc184 destination_(NULL),
197 EXPECT_FALSE(destination_);
232 .WillOnce(SaveArg<0>(&destination_))
237 &destination_,
269 // causes our mock to set |destination_|. Block until that has happened.
275 ASSERT_TRUE(destination_);
284 AudioOutputStream* const out = destination_->AddInput(params);
314 .WillOnce(SaveArg<0>(&destination_))
387 AudioMirroringManager::MirroringDestination* destination_; member in class:content::WebContentsAudioInputStreamTest
/external/chromium_org/net/tools/gdig/
H A Dfile_net_log.h29 FILE* const destination_; member in class:net::FileNetLogObserver
/external/chromium_org/base/
H A Dtask_runner.cc27 TaskRunner* destination_; member in class:base::__anon2503::PostTaskAndReplyTaskRunner
31 TaskRunner* destination) : destination_(destination) {
32 DCHECK(destination_);
38 return destination_->PostTask(from_here, task);
/external/chromium_org/net/socket/
H A Dsocks_client_socket_pool.h36 const HostResolver::RequestInfo& destination() const { return destination_; }
47 HostResolver::RequestInfo destination_; member in class:net::SOCKSSocketParams
H A Dtransport_client_socket_pool.h57 const HostResolver::RequestInfo& destination() const { return destination_; }
71 HostResolver::RequestInfo destination_; member in class:net::TransportSocketParams
/external/chromium_org/chrome/browser/spellchecker/
H A Dspellcheck_message_filter_mac.cc70 content::BrowserMessageFilter* destination_; // ref-counted. member in class:SpellingRequest
84 destination_(destination),
89 destination_->AddRef();
151 destination_->Send(
156 destination_->Release();
/external/chromium_org/content/renderer/media/
H A Dmedia_stream_audio_processor.cc122 destination_(new MediaStreamAudioBus(channels, destination_frames)),
138 DCHECK_EQ(source->channels(), destination_->bus()->channels());
144 source->CopyTo(destination_->bus());
155 if (fifo_->frames() < destination_->bus()->frames())
158 fifo_->Consume(destination_->bus(), 0, destination_->bus()->frames());
163 // The data was already copied to |destination_| in this case.
167 *destination = destination_.get();
174 scoped_ptr<MediaStreamAudioBus> destination_; member in class:content::MediaStreamAudioFifo
/external/chromium_org/media/cast/test/utility/
H A Dudp_proxy.cc554 : udp_proxy_(udp_proxy), destination_(destination) {}
562 const net::IPEndPoint* destination_; // not owned member in class:media::cast::test::PacketSender
646 destination_(destination),
717 BuildPipe(&to_dest_pipe_, new PacketSender(this, &destination_));
726 VLOG(0) << "To:" << destination_.ToString();
751 !(recv_address_ == destination_)) {
752 destination_ = recv_address_;
754 if (recv_address_ == destination_) {
797 net::IPEndPoint destination_; member in class:media::cast::test::UDPProxyImpl
820 udp_proxy_->Send(packet.Pass(), *destination_);
[all...]
/external/chromium_org/v8/src/compiler/
H A Dinstruction.h273 : source_(source), destination_(destination) {}
278 InstructionOperand* destination() const { return destination_; }
279 void set_destination(InstructionOperand* operand) { destination_ = operand; }
283 bool IsPending() const { return destination_ == NULL && source_ != NULL; }
293 return IsEliminated() || source_->Equals(destination_) || IsIgnored() ||
294 (destination_ != NULL && destination_->IsConstant());
298 return destination_ != NULL && destination_->IsIgnored();
302 void Eliminate() { source_ = destination_
310 InstructionOperand* destination_; member in class:v8::internal::compiler::FINAL
[all...]
/external/chromium_org/v8/src/
H A Ddeoptimizer.h34 : destination_(destination), value_(value) { }
36 T destination() const { return destination_; }
40 T destination_; member in class:v8::internal::BASE_EMBEDDED
H A Dlithium.h261 : source_(source), destination_(destination) {
267 LOperand* destination() const { return destination_; }
268 void set_destination(LOperand* operand) { destination_ = operand; }
273 return destination_ == NULL && source_ != NULL;
284 return IsEliminated() || source_->Equals(destination_) || IsIgnored() ||
285 (destination_ != NULL && destination_->IsConstantOperand());
289 return destination_ != NULL && destination_->IsIgnored();
293 void Eliminate() { source_ = destination_
301 LOperand* destination_; member in class:v8::internal::BASE_EMBEDDED
[all...]

Completed in 373 milliseconds