/external/chromium_org/extensions/common/ |
D | value_builder.cc | 19 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 …]
|
D | value_builder.h | 59 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/ |
D | values.cc | 164 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 …]
|
D | values.h | 121 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 …]
|
D | value_conversions.cc | 19 StringValue* CreateFilePathValue(const FilePath& in_value) { in CreateFilePathValue() argument 20 return new StringValue(in_value.AsUTF8Unsafe()); in CreateFilePathValue()
|
/external/chromium_org/chrome/browser/prefs/ |
D | proxy_prefs.cc | 33 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()
|
D | incognito_mode_prefs.cc | 32 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()
|
D | proxy_prefs.h | 62 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/ |
D | proxy_cros_settings_parser.cc | 119 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/ |
D | ItaniumABILanguageRuntime.cpp | 38 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 …]
|
D | ItaniumABILanguageRuntime.h | 35 GetDynamicTypeAndAddress (ValueObject &in_value, 41 CouldHaveDynamicValue (ValueObject &in_value);
|
/external/chromium_org/content/common/android/ |
D | gin_java_bridge_value.cc | 36 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()
|
D | gin_java_bridge_value.h | 35 float in_value); 37 double in_value); 39 int32 in_value);
|
/external/chromium_org/remoting/host/ |
D | in_memory_host_config.cc | 37 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()
|
D | in_memory_host_config.h | 34 const std::string& in_value) OVERRIDE; 35 virtual void SetBoolean(const std::string& path, bool in_value) OVERRIDE;
|
D | host_config.h | 72 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/ |
D | cros_settings.h | 47 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);
|
D | cros_settings.cc | 73 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()
|
D | system_settings_provider.cc | 31 const base::Value& in_value) { in DoSet() argument 40 if (!in_value.GetAsString(&timezone_id)) in DoSet()
|
/external/lldb/test/functionalities/return-value/ |
D | TestReturnValue.py | 48 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/ |
D | configuration_policy_pref_store_unittest.cc | 54 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/ |
D | cros_settings_provider.h | 45 void Set(const std::string& path, const base::Value& in_value); 71 const base::Value& in_value) = 0;
|
/external/lldb/include/lldb/Target/ |
D | LanguageRuntime.h | 49 GetDynamicTypeAndAddress (ValueObject &in_value, 57 CouldHaveDynamicValue (ValueObject &in_value) = 0;
|
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
D | AppleObjCRuntime.h | 41 CouldHaveDynamicValue (ValueObject &in_value); 44 GetDynamicTypeAndAddress (ValueObject &in_value,
|
D | AppleObjCRuntimeV1.cpp | 50 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()
|