Home
last modified time | relevance | path

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

/external/v8/tools/clang/rewrite_scoped_refptr/tests/
Dtest12-original.cc17 class MyIter class
20 MyIter() {} in MyIter() function in MyIter
21 MyIter(const MyIter& other) : it_(other.it_) {} in MyIter() function in MyIter
22 explicit MyIter(MyMap::const_iterator it) : it_(it) {} in MyIter() function in MyIter
23 MyIter& operator++() { in operator ++()
28 bool operator!=(const MyIter& other) { return it_ != other.it_; } in operator !=()
29 bool operator==(const MyIter& other) { return it_ == other.it_; } in operator ==()
39 MyIter my_begin(map.begin()); in TestsAScopedRefptr()
40 MyIter my_end(map.end()); in TestsAScopedRefptr()
41 for (MyIter it = my_begin; it != my_end; ++it) { in TestsAScopedRefptr()
Dtest12-expected.cc17 class MyIter class
20 MyIter() {} in MyIter() function in MyIter
21 MyIter(const MyIter& other) : it_(other.it_) {} in MyIter() function in MyIter
22 explicit MyIter(MyMap::const_iterator it) : it_(it) {} in MyIter() function in MyIter
23 MyIter& operator++() { in operator ++()
28 bool operator!=(const MyIter& other) { return it_ != other.it_; } in operator !=()
29 bool operator==(const MyIter& other) { return it_ == other.it_; } in operator ==()
39 MyIter my_begin(map.begin()); in TestsAScopedRefptr()
40 MyIter my_end(map.end()); in TestsAScopedRefptr()
41 for (MyIter it = my_begin; it != my_end; ++it) { in TestsAScopedRefptr()
/external/llvm/unittests/ADT/
DImmutableSetTest.cpp21 struct MyIter { struct in __anon707bb0c10111::ImmutableSetTest
25 MyIter() : counter(0), ptr(buffer) { in MyIter() argument
147 S3.foreach<MyIter>(); in TEST_F()
159 MyIter obj; in TEST_F()
160 S3.foreach<MyIter>(obj); in TEST_F()
164 MyIter obj2; in TEST_F()
165 S2.foreach<MyIter>(obj2); in TEST_F()
169 MyIter obj3; in TEST_F()
170 S.foreach<MyIter>(obj); in TEST_F()
/external/swiftshader/third_party/LLVM/unittests/ADT/
DImmutableSetTest.cpp21 struct MyIter { struct in __anonf1353fed0111::ImmutableSetTest
25 MyIter() : counter(0), ptr(buffer) { in MyIter() argument
147 S3.foreach<MyIter>(); in TEST_F()
159 MyIter obj; in TEST_F()
160 S3.foreach<MyIter>(obj); in TEST_F()
164 MyIter obj2; in TEST_F()
165 S2.foreach<MyIter>(obj2); in TEST_F()
169 MyIter obj3; in TEST_F()
170 S.foreach<MyIter>(obj); in TEST_F()
/external/python/cpython2/Lib/sqlite3/test/
Ddbapi.py339 class MyIter: class
350 self.cu.executemany("insert into test(income) values (?)", MyIter())