Home | History | Annotate | Download | only in base

Lines Matching refs:LIST

19 // (should be flat_map), Value::LIST (should be std::vector), et cetera.
95 LIST
160 bool is_list() const { return type() == Type::LIST; }
433 // DEPRECATED, use Value::SetPath(path, Value(Type::LIST)) instead.
591 // This type of Value represents a list of other Value values.
597 // Returns |value| if it is a list, nullptr otherwise.
608 // Returns the number of Values in this list.
612 // Returns whether the list is empty.
620 // Sets the list item at the given index to be the Value specified by
621 // the value given. If the index beyond the current end of the list, null
622 // Values will be used to pad out the list.
629 // only if the index falls within the current list range.
630 // Note that the list always owns the Value passed out via |out_value|.
660 // Removes the Value with the specified index from this list.
668 // Removes the first instance of |value| found in the list, if any, and
681 // Appends a Value to the end of the list.
706 // Searches for the first instance of |value| in the list using the Equals
712 // Swaps contents with the |other| list.