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

  /external/chromium_org/chrome/browser/extensions/api/preference/
preference_api_constants.cc 16 const char kValue[] = "value";
  /external/chromium_org/ppapi/proxy/
ppapi_message_utils.h 23 static const bool kValue = false;
27 static const bool kValue = true;
32 static const bool kValue = false;
36 static const bool kValue = true;
41 static const bool kValue = false;
45 static const bool kValue = true;
50 static const bool kValue = false;
54 static const bool kValue = true;
59 static const bool kValue = false;
63 static const bool kValue = true
    [all...]
  /external/llvm/unittests/Support/
MathExtrasTest.cpp 163 static const float kValue = 5632.34f;
164 EXPECT_FLOAT_EQ(kValue, BitsToFloat(FloatToBits(kValue)));
168 static const double kValue = 87987234.983498;
169 EXPECT_FLOAT_EQ(kValue, BitsToDouble(DoubleToBits(kValue)));
  /external/chromium_org/base/prefs/
scoped_user_pref_update_unittest.cc 30 static const char kValue[];
39 const char ScopedUserPrefUpdateTest::kValue[] = "value";
44 expected_dictionary.SetString(kKey, kValue);
51 value->SetString(kKey, kValue);
pref_service_unittest.cc 233 static const char kValue[];
242 const char PrefServiceSetValueTest::kValue[] = "value";
262 base::StringValue new_value(kValue);
279 new_value.SetString(kName, kValue);
305 new_value.Append(new base::StringValue(kValue));
  /external/chromium_org/content/common/dom_storage/
dom_storage_map_unittest.cc 15 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, copy->GetItem(kKey).string())
    [all...]
  /external/chromium_org/extensions/browser/api/storage/
storage_api_unittest.cc 93 const char kValue[] = "value";
97 RunSetFunction(kKey, kValue);
99 EXPECT_EQ(kValue, result);
120 RunSetFunction(kKey, kValue);
122 EXPECT_EQ(kValue, result);
  /external/chromium_org/net/disk_cache/blockfile/
bitmap_unittest.cc 27 const uint32 kValue = 0x74f10060;
35 bitmap.SetMapElement(1, kValue);
36 EXPECT_EQ(kValue, bitmap.GetMapElement(1));
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
buffer_level_filter_unittest.cc 59 const int kValue = 100;
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;
110 filter.Update(kValue, kTimeStretchedSamples, 0 /* packet_len_samples */);
113 // (1 - (251/256) ^ |kTimes|) * |kValue|
    [all...]
  /external/chromium_org/chromeos/dbus/
shill_service_client_unittest.cc 51 const int kValue = 42;
57 writer.AppendVariantOfByte(kValue);
60 const base::FundamentalValue value(kValue);
87 const int kValue = 42;
96 entry_writer.AppendVariantOfByte(kValue);
103 new base::FundamentalValue(kValue));
115 const char kValue[] = "passphrase";
120 const base::StringValue value(kValue);
shill_device_client_unittest.cc 77 const bool kValue = true;
83 writer.AppendVariantOfBool(kValue);
86 const base::FundamentalValue value(kValue);
114 const bool kValue = true;
123 entry_writer.AppendVariantOfBool(kValue);
130 new base::FundamentalValue(kValue));
157 const bool kValue = true;
162 const base::FundamentalValue value(kValue);
  /external/chromium_org/extensions/browser/value_store/
leveldb_value_store_unittest.cc 66 const char kValue[] = "value";
69 scoped_ptr<base::Value> value(new base::StringValue(kValue));
96 EXPECT_EQ(kValue, value_string);
106 const char kValue[] = "value";
110 scoped_ptr<base::Value> value(new base::StringValue(kValue));
138 EXPECT_EQ(kValue, value_string);
152 const char kValue[] = "value";
155 scoped_ptr<base::Value> value(new base::StringValue(kValue));
  /external/chromium_org/content/browser/dom_storage/
dom_storage_area_unittest.cc 30 kValue(ASCIIToUTF16("value")),
37 const base::string16 kValue;
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, area->GetItem(kKey).string())
    [all...]
dom_storage_context_impl_unittest.cc 32 kValue(ASCIIToUTF16("value")),
39 const base::string16 kValue;
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, &old_value)
    [all...]
  /external/chromium_org/content/renderer/dom_storage/
dom_storage_cached_area_unittest.cc 124 kValue(base::ASCIIToUTF16("value")),
131 const base::string16 kValue;
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, false))
    [all...]
  /external/chromium_org/chrome/browser/supervised_user/
supervised_user_shared_settings_service.cc 37 const char kValue[] = "value";
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/components/policy/core/common/cloud/
component_cloud_policy_store.cc 27 const char kValue[] = "Value";
343 if (!description->RemoveWithoutPathExpansion(kValue, &value))
  /external/chromium_org/media/cast/net/pacing/
paced_sender_unittest.cc 21 static const uint8 kValue = 123;
102 packet->data.resize(packet_size, kValue);
148 Packet tmp(kSize2, kValue);
397 new base::RefCountedData<Packet>(Packet(kSize3, kValue))));
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_table_unittest.cc 251 const base::string16 kValue = ASCIIToUTF16(" toto ");
262 field.value = kValue;
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
plurrule_impl.h 166 kValue,
  /external/icu/icu4c/source/i18n/
plurrule_impl.h 166 kValue,
  /external/chromium_org/net/spdy/
spdy_framer_test.cc     [all...]
  /external/chromium_org/v8/src/
ast.h 320 kValue,
    [all...]

Completed in 864 milliseconds