Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/test/OpenMP/
H A Dirbuilder_for_iterator.cpp8 struct MyIterator { struct
9 MyIterator(unsigned pos);
10 MyIterator(const MyIterator &other);
11 const MyIterator &operator=(const MyIterator &that);
12 MyIterator &operator++();
13 int operator-(const MyIterator &that) const;
14 MyIterator &operator+=(unsigned a);
15 MyIterator operator+(unsigned a) const;
16 bool operator==(const MyIterator &that) const;
17 bool operator!=(const MyIterator &that) const;
[all …]
H A Dirbuilder_for_rangefor.cpp8 struct MyIterator { struct
9 MyIterator(unsigned pos);
10 MyIterator(const MyIterator &other);
11 const MyIterator &operator=(const MyIterator &that);
12 MyIterator &operator++();
13 int operator-(const MyIterator &that) const;
14 MyIterator &operator+=(unsigned a);
15 MyIterator operator+(unsigned a) const;
16 bool operator==(const MyIterator &that) const;
24 MyIterator begin();
[all …]
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dstatic-assert.cpp154 struct MyIterator { struct
158 using iterator = MyIterator; argument