HomeSort by relevance Sort by last modified time
    Searched defs:destination_ (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/content/browser/media/capture/
web_contents_audio_muter.h 34 const scoped_refptr<MuteDestination> destination_; member in class:content::WebContentsAudioMuter
web_contents_audio_input_stream_unittest.cc 184 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/
file_net_log.h 29 FILE* const destination_; member in class:net::FileNetLogObserver
  /external/chromium_org/base/
task_runner.cc 27 TaskRunner* destination_; member in class:base::__anon7128::PostTaskAndReplyTaskRunner
31 TaskRunner* destination) : destination_(destination) {
32 DCHECK(destination_);
38 return destination_->PostTask(from_here, task);
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_message_filter_mac.cc 70 content::BrowserMessageFilter* destination_; // ref-counted. member in class:SpellingRequest
84 destination_(destination),
89 destination_->AddRef();
151 destination_->Send(
156 destination_->Release();
  /external/chromium_org/net/socket/
socks_client_socket_pool.h 36 const HostResolver::RequestInfo& destination() const { return destination_; }
47 HostResolver::RequestInfo destination_; member in class:net::SOCKSSocketParams
transport_client_socket_pool.h 57 const HostResolver::RequestInfo& destination() const { return destination_; }
71 HostResolver::RequestInfo destination_; member in class:net::TransportSocketParams
  /external/chromium_org/content/renderer/media/
media_stream_audio_processor.cc 122 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/
udp_proxy.cc 554 : 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/
instruction.h 273 : 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_ = NULL;
310 InstructionOperand* destination_; member in class:v8::internal::compiler::FINAL
    [all...]
  /external/chromium_org/v8/src/
deoptimizer.h 34 : destination_(destination), value_(value) { }
36 T destination() const { return destination_; }
40 T destination_; member in class:v8::internal::BASE_EMBEDDED
lithium.h 261 : 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_ = NULL;
301 LOperand* destination_; member in class:v8::internal::BASE_EMBEDDED
    [all...]
  /art/compiler/optimizing/
nodes.h 1522 Location destination_; member in class:art::MoveOperands
    [all...]

Completed in 697 milliseconds