Searched defs:value (Results 476 - 500 of 7203) sorted by relevance

<<11121314151617181920>>

/external/chromium/chrome/browser/parsers/
H A Dmetadata_parser_filebase_unittest.cc35 return test_file_.BaseName().value();
37 return WideToASCII(test_file_.BaseName().value());
57 std::string value; local
58 EXPECT_TRUE(parser.GetProperty(MetadataParser::kPropertyTitle, &value));
59 EXPECT_EQ(test_file_str(), value); local
62 EXPECT_TRUE(parser.GetProperty(MetadataParser::kPropertyFilesize, &value));
63 EXPECT_EQ(test_file_size(), value); local
66 EXPECT_FALSE(parser.GetProperty(MetadataParser::kPropertyType, &value));
82 std::string key, value; local
85 EXPECT_TRUE(iter->GetNext(&key, &value));
[all...]
/external/chromium/chrome/browser/policy/
H A Dmock_configuration_policy_provider.cc21 Value* value) {
22 policy_map_.Set(policy, value);
20 AddPolicy(ConfigurationPolicyType policy, Value* value) argument
/external/chromium/chrome/browser/
H A Dpreferences_mock_mac.cc26 CFPropertyListRef value; local
29 &value);
30 if (!found || !value)
32 CFRetain(value);
33 return value;
42 CFPropertyListRef value,
44 CFDictionarySetValue(values_, key, value);
41 AddTestItem(CFStringRef key, CFPropertyListRef value, bool is_forced) argument
/external/chromium/chrome/browser/prefs/
H A Dcommand_line_pref_store.cc51 Value* value = Value::CreateStringValue(command_line_-> local
53 SetValue(string_switch_map_[i].preference_path, value);
59 Value* value = Value::CreateBooleanValue( local
61 SetValue(boolean_switch_map_[i].preference_path, value);
H A Doverlay_persistent_pref_store_unittest.cc32 // Check that underlay first value is reported.
77 const Value* value = NULL; local
79 EXPECT_EQ(PrefStore::READ_NO_VALUE, overlay_->GetValue(key, &value));
80 EXPECT_EQ(PrefStore::READ_NO_VALUE, underlay_->GetValue(key, &value));
85 EXPECT_EQ(PrefStore::READ_OK, overlay_->GetValue(key, &value));
86 ASSERT_TRUE(value);
87 EXPECT_TRUE(value->GetAsInteger(&i));
90 EXPECT_EQ(PrefStore::READ_OK, underlay_->GetValue(key, &value));
91 ASSERT_TRUE(value);
92 EXPECT_TRUE(value
[all...]
H A Dscoped_user_pref_update_unittest.cc37 const char ScopedUserPrefUpdateTest::kValue[] = "value";
47 DictionaryValue* value = update.Get(); local
48 ASSERT_TRUE(value);
49 value->SetString(kKey, kValue);
H A Dvalue_map_pref_store.cc17 const Value** value) const {
18 return prefs_.GetValue(key, value) ? READ_OK : READ_NO_VALUE;
29 void ValueMapPrefStore::SetValue(const std::string& key, Value* value) { argument
30 if (prefs_.SetValue(key, value))
/external/chromium/chrome/browser/rlz/
H A Drlz_unittest.cc17 bool CleanValue(const wchar_t* key_name, const wchar_t* value) { argument
22 EXPECT_EQ(ERROR_SUCCESS, key.DeleteValue(value));
47 DWORD value = 0; local
/external/chromium/chrome/browser/sync/syncable/
H A Dmodel_type_payload_map.cc37 DictionaryValue* value = new DictionaryValue(); local
40 value->SetString(syncable::ModelTypeToString(it->first), it->second);
42 return value;
/external/chromium/chrome/browser/ui/toolbar/
H A Dtoolbar_model.h54 void set_input_in_progress(bool value) { input_in_progress_ = value; } argument
/external/chromium/chrome/browser/ui/webui/options/chromeos/
H A Dlanguage_customize_modifier_keys_handler.cc15 chromeos::input_method::ModifierKey value; member in struct:__anon2793::ModifierKeysSelectItem
61 const input_method::ModifierKey value = local
62 kModifierKeysSelectItems[j].value;
66 value == input_method::kCapsLockKey) {
70 option->Append(Value::CreateIntegerValue(value));
/external/chromium/chrome/browser/webdata/
H A Dautofill_entry.cc11 AutofillKey::AutofillKey(const string16& name, const string16& value) argument
13 value_(value) {
16 AutofillKey::AutofillKey(const char* name, const char* value) argument
18 value_(UTF8ToUTF16(value)) {
23 value_(key.value()) {
29 return name_ == key.name() && value_ == key.value();
37 return value_.compare(key.value()) < 0;
H A Dautofill_entry.h16 AutofillKey(const string16& name, const string16& value);
17 AutofillKey(const char* name, const char* value);
22 const string16& value() const { return value_; } function in class:AutofillKey
/external/chromium/net/base/
H A Dssl_client_auth_cache.cc34 X509Certificate* value) {
35 cache_[server] = value;
33 Add(const std::string& server, X509Certificate* value) argument
/external/chromium/net/http/
H A Dhttp_byte_range.h23 void set_first_byte_position(int64 value) { first_byte_position_ = value; } argument
26 void set_last_byte_position(int64 value) { last_byte_position_ = value; } argument
29 void set_suffix_length(int64 value) { suffix_length_ = value; } argument
H A Dhttp_net_log_params.cc29 iterator.value().c_str())));
47 std::string value; local
48 while (headers_->EnumerateHeaderLines(&iterator, &name, &value)) {
51 value.c_str())));
/external/chromium/third_party/libjingle/source/talk/base/
H A Dhttprequest.cc123 std::string value; local
124 if (client_.response().hasHeader(HH_LOCATION, &value)) {
125 response_redirect_ = value.c_str();
/external/chromium/webkit/glue/
H A Dcpp_binding_example.cc14 virtual bool GetValue(CppVariant* value) { argument
15 value->Set(value_);
19 virtual bool SetValue(const CppVariant& value) { argument
20 value_.Set(value);
100 // The value of a CppVariant may be read directly from its NPVariant struct.
104 sum += arg1.value.doubleValue;
106 sum += arg1.value.intValue;
109 sum += arg2.value.doubleValue;
111 sum += arg2.value.intValue;
H A Dwebcookie.cc18 value(c.Value()),
27 WebCookie::WebCookie(const std::string& name, const std::string& value, argument
31 value(value),
H A Dwebcookie.h19 WebCookie(const std::string& name, const std::string& value,
27 // Cookie value.
28 std::string value; member in struct:webkit_glue::WebCookie
/external/chromium_org/base/files/
H A Ddir_reader_posix_unittest.cc68 const unsigned long value = strtoul(reader.name(), &endptr, 10); local
71 EXPECT_LT(value, kNumFiles);
72 EXPECT_EQ(0u, seen.count(value));
73 seen.insert(value);
/external/chromium_org/base/
H A Dini_parser_unittest.cc18 const std::string& value)
21 value(value) {
26 std::string value; member in struct:base::__anon3759::TestTriplet
44 const std::string& value) OVERRIDE {
47 EXPECT_EQ(expected_triplets_[pair_i_].value, value);
62 "value=with=equals"));
73 "key5=value=with=equals\n"
119 std::string value; local
16 TestTriplet(const std::string& section, const std::string& key, const std::string& value) argument
[all...]
/external/chromium_org/base/prefs/
H A Dvalue_map_pref_store.cc15 const base::Value** value) const {
16 return prefs_.GetValue(key, value);
33 void ValueMapPrefStore::SetValue(const std::string& key, base::Value* value) { argument
34 if (prefs_.SetValue(key, value))
/external/chromium_org/base/process/
H A Dprocess_posix.cc54 bool Process::SetProcessBackgrounded(bool value) { argument
H A Dprocess_win.cc48 bool Process::SetProcessBackgrounded(bool value) { argument
57 priority = value ? PROCESS_MODE_BACKGROUND_BEGIN :
60 priority = value ? BELOW_NORMAL_PRIORITY_CLASS : NORMAL_PRIORITY_CLASS;

Completed in 389 milliseconds

<<11121314151617181920>>