HomeSort by relevance Sort by last modified time
    Searched refs:MyIter (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/tools/clang/rewrite_scoped_refptr/tests/
test12-expected.cc 17 class MyIter
20 MyIter() {}
21 MyIter(const MyIter& other) : it_(other.it_) {}
22 explicit MyIter(MyMap::const_iterator it) : it_(it) {}
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_end(map.end())
    [all...]
test12-original.cc 17 class MyIter
20 MyIter() {}
21 MyIter(const MyIter& other) : it_(other.it_) {}
22 explicit MyIter(MyMap::const_iterator it) : it_(it) {}
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_end(map.end())
    [all...]
  /external/llvm/unittests/ADT/
ImmutableSetTest.cpp 21 struct MyIter {
25 MyIter() : counter(0), ptr(buffer) {
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);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
dbapi.py 338 class MyIter:
349 self.cu.executemany("insert into test(income) values (?)", MyIter())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
dbapi.py 338 class MyIter:
349 self.cu.executemany("insert into test(income) values (?)", MyIter())

Completed in 130 milliseconds