Home
last modified time | relevance | path

Searched refs:ParamIterator (Results 1 – 1 of 1) sorted by relevance

/ndk/sources/third_party/googletest/googletest/include/gtest/internal/
Dgtest-param-util.h99 class ParamIterator {
106 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {} in ParamIterator() function
107 ParamIterator& operator=(const ParamIterator& other) {
116 ParamIterator& operator++() {
121 ParamIterator operator++(int /*unused*/) {
124 return ParamIterator(clone);
126 bool operator==(const ParamIterator& other) const {
129 bool operator!=(const ParamIterator& other) const {
135 explicit ParamIterator(ParamIteratorInterface<T>* impl) : impl_(impl) {} in ParamIterator() function
161 typedef ParamIterator<T> iterator;