HomeSort by relevance Sort by last modified time
    Searched defs:source_ (Results 1 - 25 of 28) sorted by null

1 2

  /external/libchrome/base/power_monitor/
power_monitor.h 48 scoped_ptr<PowerMonitorSource> source_; member in class:base::PowerMonitor
  /external/opencv3/modules/cudacodec/src/
video_source.hpp 88 Ptr<RawVideoSource> source_; member in class:cv::cudacodec::detail::RawVideoSourceWrapper
  /external/v8/src/
background-parsing-task.h 54 StreamedSource* source_; // Not owned. member in class:v8::internal::BackgroundParsingTask
objects.cc 16743 Handle<String> source_; member in class:v8::internal::StringSharedKey
    [all...]
  /external/webrtc/webrtc/base/
macasyncsocket.h 33 bool valid() const { return source_ != NULL; }
86 CFRunLoopSourceRef source_; member in class:rtc::MacAsyncSocket
macasyncsocket.cc 36 source_(NULL),
255 if (source_ != NULL) {
256 CFRunLoopSourceInvalidate(source_);
257 CFRelease(source_);
259 source_ = NULL;
325 source_(NULL),
371 source_ = CFSocketCreateRunLoopSource(kCFAllocatorDefault, socket_, 1);
372 res = (source_ != NULL);
378 CFRunLoopAddSource(CFRunLoopGetCurrent(), source_, kCFRunLoopCommonModes); local
  /cts/tests/tests/media/libndkaudio/
AudioPlayer.h 45 return source_;
63 AudioSource* source_; member in class:ndkaudio::AudioPlayer
  /external/webrtc/talk/app/webrtc/
remoteaudiosource.cc 43 explicit MessageHandler(RemoteAudioSource* source) : source_(source) {}
49 source_->OnMessage(msg);
53 const rtc::scoped_refptr<RemoteAudioSource> source_; member in class:webrtc::RemoteAudioSource::MessageHandler
59 explicit Sink(RemoteAudioSource* source) : source_(source) {}
60 ~Sink() override { source_->OnAudioProviderGone(); }
64 if (source_)
65 source_->OnData(audio);
68 const rtc::scoped_refptr<RemoteAudioSource> source_; member in class:webrtc::RemoteAudioSource::Sink
videosource_unittest.cc 115 source_(source) {
118 state_ = source_->state();
124 rtc::scoped_refptr<VideoSourceInterface> source_; member in class:StateObserver
147 source_ =
151 ASSERT_TRUE(source_.get() != NULL);
152 EXPECT_EQ(capturer_, source_->GetVideoCapturer());
154 state_observer_.reset(new StateObserver(source_));
155 source_->RegisterObserver(state_observer_.get());
156 source_->AddSink(&renderer_);
164 rtc::scoped_refptr<VideoSource> source_; member in class:VideoSourceTest
    [all...]
  /external/webrtc/talk/session/media/
currentspeakermonitor_unittest.cc 49 monitor_ = new CurrentSpeakerMonitor(&source_);
64 source_.SignalAudioMonitor(&source_, info);
68 AudioSourceContext source_; member in class:cricket::CurrentSpeakerMonitorTest
  /art/compiler/
oat_writer.cc 95 : type_(kZipEntry), source_(zip_entry) {
96 DCHECK(source_ != nullptr);
100 : type_(kRawFile), source_(raw_file) {
101 DCHECK(source_ != nullptr);
105 : type_(kRawData), source_(dex_file) {
106 DCHECK(source_ != nullptr);
115 DCHECK(source_ != nullptr);
116 return static_cast<ZipEntry*>(const_cast<void*>(source_));
121 DCHECK(source_ != nullptr);
122 return static_cast<File*>(const_cast<void*>(source_));
145 const void* source_; member in class:art::OatWriter::DexFileSource
    [all...]
  /external/libchrome/base/containers/
stack_container.h 78 : std::allocator<T>(), source_(rhs.source_) {
92 : source_(NULL) {
99 StackAllocator() : source_(NULL) {
102 explicit StackAllocator(Source* source) : source_(source) {
109 if (source_ != NULL && !source_->used_stack_buffer_
111 source_->used_stack_buffer_ = true;
112 return source_->stack_buffer();
121 if (source_ != NULL && p == source_->stack_buffer()
128 Source* source_; member in class:base::StackAllocator
    [all...]
  /external/v8/src/parsing/
scanner-character-streams.h 177 Handle<ExternalTwoByteString> source_; member in class:v8::internal::ExternalTwoByteStringUtf16CharacterStream
json-parser.h 36 : source_(source),
43 source_ = String::Flatten(source_);
48 seq_source_ = Handle<SeqOneByteString>::cast(source_);
62 c0_ = source_->Get(position_);
107 if (source_->length() - position_ - 1 > length) {
195 Handle<String> source_; member in class:v8::internal::BASE_EMBEDDED
248 Handle<Script> script(factory->NewScript(source_));
591 String::WriteToFlat(*source_, buffer.start(), beg_pos, position_);
662 // If the sink can contain UC16 characters, or source_ contains onl
    [all...]
scanner.h 467 // Call this after setting source_ to the input.
541 c0_ = source_->Advance();
547 uc32 c1 = source_->Advance();
549 source_->PushBack(c1);
558 source_->PushBack(unibrow::Utf16::TrailSurrogate(c0_));
559 source_->PushBack(unibrow::Utf16::LeadSurrogate(c0_));
561 source_->PushBack(c0_);
674 return static_cast<int>(source_->pos()) - kCharacterLookaheadBufferSize;
724 // - the source_ character stream points to the beginning of "5678".
739 Utf16CharacterStream* source_; member in class:v8::internal::Scanner
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
bytestream.h 340 ByteSource* source_; member in class:google::protobuf::strings::LimitByteSource
  /external/libchrome/base/message_loop/
message_pump_glib_unittest.cc 31 source_ = static_cast<Source*>(g_source_new(&SourceFuncs, sizeof(Source)));
32 source_->injector = this;
33 g_source_attach(source_, NULL);
34 g_source_set_can_recurse(source_, TRUE);
38 g_source_destroy(source_);
39 g_source_unref(source_);
129 Source* source_; member in class:base::__anon15159::EventInjector
  /external/webrtc/webrtc/modules/audio_processing/intelligibility/
intelligibility_enhancer.h 95 AudioSource source_; member in class:webrtc::IntelligibilityEnhancer::TransformCallback
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
packet_sender.h 76 virtual VideoSource* source() const { return source_; }
93 VideoSource* source_; member in class:webrtc::testing::bwe::VideoSender
  /external/v8/test/cctest/interpreter/
test-interpreter.cc 64 source_(source),
120 const char* source_; member in class:v8::internal::interpreter::InterpreterTester
127 if (source_) {
128 CompileRun(source_);
    [all...]
  /art/runtime/gc/space/
image_space.cc 618 : source_(source),
623 return address - source_ < length_;
638 return dest_ - source_;
642 return source_;
654 const uintptr_t source_; member in class:art::gc::space::RelocationRange
    [all...]
  /external/v8/src/compiler/
instruction.h 568 : source_(source), destination_(destination) {
572 const InstructionOperand& source() const { return source_; }
573 InstructionOperand& source() { return source_; }
574 void set_source(const InstructionOperand& operand) { source_ = operand; }
585 return destination_.IsInvalid() && !source_.IsInvalid();
598 return IsEliminated() || source_.EqualsCanonicalized(destination_);
602 void Eliminate() { source_ = destination_ = InstructionOperand(); }
604 DCHECK_IMPLIES(source_.IsInvalid(), destination_.IsInvalid());
605 return source_.IsInvalid();
612 InstructionOperand source_; member in class:v8::internal::compiler::final
    [all...]
  /external/v8/src/crankshaft/
lithium.h 272 : source_(source), destination_(destination) {
275 LOperand* source() const { return source_; }
276 void set_source(LOperand* operand) { source_ = operand; }
284 return destination_ == NULL && source_ != NULL;
295 return IsEliminated() || source_->Equals(destination_) || IsIgnored() ||
304 void Eliminate() { source_ = destination_ = NULL; }
306 DCHECK(source_ != NULL || destination_ == NULL);
307 return source_ == NULL;
311 LOperand* source_; member in class:v8::internal::BASE_EMBEDDED
  /external/v8/src/snapshot/
serialize.h 356 source_(data->Payload()),
441 SnapshotByteSource source_; member in class:v8::internal::Deserializer
677 return source_;
684 : Serializer(isolate, sink), source_(source) {
704 String* source_; member in class:v8::internal::CodeSerializer
  /external/v8/include/
v8.h 4858 ExternalOneByteStringResourceImpl source_; member in class:v8::Extension
    [all...]

Completed in 353 milliseconds

1 2