Searched refs:kValue (Results 1 - 25 of 30) sorted by relevance

12

/external/chromium_org/chrome/browser/extensions/api/preference/
H A Dpreference_api_constants.cc16 const char kValue[] = "value"; member in namespace:extensions::preference_api_constants
H A Dpreference_api_constants.h18 extern const char kValue[];
H A Dchrome_direct_setting.cc46 result->Set(preference_api_constants::kValue, value->DeepCopy());
69 details->Get(preference_api_constants::kValue, &value));
H A Dchrome_direct_setting_api.cc131 result->Set(preference_api_constants::kValue, value->DeepCopy());
/external/chromium_org/content/common/dom_storage/
H A Ddom_storage_map_unittest.cc15 const base::string16 kValue(ASCIIToUTF16("value"));
16 const size_t kValueBytes = kValue.size() * sizeof(base::char16);
18 (kKey.size() + kValue.size()) * sizeof(base::char16);
46 EXPECT_TRUE(map->SetItem(kKey, kValue, &old_nullable_value));
51 EXPECT_EQ(kValue, map->GetItem(kKey).string());
56 EXPECT_EQ(kValue, old_value);
59 EXPECT_TRUE(map->SetItem(kKey, kValue, &old_nullable_value));
60 EXPECT_TRUE(map->SetItem(kKey2, kValue, &old_nullable_value));
65 EXPECT_EQ(kValue, old_nullable_value.string());
74 EXPECT_EQ(kValue, cop
89 const base::string16 kValue = ASCIIToUTF16("test_value"); local
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dbuffer_level_filter_unittest.cc59 const int kValue = 100; local
63 filter.Update(kValue, 0 /* time_stretched_samples */,
67 // (1 - (252/256) ^ |kTimes|) * |kValue|.
75 filter.Update(kValue, 0 /* time_stretched_samples */,
79 // (1 - (253/256) ^ |kTimes|) * |kValue|.
87 filter.Update(kValue, 0 /* time_stretched_samples */,
91 // (1 - (254/256) ^ |kTimes|) * |kValue|.
103 const int kValue = 100; local
110 filter.Update(kValue, kTimeStretchedSamples, 0 /* packet_len_samples */);
113 // (1 - (251/256) ^ |kTimes|) * |kValue|
136 const int kValue = 100; local
[all...]
/external/chromium_org/extensions/browser/api/storage/
H A Dstorage_api_unittest.cc93 const char kValue[] = "value"; local
97 RunSetFunction(kKey, kValue);
99 EXPECT_EQ(kValue, result);
120 RunSetFunction(kKey, kValue);
122 EXPECT_EQ(kValue, result);
/external/chromium_org/ppapi/proxy/
H A Dppapi_message_utils.h23 static const bool kValue = false; member in struct:ppapi::internal::TupleTypeMatch1
27 static const bool kValue = true; member in struct:ppapi::internal::TupleTypeMatch1
32 static const bool kValue = false; member in struct:ppapi::internal::TupleTypeMatch2
36 static const bool kValue = true; member in struct:ppapi::internal::TupleTypeMatch2
41 static const bool kValue = false; member in struct:ppapi::internal::TupleTypeMatch3
45 static const bool kValue = true; member in struct:ppapi::internal::TupleTypeMatch3
50 static const bool kValue = false; member in struct:ppapi::internal::TupleTypeMatch4
54 static const bool kValue = true; member in struct:ppapi::internal::TupleTypeMatch4
59 static const bool kValue = false; member in struct:ppapi::internal::TupleTypeMatch5
63 static const bool kValue member in struct:ppapi::internal::TupleTypeMatch5
[all...]
/external/chromium_org/base/prefs/
H A Dscoped_user_pref_update_unittest.cc30 static const char kValue[]; member in class:ScopedUserPrefUpdateTest
39 const char ScopedUserPrefUpdateTest::kValue[] = "value"; member in class:ScopedUserPrefUpdateTest
44 expected_dictionary.SetString(kKey, kValue);
51 value->SetString(kKey, kValue);
H A Dpref_service_unittest.cc233 static const char kValue[]; member in class:PrefServiceSetValueTest
242 const char PrefServiceSetValueTest::kValue[] = "value"; member in class:PrefServiceSetValueTest
262 base::StringValue new_value(kValue);
279 new_value.SetString(kName, kValue);
305 new_value.Append(new base::StringValue(kValue));
/external/chromium_org/content/renderer/dom_storage/
H A Ddom_storage_cached_area_unittest.cc124 kValue(base::ASCIIToUTF16("value")),
131 const base::string16 kValue; member in class:content::DOMStorageCachedAreaTest
173 base::NullableString16(kValue, false));
182 EXPECT_TRUE(cached_area->SetItem(kConnectionId, kKey, kValue, kPageUrl));
185 EXPECT_EQ(kValue, cached_area->GetItem(kConnectionId, kKey).string());
233 EXPECT_TRUE(cached_area->SetItem(kConnectionId, kKey, kValue, kPageUrl));
240 EXPECT_EQ(kValue, mock_proxy_->observed_value_);
268 base::NullableString16(kValue, false);
290 base::NullableString16(kValue, false));
299 base::NullableString16(kValue, fals
[all...]
/external/chromium_org/extensions/browser/value_store/
H A Dleveldb_value_store_unittest.cc66 const char kValue[] = "value"; local
69 scoped_ptr<base::Value> value(new base::StringValue(kValue));
96 EXPECT_EQ(kValue, value_string);
106 const char kValue[] = "value"; local
110 scoped_ptr<base::Value> value(new base::StringValue(kValue));
138 EXPECT_EQ(kValue, value_string);
152 const char kValue[] = "value"; local
155 scoped_ptr<base::Value> value(new base::StringValue(kValue));
/external/chromium_org/content/browser/dom_storage/
H A Ddom_storage_area_unittest.cc30 kValue(ASCIIToUTF16("value")),
37 const base::string16 kValue; member in class:content::DOMStorageAreaTest
63 const base::string16 kValue(ASCIIToUTF16("value"));
67 EXPECT_EQ(kValue, values[kKey].string());
87 EXPECT_TRUE(area->SetItem(kKey, kValue, &old_nullable_value));
105 EXPECT_TRUE(area->SetItem(kKey, kValue, &old_nullable_value));
121 EXPECT_FALSE(area->SetItem(kKey, kValue, &old_nullable_value));
152 EXPECT_TRUE(area->SetItem(kKey, kValue, &old_value));
181 EXPECT_TRUE(area->SetItem(kKey, kValue, &old_value));
195 EXPECT_EQ(kValue, are
[all...]
H A Ddom_storage_context_impl_unittest.cc32 kValue(ASCIIToUTF16("value")),
39 const base::string16 kValue; member in class:content::DOMStorageContextImplTest
108 OpenStorageArea(kOrigin)->SetItem(kKey, kValue, &old_value));
139 OpenStorageArea(kOrigin)->SetItem(kKey, kValue, &old_value));
141 OpenStorageArea(kSessionOnlyOrigin)->SetItem(kKey, kValue, &old_value));
158 OpenStorageArea(kSessionOnlyOrigin)->SetItem(kKey, kValue, &old_value));
214 const base::string16 kValue(ASCIIToUTF16("bar"));
216 area->SetItem(kKey, kValue, &old_nullable_value);
235 EXPECT_EQ(kValue, read_value.string());
275 area1->SetItem(kKey, kValue,
[all...]
/external/chromium_org/chromeos/dbus/
H A Dshill_service_client_unittest.cc51 const int kValue = 42; local
57 writer.AppendVariantOfByte(kValue);
60 const base::FundamentalValue value(kValue);
87 const int kValue = 42; local
96 entry_writer.AppendVariantOfByte(kValue);
103 new base::FundamentalValue(kValue));
115 const char kValue[] = "passphrase"; local
120 const base::StringValue value(kValue);
H A Dshill_device_client_unittest.cc77 const bool kValue = true; local
83 writer.AppendVariantOfBool(kValue);
86 const base::FundamentalValue value(kValue);
114 const bool kValue = true; local
123 entry_writer.AppendVariantOfBool(kValue);
130 new base::FundamentalValue(kValue));
157 const bool kValue = true; local
162 const base::FundamentalValue value(kValue);
/external/llvm/unittests/Support/
H A DMathExtrasTest.cpp163 static const float kValue = 5632.34f; local
164 EXPECT_FLOAT_EQ(kValue, BitsToFloat(FloatToBits(kValue)));
168 static const double kValue = 87987234.983498; local
169 EXPECT_FLOAT_EQ(kValue, BitsToDouble(DoubleToBits(kValue)));
/external/chromium_org/chrome/browser/supervised_user/
H A Dsupervised_user_shared_settings_service.cc37 const char kValue[] = "value"; member in namespace:__anon4745
79 if (!dict->Get(kValue, &value))
112 dict->SetWithoutPathExpansion(kValue, value.DeepCopy());
141 if (!settings->GetWithoutPathExpansion(kValue, &value))
218 dict->SetWithoutPathExpansion(kValue, value.release());
326 dict->SetWithoutPathExpansion(kValue, value.release());
/external/chromium_org/sql/
H A Dmeta_table_unittest.cc254 const std::string kValue("String Value");
264 EXPECT_TRUE(meta_table.SetValue(kKey, kValue));
266 EXPECT_EQ(kValue, value);
/external/chromium_org/net/disk_cache/blockfile/
H A Dbitmap_unittest.cc27 const uint32 kValue = 0x74f10060; local
35 bitmap.SetMapElement(1, kValue);
36 EXPECT_EQ(kValue, bitmap.GetMapElement(1));
/external/chromium_org/media/cast/net/pacing/
H A Dpaced_sender_unittest.cc21 static const uint8 kValue = 123; member in namespace:media::cast::__anon8605
102 packet->data.resize(packet_size, kValue);
148 Packet tmp(kSize2, kValue);
397 new base::RefCountedData<Packet>(Packet(kSize3, kValue))));
/external/chromium_org/components/policy/core/common/cloud/
H A Dcomponent_cloud_policy_store.cc27 const char kValue[] = "Value"; member in namespace:policy::__anon6712
343 if (!description->RemoveWithoutPathExpansion(kValue, &value))
/external/chromium_org/v8/src/compiler/
H A Dast-graph-builder.h285 bool IsValue() const { return kind_ == Expression::kValue; }
340 : AstContext(owner, Expression::kValue) {}
/external/chromium_org/third_party/icu/source/i18n/
H A Dplurrule_impl.h166 kValue, enumerator in enum:PluralRuleParser::EParseState
/external/icu/icu4c/source/i18n/
H A Dplurrule_impl.h166 kValue, enumerator in enum:PluralRuleParser::EParseState

Completed in 2146 milliseconds

12