Searched refs:base_ (Results 1 - 25 of 68) sorted by relevance

123

/external/webrtc/webrtc/voice_engine/
H A Dvoe_base_unittest.cc26 EXPECT_EQ(0, base_->Init(&adm_, audioproc));
27 EXPECT_EQ(audioproc, base_->audio_processing());
28 EXPECT_EQ(0, base_->LastError());
32 EXPECT_EQ(nullptr, base_->audio_processing());
33 EXPECT_EQ(0, base_->Init(&adm_, nullptr));
34 EXPECT_NE(nullptr, base_->audio_processing());
35 EXPECT_EQ(0, base_->LastError());
39 int channelID = base_->CreateChannel();
44 EXPECT_EQ(0, base_->Init(&adm_, nullptr));
45 int channelID = base_
[all...]
H A Dvoice_engine_fixture.cc17 base_(VoEBase::GetInterface(voe_)),
19 EXPECT_NE(nullptr, base_);
21 EXPECT_EQ(0, base_->RegisterVoiceEngineObserver(observer_));
26 EXPECT_EQ(0, base_->DeRegisterVoiceEngineObserver());
27 EXPECT_EQ(0, base_->Terminate());
28 EXPECT_EQ(1, base_->Release());
H A Dvoe_audio_processing_unittest.cc24 base_(VoEBase::GetInterface(voe_)),
28 base_->Terminate();
30 base_->Release();
35 VoEBase* base_; member in class:webrtc::voe::__anon31202::VoEAudioProcessingTest
48 ASSERT_EQ(0, base_->Init());
H A Dvoe_network_unittest.cc35 EXPECT_EQ(0, base_->Init(&adm_, nullptr));
36 int channelID = base_->CreateChannel();
50 EXPECT_EQ(0, base_->Init(&adm_, nullptr));
57 EXPECT_EQ(0, base_->Init(&adm_, nullptr));
62 EXPECT_EQ(0, base_->Init(&adm_, nullptr));
63 int channelID = base_->CreateChannel();
75 EXPECT_EQ(0, base_->Init(&adm_, nullptr));
81 EXPECT_EQ(0, base_->Init(&adm_, nullptr));
82 int channelID = base_->CreateChannel();
104 EXPECT_EQ(VE_SOCKET_TRANSPORT_MODULE_ERROR, base_
[all...]
H A Dvoe_codec_unittest.cc28 base_(VoEBase::GetInterface(voe_)),
37 base_->DeleteChannel(channel_);
38 base_->Terminate();
39 base_->Release();
47 ASSERT_TRUE(base_ != NULL);
50 ASSERT_EQ(0, base_->Init(adm_.get()));
51 channel_ = base_->CreateChannel();
91 VoEBase* base_; member in class:webrtc::voe::__anon31203::VoECodecTest
H A Dvoice_engine_fixture.h26 VoEBase* base_; member in class:webrtc::VoiceEngineFixture
/external/google-breakpad/src/processor/
H A Dstatic_contained_range_map-inl.h48 : base_(*(reinterpret_cast<const AddressType*>(base))),
49 entry_size_(*(reinterpret_cast<const uint32_t*>(base + sizeof(base_)))),
51 base + sizeof(base_) + sizeof(entry_size_))),
52 map_(base + sizeof(base_) + sizeof(entry_size_) + entry_size_) {
78 if (address < child_map.base_)
H A Dstatic_contained_range_map.h52 StaticContainedRangeMap(): base_(), entry_size_(), entry_ptr_(), map_() { }
75 // base_ field is meaningless, and the fact that it has no parent and thus
76 // no key is unimportant. For this reason, the base_ field should only be
78 AddressType base_; member in class:google_breakpad::StaticContainedRangeMap
H A Dstatic_map_iterator-inl.h47 index_(index), base_(base) {
50 num_nodes_ = *(reinterpret_cast<const int32_t*>(base_));
51 offsets_ = reinterpret_cast<const uint32_t*>(base_ + sizeof(num_nodes_));
53 base_ + (1 + num_nodes_) * sizeof(num_nodes_));
120 return base_ + offsets_[index_];
126 return base_ == x.base_ && index_ == x.index_;
132 // Only need to compare base_ and index_.
134 return base_ != x.base_ || index
[all...]
H A Dstatic_map_iterator.h55 StaticMapIterator(): index_(-1), base_(NULL) { }
96 const char* base_; member in class:google_breakpad::StaticMapIterator
103 // address_of_i-th_node_value = base_ + offsets_[i]
H A Dcontained_range_map.h78 ContainedRangeMap() : base_(), entry_(), map_(NULL) {}
123 : base_(base), entry_(entry), map_(map) {}
129 // base_ field is meaningless, and the fact that it has no parent and thus
130 // no key is unimportant. For this reason, the base_ field should only be
132 const AddressType base_; member in class:google_breakpad::ContainedRangeMap
H A Drange_map.h105 : base_(base), entry_(entry) {}
107 AddressType base() const { return base_; }
113 const AddressType base_; member in class:google_breakpad::RangeMap::Range
H A Dcontained_range_map-inl.h80 base >= iterator_base->second->base_) {
87 if (iterator_base->second->base_ == base && iterator_base->first == high) {
103 high >= iterator_high->second->base_;
107 if ((iterator_base != iterator_end && base > iterator_base->second->base_) ||
168 if (iterator == map_->end() || address < iterator->second->base_)
/external/tensorflow/tensorflow/contrib/coder/kernels/
H A Drange_coder.cc78 base_ += a; // May overflow.
80 const bool base_overflow = (base_ < a);
163 if (base_ + size_minus1_ < base_) {
166 DCHECK_NE(((base_ - a) + size) >> 32, 0);
191 DCHECK_EQ(base_ >> 16, 0xFFFF);
192 base_ <<= 16;
227 DCHECK_NE((static_cast<uint64>(base_ - a) + a) >> 32, 0);
233 DCHECK_EQ(static_cast<uint64>(base_ + size_minus1_) >> 32, 0);
244 const uint32 top = base_ >> 1
[all...]
H A Drange_coder.h57 uint32 base_ = 0; member in class:tensorflow::RangeEncoder
97 uint32 base_ = 0; member in class:tensorflow::RangeDecoder
/external/google-breakpad/src/common/
H A Dtest_assembler.cc127 Label::Binding::Binding() : base_(this), addend_(), reference_count_(1) { }
130 : base_(NULL), addend_(addend), reference_count_(1) { }
134 if (base_ && base_ != this && base_->Release())
135 delete base_;
139 if (!base_ && !binding) {
142 } else if (!base_) {
163 if (base_ != this) {
169 base_
[all...]
/external/tensorflow/tensorflow/core/lib/io/
H A Dproto_encode_helper.h33 : base_(buf), p_(buf), limit_(base_ + max_size) {}
40 const char* data() const { return base_; }
41 size_t size() const { return p_ - base_; }
91 char* base_; member in class:tensorflow::io::ProtoEncodeHelper
/external/webrtc/webrtc/tools/agc/
H A Dagc_harness.cc90 base_(VoEBase::GetInterface(voe_)),
110 RTC_CHECK_EQ(0, base_->Init(nullptr, audioproc));
118 channel_ = base_->CreateChannel();
149 RTC_CHECK_EQ(0, base_->DeleteChannel(channel_));
150 RTC_CHECK_EQ(0, base_->Terminate());
152 base_->Release();
185 void StartSending() { RTC_CHECK_EQ(0, base_->StartSend(channel_)); }
201 RTC_CHECK_EQ(0, base_->StartReceive(channel_));
202 RTC_CHECK_EQ(0, base_->StartPlayout(channel_));
208 RTC_CHECK_EQ(0, base_
214 VoEBase* base_; member in class:webrtc::__anon31159::AgcVoiceEngine
[all...]
/external/webrtc/talk/media/webrtc/
H A Dwebrtcvoe.h93 base_(engine_), codec_(engine_),
106 base_(base),
116 webrtc::VoEBase* base() const { return base_.get(); }
122 int error() { return base_->LastError(); }
127 scoped_voe_ptr<webrtc::VoEBase> base_; member in class:cricket::VoEWrapper
/external/webrtc/webrtc/base/
H A Dhttpserver.cc133 base_.notify(this);
134 base_.attach(stream);
136 if (base_.mode() != HM_CONNECT)
137 base_.recv(&current_->request);
142 base_.notify(NULL);
143 base_.abort(HE_DISCONNECTED);
144 return base_.detach();
159 base_.send(&current_->response);
164 bool request_in_progress = (HM_SEND == base_.mode()) || (NULL == current_);
205 base_
[all...]
H A Dhttpbase.cc244 DocumentStream(HttpBase* base) : base_(base), error_(HE_DEFAULT) { }
247 if (NULL == base_)
249 if (HM_RECV == base_->mode_)
258 if (!base_) {
263 if (HM_RECV != base_->mode_) {
279 base_->data_->document.swap(stream);
287 bool complete = base_->DoReceiveLoop(&http_error);
290 base_->data_->document.swap(stream);
323 if (base_) {
334 if (!base_ || HM_REC
355 HttpBase* base_; member in class:rtc::HttpBase::DocumentStream
[all...]
/external/libmojo/mojo/edk/embedder/
H A Dplatform_shared_buffer.h157 base_(nullptr),
165 void* base_; member in class:mojo::edk::PlatformSharedBufferMapping
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-param-util.h202 : base_(base), value_(value), index_(index), step_(step) {}
206 return base_;
230 base_(other.base_), value_(other.value_), index_(other.index_),
236 const ParamGeneratorInterface<T>* const base_; member in class:testing::internal::RangeGenerator::Iterator
289 : base_(base), iterator_(iterator) {}
293 return base_;
329 base_(other.base_),
332 const ParamGeneratorInterface<T>* const base_; member in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-param-util.h202 : base_(base), value_(value), index_(index), step_(step) {}
206 return base_;
230 base_(other.base_), value_(other.value_), index_(other.index_),
236 const ParamGeneratorInterface<T>* const base_; member in class:testing::internal::RangeGenerator::Iterator
289 : base_(base), iterator_(iterator) {}
293 return base_;
329 base_(other.base_),
332 const ParamGeneratorInterface<T>* const base_; member in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
[all...]
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-param-util.h202 : base_(base), value_(value), index_(index), step_(step) {}
206 return base_;
230 base_(other.base_), value_(other.value_), index_(other.index_),
236 const ParamGeneratorInterface<T>* const base_; member in class:testing::internal::RangeGenerator::Iterator
289 : base_(base), iterator_(iterator) {}
293 return base_;
329 base_(other.base_),
332 const ParamGeneratorInterface<T>* const base_; member in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
[all...]

Completed in 579 milliseconds

123