Home
last modified time | relevance | path

Searched refs:in_value (Results 1 – 25 of 51) sorted by relevance

123

/external/chromium_org/extensions/common/
Dvalue_builder.cc19 int in_value) { in Set() argument
20 dict_->SetWithoutPathExpansion(path, new base::FundamentalValue(in_value)); in Set()
25 double in_value) { in Set() argument
26 dict_->SetWithoutPathExpansion(path, new base::FundamentalValue(in_value)); in Set()
31 const std::string& in_value) { in Set() argument
32 dict_->SetWithoutPathExpansion(path, new base::StringValue(in_value)); in Set()
37 const base::string16& in_value) { in Set() argument
38 dict_->SetWithoutPathExpansion(path, new base::StringValue(in_value)); in Set()
43 DictionaryBuilder& in_value) { in Set() argument
44 dict_->SetWithoutPathExpansion(path, in_value.Build().release()); in Set()
[all …]
Dvalue_builder.h59 DictionaryBuilder& Set(const std::string& path, int in_value);
60 DictionaryBuilder& Set(const std::string& path, double in_value);
61 DictionaryBuilder& Set(const std::string& path, const std::string& in_value);
63 const base::string16& in_value);
64 DictionaryBuilder& Set(const std::string& path, DictionaryBuilder& in_value);
65 DictionaryBuilder& Set(const std::string& path, ListBuilder& in_value);
69 DictionaryBuilder& SetBoolean(const std::string& path, bool in_value);
88 ListBuilder& Append(int in_value);
89 ListBuilder& Append(double in_value);
90 ListBuilder& Append(const std::string& in_value);
[all …]
/external/chromium_org/base/
Dvalues.cc164 FundamentalValue::FundamentalValue(bool in_value) in FundamentalValue() argument
165 : Value(TYPE_BOOLEAN), boolean_value_(in_value) { in FundamentalValue()
168 FundamentalValue::FundamentalValue(int in_value) in FundamentalValue() argument
169 : Value(TYPE_INTEGER), integer_value_(in_value) { in FundamentalValue()
172 FundamentalValue::FundamentalValue(double in_value) in FundamentalValue() argument
173 : Value(TYPE_DOUBLE), double_value_(in_value) { in FundamentalValue()
246 StringValue::StringValue(const std::string& in_value) in StringValue() argument
248 value_(in_value) { in StringValue()
249 DCHECK(IsStringUTF8(in_value)); in StringValue()
252 StringValue::StringValue(const string16& in_value) in StringValue() argument
[all …]
Dvalues.h121 explicit FundamentalValue(bool in_value);
122 explicit FundamentalValue(int in_value);
123 explicit FundamentalValue(double in_value);
146 explicit StringValue(const std::string& in_value);
149 explicit StringValue(const string16& in_value);
235 void Set(const std::string& path, Value* in_value);
239 void SetBoolean(const std::string& path, bool in_value);
240 void SetInteger(const std::string& path, int in_value);
241 void SetDouble(const std::string& path, double in_value);
242 void SetString(const std::string& path, const std::string& in_value);
[all …]
Dvalue_conversions.cc19 StringValue* CreateFilePathValue(const FilePath& in_value) { in CreateFilePathValue() argument
20 return new StringValue(in_value.AsUTF8Unsafe()); in CreateFilePathValue()
/external/chromium_org/chrome/browser/prefs/
Dproxy_prefs.cc33 bool IntToProxyMode(int in_value, ProxyMode* out_value) { in IntToProxyMode() argument
35 if (in_value < 0 || in_value >= kModeCount) in IntToProxyMode()
37 *out_value = static_cast<ProxyMode>(in_value); in IntToProxyMode()
41 bool StringToProxyMode(const std::string& in_value, ProxyMode* out_value) { in StringToProxyMode() argument
44 if (in_value == kProxyModeNames[i]) in StringToProxyMode()
Dincognito_mode_prefs.cc32 bool IncognitoModePrefs::IntToAvailability(int in_value, in IntToAvailability() argument
34 if (in_value < 0 || in_value >= AVAILABILITY_NUM_TYPES) { in IntToAvailability()
38 *out_value = static_cast<Availability>(in_value); in IntToAvailability()
Dproxy_prefs.h62 bool IntToProxyMode(int in_value, ProxyMode* out_value);
63 bool StringToProxyMode(const std::string& in_value, ProxyMode* out_value);
/external/chromium_org/chrome/browser/chromeos/
Dproxy_cros_settings_parser.cc119 const base::Value* in_value, in SetProxyPrefValue() argument
121 if (!in_value) { in SetProxyPrefValue()
132 if (in_value->GetAsString(&val)) { in SetProxyPrefValue()
141 if (in_value->GetAsString(&val)) { in SetProxyPrefValue()
147 if (in_value->GetAsInteger(&val)) { in SetProxyPrefValue()
153 if (in_value->GetAsString(&val)) { in SetProxyPrefValue()
160 if (in_value->GetAsInteger(&val)) { in SetProxyPrefValue()
167 if (in_value->GetAsString(&val)) { in SetProxyPrefValue()
174 if (in_value->GetAsInteger(&val)) { in SetProxyPrefValue()
181 if (in_value->GetAsInteger(&val)) { in SetProxyPrefValue()
[all …]
/external/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
DItaniumABILanguageRuntime.cpp38 ItaniumABILanguageRuntime::CouldHaveDynamicValue (ValueObject &in_value) in CouldHaveDynamicValue() argument
42 return in_value.GetClangType().IsPossibleDynamicType (NULL, check_cxx, check_objc); in CouldHaveDynamicValue()
46 ItaniumABILanguageRuntime::GetDynamicTypeAndAddress (ValueObject &in_value, in GetDynamicTypeAndAddress() argument
62 if (CouldHaveDynamicValue (in_value)) in GetDynamicTypeAndAddress()
66 lldb::addr_t original_ptr = in_value.GetPointerValue(&address_type); in GetDynamicTypeAndAddress()
70 ExecutionContext exe_ctx (in_value.GetExecutionContextRef()); in GetDynamicTypeAndAddress()
115 in_value.GetTypeName().GetCString(), in GetDynamicTypeAndAddress()
160 in_value.GetTypeName().AsCString(), in GetDynamicTypeAndAddress()
179 in_value.GetTypeName().AsCString(), in GetDynamicTypeAndAddress()
196 in_value.GetTypeName().AsCString(), in GetDynamicTypeAndAddress()
[all …]
DItaniumABILanguageRuntime.h35 GetDynamicTypeAndAddress (ValueObject &in_value,
41 CouldHaveDynamicValue (ValueObject &in_value);
/external/chromium_org/content/common/android/
Dgin_java_bridge_value.cc36 float in_value) { in CreateNonFiniteValue() argument
38 gin_value.pickle_.WriteFloat(in_value); in CreateNonFiniteValue()
44 double in_value) { in CreateNonFiniteValue() argument
45 return CreateNonFiniteValue(static_cast<float>(in_value)).Pass(); in CreateNonFiniteValue()
50 int32 in_value) { in CreateObjectIDValue() argument
52 gin_value.pickle_.WriteInt(in_value); in CreateObjectIDValue()
Dgin_java_bridge_value.h35 float in_value);
37 double in_value);
39 int32 in_value);
/external/chromium_org/remoting/host/
Din_memory_host_config.cc37 const std::string& in_value) { in SetString() argument
39 values_->SetString(path, in_value); in SetString()
42 void InMemoryHostConfig::SetBoolean(const std::string& path, bool in_value) { in SetBoolean() argument
44 values_->SetBoolean(path, in_value); in SetBoolean()
Din_memory_host_config.h34 const std::string& in_value) OVERRIDE;
35 virtual void SetBoolean(const std::string& path, bool in_value) OVERRIDE;
Dhost_config.h72 const std::string& in_value) = 0;
73 virtual void SetBoolean(const std::string& path, bool in_value) = 0;
/external/chromium_org/chrome/browser/chromeos/settings/
Dcros_settings.h47 void Set(const std::string& path, const base::Value& in_value);
62 void SetBoolean(const std::string& path, bool in_value);
63 void SetInteger(const std::string& path, int in_value);
64 void SetDouble(const std::string& path, double in_value);
65 void SetString(const std::string& path, const std::string& in_value);
Dcros_settings.cc73 void CrosSettings::Set(const std::string& path, const base::Value& in_value) { in Set() argument
78 provider->Set(path, in_value); in Set()
102 void CrosSettings::SetBoolean(const std::string& path, bool in_value) { in SetBoolean() argument
104 base::FundamentalValue value(in_value); in SetBoolean()
108 void CrosSettings::SetInteger(const std::string& path, int in_value) { in SetInteger() argument
110 base::FundamentalValue value(in_value); in SetInteger()
114 void CrosSettings::SetDouble(const std::string& path, double in_value) { in SetDouble() argument
116 base::FundamentalValue value(in_value); in SetDouble()
121 const std::string& in_value) { in SetString() argument
123 base::StringValue value(in_value); in SetString()
Dsystem_settings_provider.cc31 const base::Value& in_value) { in DoSet() argument
40 if (!in_value.GetAsString(&timezone_id)) in DoSet()
/external/lldb/test/functionalities/return-value/
DTestReturnValue.py48 in_value = thread.GetFrameAtIndex(0).FindVariable ("value")
50 self.assertTrue (in_value.IsValid())
51 num_in_children = in_value.GetNumChildren()
57 in_child = in_value.GetChildAtIndex (idx)
79 in_child = in_value.GetChildAtIndex(idx)
171 in_value = frame.FindVariable ("value")
172 in_float = float (in_value.GetValue())
/external/chromium_org/components/policy/core/browser/
Dconfiguration_policy_pref_store_unittest.cc54 base::ListValue* in_value = new base::ListValue(); in TEST_F() local
55 in_value->Append(new base::StringValue("test1")); in TEST_F()
56 in_value->Append(new base::StringValue("test2,")); in TEST_F()
59 POLICY_SCOPE_USER, in_value, NULL); in TEST_F()
64 EXPECT_TRUE(in_value->Equals(value)); in TEST_F()
/external/chromium_org/chromeos/settings/
Dcros_settings_provider.h45 void Set(const std::string& path, const base::Value& in_value);
71 const base::Value& in_value) = 0;
/external/lldb/include/lldb/Target/
DLanguageRuntime.h49 GetDynamicTypeAndAddress (ValueObject &in_value,
57 CouldHaveDynamicValue (ValueObject &in_value) = 0;
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleObjCRuntime.h41 CouldHaveDynamicValue (ValueObject &in_value);
44 GetDynamicTypeAndAddress (ValueObject &in_value,
DAppleObjCRuntimeV1.cpp50 AppleObjCRuntimeV1::GetDynamicTypeAndAddress (ValueObject &in_value, in GetDynamicTypeAndAddress() argument
56 if (CouldHaveDynamicValue(in_value)) in GetDynamicTypeAndAddress()
58 auto class_descriptor(GetClassDescriptor(in_value)); in GetDynamicTypeAndAddress()
61 const addr_t object_ptr = in_value.GetPointerValue(); in GetDynamicTypeAndAddress()

123