Lines Matching refs:RandomValueIterator
58 class RandomValueIterator : public std::iterator<std::forward_iterator_tag, T> class
61 …static RandomValueIterator begin (deUint32 seed, int numValues) { return RandomValueIterator<T… in begin()
62 static RandomValueIterator end (void) { return RandomValueIterator<T>(0, 0); } in end()
64 RandomValueIterator& operator++ (void);
65 RandomValueIterator operator++ (int);
69 bool operator== (const RandomValueIterator<T>& other) const;
70 bool operator!= (const RandomValueIterator<T>& other) const;
73 RandomValueIterator (deUint32 seed, int numLeft);
81 RandomValueIterator<T>::RandomValueIterator (deUint32 seed, int numLeft) in RandomValueIterator() function in tcu::RandomValueIterator
89 RandomValueIterator<T>& RandomValueIterator<T>::operator++ (void) in operator ++()
100 RandomValueIterator<T> RandomValueIterator<T>::operator++ (int) in operator ++()
102 RandomValueIterator copy(*this); in operator ++()
108 bool RandomValueIterator<T>::operator== (const RandomValueIterator<T>& other) const in operator ==()
114 bool RandomValueIterator<T>::operator!= (const RandomValueIterator<T>& other) const in operator !=()