Lines Matching refs:RandomValueIterator
58 class RandomValueIterator
67 static RandomValueIterator begin (deUint32 seed, int numValues) { return RandomValueIterator<T>(seed, numValues); }
68 static RandomValueIterator end (void) { return RandomValueIterator<T>(0, 0); }
70 RandomValueIterator& operator++ (void);
71 RandomValueIterator operator++ (int);
75 bool operator== (const RandomValueIterator<T>& other) const;
76 bool operator!= (const RandomValueIterator<T>& other) const;
79 RandomValueIterator (deUint32 seed, int numLeft);
87 RandomValueIterator<T>::RandomValueIterator (deUint32 seed, int numLeft)
95 RandomValueIterator<T>& RandomValueIterator<T>::operator++ (void)
106 RandomValueIterator<T> RandomValueIterator<T>::operator++ (int)
108 RandomValueIterator copy(*this);
114 bool RandomValueIterator<T>::operator== (const RandomValueIterator<T>& other) const
120 bool RandomValueIterator<T>::operator!= (const RandomValueIterator<T>& other) const