SparseMatIterator_  622 modules/core/include/opencv2/core/base.hpp template<typename _Tp> class SparseMatIterator_;
SparseMatIterator_ 2623 modules/core/include/opencv2/core/mat.hpp     template<typename _Tp> SparseMatIterator_<_Tp> begin();
SparseMatIterator_ 2637 modules/core/include/opencv2/core/mat.hpp     template<typename _Tp> SparseMatIterator_<_Tp> end();
SparseMatIterator_ 2676 modules/core/include/opencv2/core/mat.hpp     typedef SparseMatIterator_<_Tp> iterator;
SparseMatIterator_ 2731 modules/core/include/opencv2/core/mat.hpp     SparseMatIterator_<_Tp> begin();
SparseMatIterator_ 2735 modules/core/include/opencv2/core/mat.hpp     SparseMatIterator_<_Tp> end();
SparseMatIterator_ 3049 modules/core/include/opencv2/core/mat.hpp     SparseMatIterator_();
SparseMatIterator_ 3051 modules/core/include/opencv2/core/mat.hpp     SparseMatIterator_(SparseMat_<_Tp>* _m);
SparseMatIterator_ 3052 modules/core/include/opencv2/core/mat.hpp     SparseMatIterator_(SparseMat* _m);
SparseMatIterator_ 3054 modules/core/include/opencv2/core/mat.hpp     SparseMatIterator_(const SparseMatIterator_& it);
SparseMatIterator_ 3057 modules/core/include/opencv2/core/mat.hpp     SparseMatIterator_& operator = (const SparseMatIterator_& it);
SparseMatIterator_ 3062 modules/core/include/opencv2/core/mat.hpp     SparseMatIterator_& operator ++();
SparseMatIterator_ 3064 modules/core/include/opencv2/core/mat.hpp     SparseMatIterator_ operator ++(int);
SparseMatIterator_ 1932 modules/core/include/opencv2/core/mat.inl.hpp SparseMatIterator_<_Tp> SparseMat::begin()
SparseMatIterator_ 1934 modules/core/include/opencv2/core/mat.inl.hpp     return SparseMatIterator_<_Tp>(this);
SparseMatIterator_ 1944 modules/core/include/opencv2/core/mat.inl.hpp SparseMatIterator_<_Tp> SparseMat::end()
SparseMatIterator_ 1946 modules/core/include/opencv2/core/mat.inl.hpp     SparseMatIterator_<_Tp> it(this);
SparseMatIterator_ 2108 modules/core/include/opencv2/core/mat.inl.hpp SparseMatIterator_<_Tp> SparseMat_<_Tp>::begin()
SparseMatIterator_ 2110 modules/core/include/opencv2/core/mat.inl.hpp     return SparseMatIterator_<_Tp>(this);
SparseMatIterator_ 2120 modules/core/include/opencv2/core/mat.inl.hpp SparseMatIterator_<_Tp> SparseMat_<_Tp>::end()
SparseMatIterator_ 2122 modules/core/include/opencv2/core/mat.inl.hpp     SparseMatIterator_<_Tp> it(this);
SparseMatIterator_ 2793 modules/core/include/opencv2/core/mat.inl.hpp SparseMatIterator_<_Tp>::SparseMatIterator_()
SparseMatIterator_ 2797 modules/core/include/opencv2/core/mat.inl.hpp SparseMatIterator_<_Tp>::SparseMatIterator_(SparseMat_<_Tp>* _m)
SparseMatIterator_ 2802 modules/core/include/opencv2/core/mat.inl.hpp SparseMatIterator_<_Tp>::SparseMatIterator_(SparseMat* _m)
SparseMatIterator_ 2807 modules/core/include/opencv2/core/mat.inl.hpp SparseMatIterator_<_Tp>::SparseMatIterator_(const SparseMatIterator_<_Tp>& it)
SparseMatIterator_ 2812 modules/core/include/opencv2/core/mat.inl.hpp SparseMatIterator_<_Tp>& SparseMatIterator_<_Tp>::operator = (const SparseMatIterator_<_Tp>& it)
SparseMatIterator_ 2814 modules/core/include/opencv2/core/mat.inl.hpp     return reinterpret_cast<SparseMatIterator_<_Tp>&>
SparseMatIterator_ 2820 modules/core/include/opencv2/core/mat.inl.hpp _Tp& SparseMatIterator_<_Tp>::operator *() const
SparseMatIterator_ 2826 modules/core/include/opencv2/core/mat.inl.hpp SparseMatIterator_<_Tp>& SparseMatIterator_<_Tp>::operator ++()
SparseMatIterator_ 2833 modules/core/include/opencv2/core/mat.inl.hpp SparseMatIterator_<_Tp> SparseMatIterator_<_Tp>::operator ++(int)
SparseMatIterator_ 2835 modules/core/include/opencv2/core/mat.inl.hpp     SparseMatIterator_<_Tp> it = *this;
SparseMatIterator_ 1183 modules/core/test/test_operations.cpp                 SparseMatIterator_<int> it = v.begin();
SparseMatIterator_ 1184 modules/core/test/test_operations.cpp                 SparseMatIterator_<int> it_end = v.end();