Searched refs:store_ (Results 1 - 18 of 18) sorted by relevance

/external/webrtc/webrtc/base/
H A Doptionsfile_unittest.cc47 store_.reset(new OptionsFile(test_file_));
50 rtc::scoped_ptr<OptionsFile> store_; member in class:rtc::OptionsFileTest
58 EXPECT_TRUE(store_->Save());
60 EXPECT_FALSE(store_->GetStringValue(kTestOptionA, &out1));
61 EXPECT_FALSE(store_->GetStringValue(kTestOptionB, &out2));
62 EXPECT_TRUE(store_->SetStringValue(kTestOptionA, kTestString1));
63 EXPECT_TRUE(store_->Save());
64 EXPECT_TRUE(store_->Load());
65 EXPECT_TRUE(store_->SetStringValue(kTestOptionB, kTestString2));
66 EXPECT_TRUE(store_
[all...]
/external/sfntly/cpp/src/sfntly/port/
H A Dmemory_output_stream.cc28 store_.insert(store_.end(), buffer->begin(), buffer->end());
36 store_.insert(store_.end(),
49 store_.insert(store_.end(), buffer + offset, buffer + offset + length);
58 store_.push_back(b);
62 if (store_.empty()) {
65 return &(store_[0]);
69 return store_
[all...]
H A Dmemory_output_stream.h46 std::vector<byte_t> store_; member in class:sfntly::MemoryOutputStream
/external/libbrillo/brillo/
H A Dkey_value_store_unittest.cc28 // Returns the value from |store_| corresponding to |key|, or an empty string
32 if (store_.GetString(key, &value))
37 KeyValueStore store_; // KeyValueStore under test. member in class:brillo::KeyValueStoreTest
48 ASSERT_TRUE(store_.Load(temp_file_));
51 EXPECT_TRUE(store_.GetString("A", &value));
54 ASSERT_TRUE(store_.Save(saved_temp_file_));
61 EXPECT_TRUE(store_.LoadFromString(
63 EXPECT_EQ("A=B\n", store_.SaveToString());
67 EXPECT_TRUE(store_.LoadFromString(""));
68 EXPECT_EQ("", store_
[all...]
H A Dosrelease_reader_unittest.cc27 OsReleaseReader store_; // reader under test. member in class:brillo::OsReleaseReaderTest
31 store_.LoadTestingOnly(temp_dir_.path());
36 store_.LoadTestingOnly(temp_dir_.path());
49 store_.LoadTestingOnly(temp_dir_.path());
52 ASSERT_TRUE(store_.GetString("TEST_KEY", &test_key_value));
55 ASSERT_TRUE(store_.GetString("GREETINGS", &greetings_value));
58 ASSERT_TRUE(store_.GetString("NAME", &name_value));
62 ASSERT_FALSE(store_.GetString("DOES_NOT_EXIST", &nonexistent_value));
83 store_.LoadTestingOnly(temp_dir_.path());
88 ASSERT_TRUE(store_
[all...]
H A Dkey_value_store.cc76 store_[key] = value;
87 for (const auto& key_value : store_)
93 const auto key_value = store_.find(TrimKey(key));
94 if (key_value == store_.end())
101 store_[TrimKey(key)] = value;
124 return GetMapKeysAsVector(store_);
H A Dosrelease_reader.cc21 return store_.GetString(key, value);
30 if (!store_.Load(osrelease)) {
50 store_.SetString(path.BaseName().value(), content);
H A Dosrelease_reader.h41 KeyValueStore store_; member in class:brillo::final
H A Dkey_value_store.h69 std::map<std::string, std::string> store_; member in class:brillo::KeyValueStore
/external/webrtc/talk/app/webrtc/
H A Ddtlsidentitystore_unittest.cc82 store_(new DtlsIdentityStoreImpl(rtc::Thread::Current(),
98 rtc::scoped_ptr<DtlsIdentityStoreImpl> store_; member in class:DtlsIdentityStoreTest
103 EXPECT_TRUE_WAIT(store_->HasFreeIdentityForTesting(rtc::KT_RSA), kTimeoutMs);
105 store_->RequestIdentity(rtc::KT_RSA, observer_.get());
108 EXPECT_TRUE_WAIT(store_->HasFreeIdentityForTesting(rtc::KT_RSA), kTimeoutMs);
113 store_->RequestIdentity(rtc::KT_RSA, observer_.get());
122 store_->RequestIdentity(rtc::KT_ECDSA, observer_.get());
128 store_->RequestIdentity(rtc::KT_ECDSA, observer_.get());
134 EXPECT_FALSE(store_->HasFreeIdentityForTesting(rtc::KT_RSA));
136 store_
[all...]
H A Ddtlsidentitystore.cc61 store_(store),
63 store_->SignalDestroyed.connect(this, &WorkerTask::OnStoreDestroyed);
74 // Posting to |this| avoids touching |store_| on threads other than
96 if (store_) {
97 store_->OnIdentityGenerated(pdata->data()->key_type_,
114 store_ = nullptr;
118 DtlsIdentityStoreImpl* store_; // Only touched on |signaling_thread_|. member in class:webrtc::DtlsIdentityStoreImpl::WorkerTask
H A Dpeerconnectionfactory.cc55 // Passes down the calls to |store_|. See usage in CreatePeerConnection.
60 : store_(store) {
61 RTC_DCHECK(store_);
68 store_->RequestIdentity(key_type, observer);
72 rtc::scoped_refptr<RefCountedDtlsIdentityStore> store_; member in class:webrtc::__anon25919::DtlsIdentityStoreWrapper
/external/v8/src/crankshaft/
H A Dtyping.h48 Store store_; member in class:v8::internal::final
62 store_ = store_.Push();
63 return store_.Top();
65 void ExitEffects() { store_ = store_.Pop(); }
H A Dtyping.cc30 store_(zone),
69 store_.Seq(parameter_index(-1), ObservedOnStack(frame->receiver()));
71 store_.Seq(parameter_index(i), ObservedOnStack(frame->GetParameter(i)));
75 store_.Seq(stack_local_index(i), ObservedOnStack(frame->GetExpression(i)));
81 store_.LookupBounds(parameter_index(-1)).lower);
85 store_.LookupBounds(parameter_index(i)).lower);
93 store_.LookupBounds(stack_local_index(local_index)).lower);
128 store_.Forget(); // Control may transfer here via 'break l'.
163 store_.Seq(then_effects);
233 store_
[all...]
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtp_packet_history.cc33 store_(false),
43 if (store_) {
47 assert(!store_);
57 store_ = true;
62 if (!store_) {
68 store_ = false;
74 return store_;
82 if (!store_) {
135 if (!store_) {
154 if (!store_) {
[all...]
H A Drtp_packet_history.h87 bool store_ GUARDED_BY(critsect_);
/external/mesa3d/src/compiler/nir/
H A Dnir_intrinsics.h428 INTRINSIC(store_##name, srcs, ARR(0, 1, 1, 1), false, 0, 0, num_indices, idx0, idx1, idx2, flags)
/external/libvpx/libvpx/vpx_dsp/arm/
H A Dloopfilter_neon.c588 static INLINE void store_##w##x4( \
605 static INLINE void store_##w##x6( \
690 static INLINE void store_##w##x8( \
717 static INLINE void store_##w##x14( \
800 store_##w##x4(s - 2 * p, p, p1, p0, q0, q1); \

Completed in 369 milliseconds