Home
last modified time | relevance | path

Searched refs:list_value (Results 1 – 18 of 18) sorted by relevance

/external/libchrome/base/trace_event/
Dtrace_event_argument_unittest.cc111 auto list_value = WrapUnique(new ListValue); in TEST() local
112 list_value->AppendBoolean(false); in TEST()
113 list_value->AppendInteger(1); in TEST()
114 list_value->AppendString("in_list"); in TEST()
115 list_value->Append(std::move(dict_value)); in TEST()
119 value->SetValue("inner_list", std::move(list_value)); in TEST()
123 list_value.reset(); in TEST()
Dtrace_event_argument.cc288 const ListValue* list_value; in SetBaseValueWithCopiedName() local
289 value.GetAsList(&list_value); in SetBaseValueWithCopiedName()
291 for (const auto& base_value : *list_value) in SetBaseValueWithCopiedName()
342 const ListValue* list_value; in AppendBaseValue() local
343 value.GetAsList(&list_value); in AppendBaseValue()
345 for (const auto& base_value : *list_value) in AppendBaseValue()
Dtrace_event_memory_overhead.cc104 const ListValue* list_value = nullptr; in AddValue() local
105 value.GetAsList(&list_value); in AddValue()
107 for (const auto& v : *list_value) in AddValue()
/external/libbrillo/policy/tests/
Dlibpolicy_unittest.cc59 std::vector<std::string> list_value; in TEST() local
60 ASSERT_TRUE(policy.GetUserWhitelist(&list_value)); in TEST()
61 ASSERT_EQ(3, list_value.size()); in TEST()
62 ASSERT_EQ("me@here.com", list_value[0]); in TEST()
63 ASSERT_EQ("you@there.com", list_value[1]); in TEST()
64 ASSERT_EQ("*@monsters.com", list_value[2]); in TEST()
184 std::vector<std::string> list_value; in TEST() local
190 ASSERT_FALSE(policy.GetUserWhitelist(&list_value)); in TEST()
/external/libchrome/dbus/
Dvalues_util.cc26 bool PopListElements(MessageReader* reader, base::ListValue* list_value) { in PopListElements() argument
31 list_value->Append(std::move(element_value)); in PopListElements()
187 std::unique_ptr<base::ListValue> list_value(new base::ListValue); in PopDataAsValue() local
188 if (PopListElements(&sub_reader, list_value.get())) in PopDataAsValue()
189 result = std::move(list_value); in PopDataAsValue()
197 std::unique_ptr<base::ListValue> list_value(new base::ListValue); in PopDataAsValue() local
198 if (PopListElements(&sub_reader, list_value.get())) in PopDataAsValue()
199 result = std::move(list_value); in PopDataAsValue()
/external/protobuf/python/google/protobuf/internal/
Dmessage_factory_test.py68 msg.factory_1_message.list_value.extend([u'one', u'two', u'three'])
69 msg.factory_1_message.list_value.append(u'four')
77 msg.list_value.extend([u'four', u'three', u'two'])
78 msg.list_value.append(u'one')
Dwell_known_types.py657 return struct_value.list_value
675 return self.fields[key].list_value
714 return self.values.add().list_value
Dfactory_test1.proto55 repeated string list_value = 5; field
Dfactory_test2.proto63 repeated string list_value = 11; field
/external/protobuf/src/google/protobuf/
Dstruct.pb.h281 const ::google::protobuf::ListValue& list_value() const;
284 void set_allocated_list_value(::google::protobuf::ListValue* list_value);
664 inline const ::google::protobuf::ListValue& Value::list_value() const { in list_value() function
690 inline void Value::set_allocated_list_value(::google::protobuf::ListValue* list_value) { in set_allocated_list_value() argument
692 if (list_value) { in set_allocated_list_value()
694 kind_.list_value_ = list_value; in set_allocated_list_value()
Dstruct.pb.cc917 mutable_list_value()->::google::protobuf::ListValue::MergeFrom(from.list_value()); in MergeFrom()
1196 const ::google::protobuf::ListValue& Value::list_value() const { in list_value() function in google::protobuf::Value
1222 void Value::set_allocated_list_value(::google::protobuf::ListValue* list_value) { in set_allocated_list_value() argument
1224 if (list_value) { in set_allocated_list_value()
1226 kind_.list_value_ = list_value; in set_allocated_list_value()
Dstruct.proto77 ListValue list_value = 6; field
/external/protobuf/python/google/protobuf/
Djson_format.py256 return _ListValueMessageToJsonObject(message.list_value)
464 _ConvertListValueMessage(value, message.list_value)
/external/golang-protobuf/ptypes/struct/
Dstruct.proto77 ListValue list_value = 6; field
/external/protobuf/java/util/src/test/proto/com/google/protobuf/util/
Djson_test.proto192 google.protobuf.ListValue list_value = 3; field
/external/protobuf/conformance/
Dconformance_test.cc1713 list_value: {
1764 list_value: {
/external/tensorflow/tensorflow/tools/quantization/
Dquantize_graph.py158 list_value = attr_value_pb2.AttrValue.ListValue(i=value)
160 node.attr[key].CopyFrom(attr_value_pb2.AttrValue(list=list_value))
/external/libchrome/base/
Dvalues_unittest.cc1249 ListValue list_value; in TEST() local
1257 main_dict.Set("list", MakeUnique<Value>(list_value)); in TEST()
1265 main_list.Append(MakeUnique<Value>(list_value)); in TEST()