Lines Matching defs:ListContainer
2 * Inkscape::Util::ListContainer - encapsulates lists as STL containers,
24 class ListContainer {
27 ListContainer() {}
30 ListContainer(ListContainer const &other) {
33 ListContainer &operator=(ListContainer const &other) {
40 void swap(ListContainer<T> &other) {
46 bool operator==(ListContainer const &other) const {
58 bool operator!=(ListContainer const &other) const {
63 bool operator<(ListContainer const &other) const {
77 bool operator>=(ListContainer const &other) const {
108 ListContainer(size_type count, const_reference value) {
113 ListContainer(size_type count) {
120 ListContainer(ForwardIterator i, ForwardIterator j) {
148 _insert_from_temp(position, ListContainer(count, value));
152 _insert_from_temp(position, ListContainer(i, j));
184 ListContainer temp(size, fill);
259 _insert_after_from_temp(position, ListContainer(count, value));
265 _insert_after_from_temp(position, ListContainer(i, j));
292 void _insert_from_temp(const_iterator pos, ListContainer const &temp) {
314 ListContainer const &temp)