Lines Matching defs:SwigPySequence_Cont
4915 struct SwigPySequence_Cont struct
4917 typedef SwigPySequence_Ref<T> reference;
4918 typedef const SwigPySequence_Ref<T> const_reference;
4919 typedef T value_type;
4920 typedef T* pointer;
4921 typedef Py_ssize_t difference_type;
4922 typedef size_t size_type;
4923 typedef const pointer const_pointer;
4924 typedef SwigPySequence_InputIterator<T, reference> iterator;
4925 typedef SwigPySequence_InputIterator<T, const_reference> const_iterator;
4927 SwigPySequence_Cont(PyObject* seq) : _seq(0) in SwigPySequence_Cont() function
4936 ~SwigPySequence_Cont() in ~SwigPySequence_Cont()
4941 size_type size() const in size()
4946 bool empty() const in empty()
4951 iterator begin() in begin()
4956 const_iterator begin() const in begin()
4961 iterator end() in end()
4966 const_iterator end() const in end()
4971 reference operator[](difference_type n) in operator []()
4976 const_reference operator[](difference_type n) const in operator []()
4981 bool check(bool set_err = true) const in check()
4999 PyObject* _seq;