Home
last modified time | relevance | path

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

/external/v8/tools/clang/value_cleanup/tests/
Dvalues.h20 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/
Dvalue_conversion.h34 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 …]
Dvalue_conversion.cc22 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()
Dvalue_conversion_unittest.cc102 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/
Dvalues.cc160 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 …]
Dvalues.h124 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/
Dstruct_with_traits_impl.cc11 NestedStructWithTraitsImpl::NestedStructWithTraitsImpl(int32_t in_value) in NestedStructWithTraitsImpl() argument
12 : value(in_value) {} in NestedStructWithTraitsImpl()
Dstruct_with_traits_impl.h23 explicit NestedStructWithTraitsImpl(int32_t in_value);
/external/libchrome/base/memory/
Dref_counted.h210 RefCountedData(const T& in_value) : data(in_value) {}
/external/tinyxml/
Dtinyxml.h848 TiXmlElement (const char * in_value);
/external/sfntly/cpp/src/test/tinyxml/
Dtinyxml.h944 TiXmlElement (const char * in_value);