HomeSort by relevance Sort by last modified time
    Searched full:in_value (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium/chrome/browser/ui/webui/options/chromeos/
language_options_util.cc 10 Value* CreateValue(const char* in_value) {
11 return Value::CreateStringValue(in_value);
14 Value* CreateValue(int in_value) {
15 return Value::CreateIntegerValue(in_value);
language_options_util.h 50 Value* CreateValue(const char* in_value);
51 Value* CreateValue(int in_value);
system_settings_provider.h 38 virtual void DoSet(const std::string& path, Value* in_value);
system_settings_provider.cc 197 void SystemSettingsProvider::DoSet(const std::string& path, Value* in_value) {
204 if (!in_value || !in_value->IsType(Value::TYPE_STRING) ||
205 !in_value->GetAsString(&value))
  /external/chromium/chrome/browser/chromeos/
cros_settings_provider.h 18 // 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;
cros_settings.h 38 // 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);
cros_settings.cc 47 void CrosSettings::Set(const std::string& path, Value* in_value) {
52 provider->Set(path, in_value);
56 void CrosSettings::SetBoolean(const std::string& path, bool in_value) {
58 Set(path, Value::CreateBooleanValue(in_value));
61 void CrosSettings::SetInteger(const std::string& path, int in_value) {
63 Set(path, Value::CreateIntegerValue(in_value));
66 void CrosSettings::SetDouble(const std::string& path, double in_value) {
68 Set(path, Value::CreateDoubleValue(in_value));
72 const std::string& in_value) {
74 Set(path, Value::CreateStringValue(in_value));
    [all...]
proxy_cros_settings_provider.cc 35 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->GetAsInteger(&val))
    [all...]
user_cros_settings_provider.cc 209 void Set(const std::string& path, Value* in_value) {
223 if (in_value->GetAsBoolean(&bool_value)) {
549 Value* in_value) {
550 UserCrosSettingsTrust::GetInstance()->Set(path, in_value);
  /external/chromium/chrome/browser/prefs/
proxy_prefs.cc 37 bool IntToProxyMode(int in_value, ProxyMode* out_value) {
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) {
49 if (in_value == kProxyModeNames[i])
proxy_prefs.h 47 bool IntToProxyMode(int in_value, ProxyMode* out_value);
48 bool StringToProxyMode(const std::string& in_value,
  /external/chromium/base/
values.cc 73 FundamentalValue* Value::CreateBooleanValue(bool in_value) {
74 return new FundamentalValue(in_value);
78 FundamentalValue* Value::CreateIntegerValue(int in_value) {
79 return new FundamentalValue(in_value);
83 FundamentalValue* Value::CreateDoubleValue(double in_value) {
84 return new FundamentalValue(in_value);
88 StringValue* Value::CreateStringValue(const std::string& in_value) {
89 return new StringValue(in_value);
93 StringValue* Value::CreateStringValue(const string16& in_value) {
94 return new StringValue(in_value);
    [all...]
value_conversions.h 20 BASE_API StringValue* CreateFilePathValue(const FilePath& in_value);
value_conversions.cc 39 StringValue* CreateFilePathValue(const FilePath& in_value) {
40 return new StringValue(FilePathToUTF8(in_value));
values.h 67 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/webkit/Source/WebKit/chromium/src/
WebColor.cpp 44 static int toCSSValueKeyword(WebColorName in_value)
46 switch (in_value) {
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/
BodyDescriptor.java 174 final byte IN_VALUE = 3;
228 state = IN_VALUE;
237 case IN_VALUE:
310 if (state == IN_VALUE) {
  /external/chromium/base/memory/
ref_counted.h 162 RefCountedData(const T& in_value) : data(in_value) {}
  /external/chromium/chrome/browser/policy/
configuration_policy_pref_store_unittest.cc 59 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/translate/
translate_prefs.cc 213 const std::string& in_value) {
216 if (list->GetString(i, &value) && value == in_value)
  /external/chromium/chrome/browser/extensions/
extension_prefs_unittest.cc 918 explicit MockStringValue(const std::string& in_value)
919 : StringValue(in_value) {
    [all...]
  /external/tinyxml/docs/
classTiXmlElement.html 22 <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="a0"></a><!-- doxytag: member="TiXmlElement::TiXmlElement" ref="a0" args="(const char *in_value)" -->
23 &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTiXmlElement.html#a0">TiXmlElement</a> (const char *in_value)</td></tr>
classTiXmlElement-members.html 75 <tr class="memlist"><td><a class="el" href="classTiXmlElement.html#a0">TiXmlElement</a>(const char *in_value)</td><td><a class="el" href="classTiXmlElement.html">TiXmlElement</a></td><td></td></tr>
tinyxml_8h-source.html     [all...]
  /external/tinyxml/
tinyxml.h 848 TiXmlElement (const char * in_value);
    [all...]

Completed in 375 milliseconds

1 2