Searched defs:list_value (Results 1 - 8 of 8) sorted by relevance

/external/libchrome/base/trace_event/
H A Dtrace_event_argument_unittest.cc111 auto list_value = WrapUnique(new ListValue); local
112 list_value->AppendBoolean(false);
113 list_value->AppendInteger(1);
114 list_value->AppendString("in_list");
115 list_value->Append(std::move(dict_value));
119 value->SetValue("inner_list", std::move(list_value));
123 list_value.reset();
H A Dtrace_event_memory_overhead.cc104 const ListValue* list_value = nullptr; local
105 value.GetAsList(&list_value);
107 for (const auto& v : *list_value)
H A Dtrace_event_argument.cc288 const ListValue* list_value; local
289 value.GetAsList(&list_value);
291 for (const auto& base_value : *list_value)
342 const ListValue* list_value; local
343 value.GetAsList(&list_value);
345 for (const auto& base_value : *list_value)
/external/libbrillo/policy/tests/
H A Dlibpolicy_unittest.cc67 std::vector<std::string> list_value; local
68 ASSERT_TRUE(policy.GetUserWhitelist(&list_value));
69 ASSERT_EQ(3, list_value.size());
70 ASSERT_EQ("me@here.com", list_value[0]);
71 ASSERT_EQ("you@there.com", list_value[1]);
72 ASSERT_EQ("*@monsters.com", list_value[2]);
187 std::vector<std::string> list_value; local
193 ASSERT_FALSE(policy.GetUserWhitelist(&list_value));
/external/libchrome/dbus/
H A Dvalues_util.cc25 // Pops values from |reader| and appends them to |list_value|.
26 bool PopListElements(MessageReader* reader, base::ListValue* list_value) { argument
31 list_value->Append(std::move(element_value));
190 std::unique_ptr<base::ListValue> list_value(new base::ListValue);
191 if (PopListElements(&sub_reader, list_value.get()))
192 result = std::move(list_value);
200 std::unique_ptr<base::ListValue> list_value(new base::ListValue);
201 if (PopListElements(&sub_reader, list_value.get()))
202 result = std::move(list_value);
/external/libchrome/base/
H A Dvalues_unittest.cc883 ListValue list_value; local
891 main_dict.Set("list", list_value.CreateDeepCopy());
899 main_list.Append(list_value.CreateDeepCopy());
/external/protobuf/src/google/protobuf/
H A Dstruct.pb.h277 // optional .google.protobuf.ListValue list_value = 6;
281 const ::google::protobuf::ListValue& list_value() const;
284 void set_allocated_list_value(::google::protobuf::ListValue* list_value);
651 // optional .google.protobuf.ListValue list_value = 6;
664 inline const ::google::protobuf::ListValue& Value::list_value() const { function in class:google::protobuf::Value
665 // @@protoc_insertion_point(field_get:google.protobuf.Value.list_value)
676 // @@protoc_insertion_point(field_mutable:google.protobuf.Value.list_value)
680 // @@protoc_insertion_point(field_release:google.protobuf.Value.list_value)
690 inline void Value::set_allocated_list_value(::google::protobuf::ListValue* list_value) { argument
692 if (list_value) {
[all...]
H A Dstruct.pb.cc699 // optional .google.protobuf.ListValue list_value = 6;
768 // optional .google.protobuf.ListValue list_value = 6;
814 // optional .google.protobuf.ListValue list_value = 6;
860 // optional .google.protobuf.ListValue list_value = 6;
917 mutable_list_value()->::google::protobuf::ListValue::MergeFrom(from.list_value());
1183 // optional .google.protobuf.ListValue list_value = 6;
1196 const ::google::protobuf::ListValue& Value::list_value() const { function in class:google::protobuf::Value
1197 // @@protoc_insertion_point(field_get:google.protobuf.Value.list_value)
1208 // @@protoc_insertion_point(field_mutable:google.protobuf.Value.list_value)
1212 // @@protoc_insertion_point(field_release:google.protobuf.Value.list_value)
1222 set_allocated_list_value(::google::protobuf::ListValue* list_value) argument
[all...]

Completed in 178 milliseconds