Lines Matching defs:SwigPySequence_Cont
5082 struct SwigPySequence_Cont struct
5084 typedef SwigPySequence_Ref<T> reference;
5085 typedef const SwigPySequence_Ref<T> const_reference;
5086 typedef T value_type;
5087 typedef T* pointer;
5088 typedef int difference_type;
5089 typedef int size_type;
5090 typedef const pointer const_pointer;
5091 typedef SwigPySequence_InputIterator<T, reference> iterator;
5092 typedef SwigPySequence_InputIterator<T, const_reference> const_iterator;
5094 SwigPySequence_Cont(PyObject* seq) : _seq(0) in SwigPySequence_Cont() argument
5103 ~SwigPySequence_Cont() in ~SwigPySequence_Cont()
5108 size_type size() const in size()
5113 bool empty() const in empty()
5118 iterator begin() in begin()
5123 const_iterator begin() const in begin()
5128 iterator end() in end()
5133 const_iterator end() const in end()
5138 reference operator[](difference_type n) in operator []()
5143 const_reference operator[](difference_type n) const in operator []()
5148 bool check(bool set_err = true) const in check()
5166 PyObject* _seq;