Home | History | Annotate | Download | only in base

Lines Matching refs:LIST

29                                   "string", "binary",  "dictionary", "list"};
31 static_cast<size_t>(Value::Type::LIST) + 1,
39 std::unique_ptr<Value> CopyListWithoutEmptyChildren(const Value& list) {
40 Value copy(Value::Type::LIST);
41 for (const auto& entry : list.GetList()) {
66 case Value::Type::LIST:
126 case Type::LIST:
174 Value::Value(const ListStorage& in_list) : type_(Type::LIST), list_() {
181 : type_(Type::LIST), list_(std::move(in_list)) {}
206 case Type::LIST:
572 case Value::Type::LIST:
611 case Value::Type::LIST:
645 // case Type::LIST:
676 case Type::LIST:
700 case Type::LIST:
1166 ListValue::ListValue() : Value(Type::LIST) {}