Searched defs:MyIter (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/tools/clang/rewrite_scoped_refptr/tests/
H A Dtest12-expected.cc17 class MyIter class in inherits:std::iterator
20 MyIter() {} function in class:MyIter
21 MyIter(const MyIter& other) : it_(other.it_) {} function in class:MyIter
22 explicit MyIter(MyMap::const_iterator it) : it_(it) {} function in class:MyIter
23 MyIter& operator++() {
28 bool operator!=(const MyIter& other) { return it_ != other.it_; }
29 bool operator==(const MyIter& other) { return it_ == other.it_; }
39 MyIter my_begin(map.begin());
40 MyIter my_en
[all...]
H A Dtest12-original.cc17 class MyIter class in inherits:std::iterator
20 MyIter() {} function in class:MyIter
21 MyIter(const MyIter& other) : it_(other.it_) {} function in class:MyIter
22 explicit MyIter(MyMap::const_iterator it) : it_(it) {} function in class:MyIter
23 MyIter& operator++() {
28 bool operator!=(const MyIter& other) { return it_ != other.it_; }
29 bool operator==(const MyIter& other) { return it_ == other.it_; }
39 MyIter my_begin(map.begin());
40 MyIter my_en
[all...]
/external/llvm/unittests/ADT/
H A DImmutableSetTest.cpp21 struct MyIter { struct in class:__anon26446::ImmutableSetTest
25 MyIter() : counter(0), ptr(buffer) { function in struct:__anon26446::ImmutableSetTest::MyIter
147 S3.foreach<MyIter>();
159 MyIter obj;
160 S3.foreach<MyIter>(obj);
164 MyIter obj2;
165 S2.foreach<MyIter>(obj2);
169 MyIter obj3;
170 S.foreach<MyIter>(obj);

Completed in 123 milliseconds