Searched refs:in_value (Results 1 - 21 of 21) sorted by path

/external/chromium/base/memory/
H A Dref_counted.h162 RefCountedData(const T& in_value) : data(in_value) {} argument
/external/chromium/base/
H A Dvalue_conversions.cc39 StringValue* CreateFilePathValue(const FilePath& in_value) { argument
40 return new StringValue(FilePathToUTF8(in_value));
H A Dvalue_conversions.h20 BASE_API StringValue* CreateFilePathValue(const FilePath& in_value);
H A Dvalues.cc73 FundamentalValue* Value::CreateBooleanValue(bool in_value) { argument
74 return new FundamentalValue(in_value);
78 FundamentalValue* Value::CreateIntegerValue(int in_value) { argument
79 return new FundamentalValue(in_value);
83 FundamentalValue* Value::CreateDoubleValue(double in_value) { argument
84 return new FundamentalValue(in_value);
88 StringValue* Value::CreateStringValue(const std::string& in_value) { argument
89 return new StringValue(in_value);
93 StringValue* Value::CreateStringValue(const string16& in_value) { argument
94 return new StringValue(in_value);
152 FundamentalValue(bool in_value) argument
156 FundamentalValue(int in_value) argument
160 FundamentalValue(double in_value) argument
227 StringValue(const std::string& in_value) argument
233 StringValue(const string16& in_value) argument
338 Set(const std::string& path, Value* in_value) argument
362 SetBoolean(const std::string& path, bool in_value) argument
366 SetInteger(const std::string& path, int in_value) argument
370 SetDouble(const std::string& path, double in_value) argument
374 SetString(const std::string& path, const std::string& in_value) argument
379 SetString(const std::string& path, const string16& in_value) argument
384 SetWithoutPathExpansion(const std::string& key, Value* in_value) argument
702 Set(size_t index, Value* in_value) argument
835 Append(Value* in_value) argument
840 AppendIfNotPresent(Value* in_value) argument
852 Insert(size_t index, Value* in_value) argument
[all...]
H A Dvalues.h67 static FundamentalValue* CreateBooleanValue(bool in_value);
68 static FundamentalValue* CreateIntegerValue(int in_value);
69 static FundamentalValue* CreateDoubleValue(double in_value);
70 static StringValue* CreateStringValue(const std::string& in_value);
71 static StringValue* CreateStringValue(const string16& in_value);
128 explicit FundamentalValue(bool in_value);
129 explicit FundamentalValue(int in_value);
130 explicit FundamentalValue(double in_value);
153 explicit StringValue(const std::string& in_value);
156 explicit StringValue(const string16& in_value);
[all...]
/external/chromium/chrome/browser/chromeos/
H A Dcros_settings.cc47 void CrosSettings::Set(const std::string& path, Value* in_value) { argument
52 provider->Set(path, in_value);
56 void CrosSettings::SetBoolean(const std::string& path, bool in_value) { argument
58 Set(path, Value::CreateBooleanValue(in_value));
61 void CrosSettings::SetInteger(const std::string& path, int in_value) { argument
63 Set(path, Value::CreateIntegerValue(in_value));
66 void CrosSettings::SetDouble(const std::string& path, double in_value) { argument
68 Set(path, Value::CreateDoubleValue(in_value));
72 const std::string& in_value) {
74 Set(path, Value::CreateStringValue(in_value));
71 SetString(const std::string& path, const std::string& in_value) argument
[all...]
H A Dcros_settings.h38 // Sets |in_value| to given |path| in cros settings.
39 // Note that this takes ownership of |in_value|.
40 void Set(const std::string& path, Value* in_value);
51 void SetBoolean(const std::string& path, bool in_value);
52 void SetInteger(const std::string& path, int in_value);
53 void SetDouble(const std::string& path, double in_value);
54 void SetString(const std::string& path, const std::string& in_value);
H A Dcros_settings_provider.h18 // Sets |in_value| to given |path| in cros settings.
19 // Note that this takes ownership of |in_value|.
20 void Set(const std::string& path, Value* in_value);
31 virtual void DoSet(const std::string& path, Value* in_value) = 0;
H A Dproxy_cros_settings_provider.cc35 Value* in_value) {
36 if (!in_value) {
50 if (in_value->GetAsString(&val)) {
56 if (in_value->GetAsString(&val)) {
62 if (in_value->GetAsInteger(&val)) {
68 if (in_value->GetAsString(&val)) {
75 if (in_value->GetAsInteger(&val)) {
82 if (in_value->GetAsString(&val)) {
89 if (in_value->GetAsInteger(&val)) {
96 if (in_value
34 DoSet(const std::string& path, Value* in_value) argument
[all...]
H A Duser_cros_settings_provider.cc209 void Set(const std::string& path, Value* in_value) { argument
223 if (in_value->GetAsBoolean(&bool_value)) {
549 Value* in_value) {
550 UserCrosSettingsTrust::GetInstance()->Set(path, in_value);
548 DoSet(const std::string& path, Value* in_value) argument
/external/chromium/chrome/browser/extensions/
H A Dextension_prefs_unittest.cc918 explicit MockStringValue(const std::string& in_value) argument
919 : StringValue(in_value) {
/external/chromium/chrome/browser/policy/
H A Dconfiguration_policy_pref_store_unittest.cc59 ListValue* in_value = new ListValue(); local
60 in_value->Append(Value::CreateStringValue("test1"));
61 in_value->Append(Value::CreateStringValue("test2,"));
62 provider_.AddPolicy(GetParam().type(), in_value);
67 EXPECT_TRUE(in_value->Equals(value));
/external/chromium/chrome/browser/prefs/
H A Dproxy_prefs.cc37 bool IntToProxyMode(int in_value, ProxyMode* out_value) { argument
39 if (in_value < 0 || in_value >= kModeCount)
41 *out_value = static_cast<ProxyMode>(in_value);
46 bool StringToProxyMode(const std::string& in_value, ProxyMode* out_value) { argument
49 if (in_value == kProxyModeNames[i])
H A Dproxy_prefs.h47 bool IntToProxyMode(int in_value, ProxyMode* out_value);
48 bool StringToProxyMode(const std::string& in_value,
/external/chromium/chrome/browser/translate/
H A Dtranslate_prefs.cc213 const std::string& in_value) {
216 if (list->GetString(i, &value) && value == in_value)
212 IsValueInList(const ListValue* list, const std::string& in_value) argument
/external/chromium/chrome/browser/ui/webui/options/chromeos/
H A Dlanguage_options_util.cc10 Value* CreateValue(const char* in_value) { argument
11 return Value::CreateStringValue(in_value);
14 Value* CreateValue(int in_value) { argument
15 return Value::CreateIntegerValue(in_value);
H A Dlanguage_options_util.h50 Value* CreateValue(const char* in_value);
51 Value* CreateValue(int in_value);
H A Dsystem_settings_provider.cc197 void SystemSettingsProvider::DoSet(const std::string& path, Value* in_value) { argument
204 if (!in_value || !in_value->IsType(Value::TYPE_STRING) ||
205 !in_value->GetAsString(&value))
H A Dsystem_settings_provider.h38 virtual void DoSet(const std::string& path, Value* in_value);
/external/tinyxml/
H A Dtinyxml.h848 TiXmlElement (const char * in_value);
/external/webkit/Source/WebKit/chromium/src/
H A DWebColor.cpp44 static int toCSSValueKeyword(WebColorName in_value) argument
46 switch (in_value) {

Completed in 403 milliseconds