Searched refs:in_value (Results 1 – 11 of 11) sorted by relevance
/external/v8/tools/clang/value_cleanup/tests/ |
D | values.h | 20 explicit FundamentalValue(bool in_value); 21 explicit FundamentalValue(int in_value); 22 explicit FundamentalValue(double in_value); 28 explicit StringValue(StringPiece in_value); 31 explicit StringValue(const string16& in_value); 40 void Append(std::unique_ptr<Value> in_value); 43 void Append(Value* in_value); 46 void AppendBoolean(bool in_value); 47 void AppendInteger(int in_value); 48 void AppendDouble(double in_value); [all …]
|
/external/libbrillo/brillo/ |
D | value_conversion.h | 34 inline bool FromValue(const base::Value& in_value, bool* out_value) { in FromValue() argument 35 return in_value.GetAsBoolean(out_value); in FromValue() 38 inline bool FromValue(const base::Value& in_value, int* out_value) { in FromValue() argument 39 return in_value.GetAsInteger(out_value); in FromValue() 42 inline bool FromValue(const base::Value& in_value, double* out_value) { in FromValue() argument 43 return in_value.GetAsDouble(out_value); in FromValue() 46 inline bool FromValue(const base::Value& in_value, std::string* out_value) { in FromValue() argument 47 return in_value.GetAsString(out_value); in FromValue() 50 inline bool FromValue(const base::Value& in_value, in FromValue() argument 52 return in_value.GetAsList(out_value); in FromValue() [all …]
|
D | value_conversion.cc | 22 bool FromValue(const base::Value& in_value, in FromValue() argument 25 if (!in_value.GetAsList(&list)) in FromValue() 31 bool FromValue(const base::Value& in_value, in FromValue() argument 34 if (!in_value.GetAsDictionary(&dict)) in FromValue()
|
D | value_conversion_unittest.cc | 102 auto in_value = ParseValue("[1, 2, 'foo']"); in TEST() local 103 EXPECT_TRUE(FromValue(*in_value, &list)); in TEST() 109 auto in_value = ParseValue("{'foo':'bar','baz': 1}"); in TEST() local 110 EXPECT_TRUE(FromValue(*in_value, &dict)); in TEST()
|
/external/libchrome/base/ |
D | values.cc | 160 FundamentalValue::FundamentalValue(bool in_value) in FundamentalValue() argument 161 : Value(TYPE_BOOLEAN), boolean_value_(in_value) { in FundamentalValue() 164 FundamentalValue::FundamentalValue(int in_value) in FundamentalValue() argument 165 : Value(TYPE_INTEGER), integer_value_(in_value) { in FundamentalValue() 168 FundamentalValue::FundamentalValue(double in_value) in FundamentalValue() argument 169 : Value(TYPE_DOUBLE), double_value_(in_value) { in FundamentalValue() 242 StringValue::StringValue(const std::string& in_value) in StringValue() argument 244 value_(in_value) { in StringValue() 245 DCHECK(IsStringUTF8(in_value)); in StringValue() 248 StringValue::StringValue(const string16& in_value) in StringValue() argument [all …]
|
D | values.h | 124 explicit FundamentalValue(bool in_value); 125 explicit FundamentalValue(int in_value); 126 explicit FundamentalValue(double in_value); 149 explicit StringValue(const std::string& in_value); 152 explicit StringValue(const string16& in_value); 241 void Set(const std::string& path, std::unique_ptr<Value> in_value); 243 void Set(const std::string& path, Value* in_value); 247 void SetBoolean(const std::string& path, bool in_value); 248 void SetInteger(const std::string& path, int in_value); 249 void SetDouble(const std::string& path, double in_value); [all …]
|
/external/libmojo/mojo/public/cpp/bindings/tests/ |
D | struct_with_traits_impl.cc | 11 NestedStructWithTraitsImpl::NestedStructWithTraitsImpl(int32_t in_value) in NestedStructWithTraitsImpl() argument 12 : value(in_value) {} in NestedStructWithTraitsImpl()
|
D | struct_with_traits_impl.h | 23 explicit NestedStructWithTraitsImpl(int32_t in_value);
|
/external/libchrome/base/memory/ |
D | ref_counted.h | 210 RefCountedData(const T& in_value) : data(in_value) {}
|
/external/tinyxml/ |
D | tinyxml.h | 848 TiXmlElement (const char * in_value);
|
/external/sfntly/cpp/src/test/tinyxml/ |
D | tinyxml.h | 944 TiXmlElement (const char * in_value);
|